diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py index 7134c20e319..da52b9c56d5 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py @@ -4,6 +4,7 @@ from azure.cli.commands import CommandTable from azure.cli.commands._command_creation import get_mgmt_service_client from azure.cli._locale import L +from azure.cli._util import CLIError command_table = CommandTable() @@ -45,7 +46,7 @@ def create(self, resource_group_name, location, tags=None): # pylint: disable=no rcf = _resource_client_factory(None) if rcf.resource_groups.check_existence(resource_group_name): - raise ValueError('resource group {} already exists'.format(resource_group_name)) + raise CLIError('Resource group {} already exists'.format(resource_group_name)) parameters = ResourceGroup( location=location, tags=tags diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/command_specs.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/command_specs.py index ba7c81db8e3..3679bcfc0a0 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/command_specs.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/command_specs.py @@ -43,7 +43,8 @@ def set_up(self): def test_body(self): # Expecting no results at the beginning self.test('vm list-ip-addresses --resource-group {}'.format(self.resource_group), None) - self.run(['vm', 'create', '-g', self.resource_group, '-l', self.location, + self.run(['vm', 'create', '--resource-group', self.resource_group, + '--location', self.location, '-n', self.vm_name, '--admin-username', 'ubuntu', '--image', 'Canonical:UbuntuServer:14.04.4-LTS:latest', '--admin-password', 'testPassword0', '--deployment-name', self.deployment_name, @@ -69,16 +70,275 @@ def test_body(self): def tear_down(self): self.run('resource group delete --name {}'.format(self.resource_group)) +class VMSizeListScenarioTest(CommandTestScript): + + def __init__(self): + super(VMSizeListScenarioTest, self).__init__(None, self.test_body, None) + + def test_body(self): + self.test('vm size list --location westus', JMESPathComparator('type(@)', 'array')) + +class VMShowScenarioTest(CommandTestScript): + + def __init__(self): + self.deployment_name = 'azurecli-test-deployment-vm-show' + self.resource_group = 'cliTestRg_VmShow' + self.location = 'westus' + self.vm_name = 'vm-show' + super(VMShowScenarioTest, self).__init__( + self.set_up, + self.test_body, + self.tear_down) + + def set_up(self): + self.run('resource group create --location {} --name {}'.format( + self.location, + self.resource_group)) + + def test_body(self): + self.run(['vm', 'create', '--resource-group', self.resource_group, + '--location', self.location, + '-n', self.vm_name, '--admin-username', 'ubuntu', + '--image', 'Canonical:UbuntuServer:14.04.4-LTS:latest', + '--admin-password', 'testPassword0', '--deployment-name', self.deployment_name]) + self.test('vm show --resource-group {} --name {} --expand instanceView'.format( + self.resource_group, self.vm_name), + [ + JMESPathComparator('type(@)', 'object'), + JMESPathComparator('name', self.vm_name), + JMESPathComparator('location', self.location), + JMESPathComparator('resourceGroup', self.resource_group), + ]) + + def tear_down(self): + self.run('resource group delete --name {}'.format(self.resource_group)) + +class VMImageListOffersScenarioTest(CommandTestScript): + + def __init__(self): + self.location = 'westus' + self.publisher_name = 'Canonical' + super(VMImageListOffersScenarioTest, self).__init__(None, self.test_body, None) + + def test_body(self): + self.test('vm image list-offers --location {} --publisher-name {}'.format( + self.location, self.publisher_name), + [ + JMESPathComparator('type(@)', 'array'), + # all results should have location has set in the test + JMESPathComparator("length([?location == '{}']) == length(@)".format( + self.location), + True), + # all results should have the correct publisher name + JMESPathComparator( + "length([].id.contains(@, '/Publishers/{}'))".format(self.publisher_name), + 6), + ]) + +class VMImageListPublishersScenarioTest(CommandTestScript): + + def __init__(self): + self.location = 'westus' + super(VMImageListPublishersScenarioTest, self).__init__(None, self.test_body, None) + + def test_body(self): + self.test('vm image list-publishers --location {}'.format(self.location), + [ + JMESPathComparator('type(@)', 'array'), + # all results should have location has set in the test + JMESPathComparator("length([?location == '{}']) == length(@)".format( + self.location), + True), + ]) + +class VMImageListSkusScenarioTest(CommandTestScript): + + def __init__(self): + self.location = 'westus' + self.publisher_name = 'Canonical' + self.offer = 'UbuntuServer' + super(VMImageListSkusScenarioTest, self).__init__(None, self.test_body, None) + + def test_body(self): + self.test('vm image list-skus --location {} --publisher-name {} --offer {}'.format( + self.location, self.publisher_name, self.offer), + [ + JMESPathComparator('type(@)', 'array'), + # all results should have location has set in the test + JMESPathComparator("length([?location == '{}']) == length(@)".format( + self.location), + True), + # all results should have the correct publisher name + JMESPathComparator( + "length([].id.contains(@, '/Publishers/{}/ArtifactTypes/VMImage/Offers/{}/Skus/'))".format( #pylint: disable=line-too-long + self.publisher_name, self.offer), + 27), + ]) + +class VMImageShowScenarioTest(CommandTestScript): + + def __init__(self): + self.location = 'westus' + self.publisher_name = 'Canonical' + self.offer = 'UbuntuServer' + self.skus = '14.04.2-LTS' + self.version = '14.04.201503090' + super(VMImageShowScenarioTest, self).__init__(None, self.test_body, None) + + def test_body(self): + self.test('vm image show --location {} --publisher-name {} --offer {} --skus {} --version {}'.format( #pylint: disable=line-too-long + self.location, self.publisher_name, self.offer, self.skus, self.version), + [ + JMESPathComparator('type(@)', 'object'), + JMESPathComparator('location', self.location), + JMESPathComparator('name', self.version), + # all results should have the correct publisher name + JMESPathComparator( + "contains(id, '/Publishers/{}/ArtifactTypes/VMImage/Offers/{}/Skus/{}/Versions/{}')".format( #pylint: disable=line-too-long + self.publisher_name, self.offer, self.skus, self.version), + True), + ]) + +class VMListSizesScenarioTest(CommandTestScript): + + def __init__(self): + self.deployment_name = 'azurecli-test-deployment-vm-list-sizes' + self.resource_group = 'cliTestRg_VmListSizes' + self.location = 'westus' + self.vm_name = 'vm-show' + super(VMListSizesScenarioTest, self).__init__(self.set_up, self.test_body, self.tear_down) + + def set_up(self): + self.run('resource group create --location {} --name {}'.format( + self.location, + self.resource_group)) + + def test_body(self): + self.run(['vm', 'create', '--resource-group', self.resource_group, + '--location', self.location, + '-n', self.vm_name, '--admin-username', 'ubuntu', + '--image', 'Canonical:UbuntuServer:14.04.4-LTS:latest', + '--admin-password', 'testPassword0', '--deployment-name', self.deployment_name]) + self.test( + 'vm list-sizes --resource-group {} --name {}'.format( + self.resource_group, + self.vm_name), + JMESPathComparator('type(@)', 'array')) + + def tear_down(self): + self.run('resource group delete --name {}'.format(self.resource_group)) + +class VMGeneralizeScenarioTest(CommandTestScript): + + def __init__(self): + self.deployment_name = 'azurecli-test-deployment-vm-generalize' + self.resource_group = 'cliTestRg_VmGeneralize' + self.location = 'westus' + self.vm_name = 'vm-generalize' + super(VMGeneralizeScenarioTest, self).__init__(self.set_up, self.test_body, self.tear_down) + + def set_up(self): + self.run('resource group create --location {} --name {}'.format( + self.location, + self.resource_group)) + + def test_body(self): + self.run(['vm', 'create', '--resource-group', self.resource_group, + '--location', self.location, + '--name', self.vm_name, '--admin-username', 'ubuntu', + '--image', 'Canonical:UbuntuServer:14.04.4-LTS:latest', + '--admin-password', 'testPassword0', '--deployment-name', self.deployment_name]) + self.run('vm power-off --resource-group {} --name {}'.format( + self.resource_group, self.vm_name)) + # Should be able to generalize the VM after it has been stopped + self.test( + 'vm generalize --resource-group {} --name {}'.format( + self.resource_group, + self.vm_name), None) + + def tear_down(self): + self.run('resource group delete --name {}'.format(self.resource_group)) + +class VMCreateAndStateModificationsScenarioTest(CommandTestScript): + + def __init__(self): + self.deployment_name = 'azurecli-test-deployment-vm-state-mod' + self.resource_group = 'cliTestRg_VmStateMod' + self.location = 'westus' + self.vm_name = 'vm-state-mod' + super(VMCreateAndStateModificationsScenarioTest, self).__init__( + self.set_up, + self.test_body, + self.tear_down) + + def set_up(self): + self.run('resource group create --location {} --name {}'.format( + self.location, + self.resource_group)) + + def _check_vm_power_state(self, expected_power_state): + self.test( + 'vm show --resource-group {} --name {} --expand instanceView'.format( + self.resource_group, + self.vm_name), + [ + JMESPathComparator('type(@)', 'object'), + JMESPathComparator('name', self.vm_name), + JMESPathComparator('resourceGroup', self.resource_group), + JMESPathComparator('length(instanceView.statuses)', 2), + JMESPathComparator( + 'instanceView.statuses[0].code', + 'ProvisioningState/succeeded'), + JMESPathComparator('instanceView.statuses[1].code', expected_power_state), + ]) + + def test_body(self): + # Expecting no results + self.test('vm list --resource-group {}'.format(self.resource_group), None) + self.run(['vm', 'create', '--resource-group', self.resource_group, + '--location', self.location, + '--name', self.vm_name, '--admin-username', 'ubuntu', + '--image', 'Canonical:UbuntuServer:14.04.4-LTS:latest', + '--admin-password', 'testPassword0', '--deployment-name', self.deployment_name]) + # Expecting one result, the one we created + self.test('vm list --resource-group {}'.format(self.resource_group), [ + JMESPathComparator('length(@)', 1), + JMESPathComparator('[0].resourceGroup', self.resource_group), + JMESPathComparator('[0].name', self.vm_name), + JMESPathComparator('[0].location', self.location), + JMESPathComparator('[0].provisioningState', 'Succeeded'), + ]) + self._check_vm_power_state('PowerState/running') + self.run('vm power-off --resource-group {} --name {}'.format( + self.resource_group, self.vm_name)) + self._check_vm_power_state('PowerState/stopped') + self.run('vm start --resource-group {} --name {}'.format( + self.resource_group, self.vm_name)) + self._check_vm_power_state('PowerState/running') + self.run('vm restart --resource-group {} --name {}'.format( + self.resource_group, self.vm_name)) + self._check_vm_power_state('PowerState/running') + self.run('vm deallocate --resource-group {} --name {}'.format( + self.resource_group, self.vm_name)) + self._check_vm_power_state('PowerState/deallocated') + self.run('vm delete --resource-group {} --name {}'.format( + self.resource_group, self.vm_name)) + # Expecting no results + self.test('vm list --resource-group {}'.format(self.resource_group), None) + + def tear_down(self): + self.run('resource group delete --name {}'.format(self.resource_group)) + ENV_VAR = {} TEST_DEF = [ { 'test_name': 'vm_usage_list_westus', - 'command': 'vm usage list --location westus --output json', + 'command': 'vm usage list --location westus --output json' }, { 'test_name': 'vm_list_from_group', - 'command': 'vm list --resource-group XPLATTESTGEXTENSION9085', + 'command': 'vm list --resource-group XPLATTESTGEXTENSION9085' }, { 'test_name': 'vm_list_ip_addresses', @@ -91,7 +351,43 @@ def tear_down(self): { 'test_name': 'vm_images_list_thru_services', 'command': VMImageListThruServiceScenarioTest() - } + }, + { + 'test_name': 'vm_size_list', + 'command': VMSizeListScenarioTest() + }, + { + 'test_name': 'vm_show', + 'command': VMShowScenarioTest() + }, + { + 'test_name': 'vm_image_list_offers', + 'command': VMImageListOffersScenarioTest() + }, + { + 'test_name': 'vm_image_list_publishers', + 'command': VMImageListPublishersScenarioTest() + }, + { + 'test_name': 'vm_image_list_skus', + 'command': VMImageListSkusScenarioTest() + }, + { + 'test_name': 'vm_image_show', + 'command': VMImageShowScenarioTest() + }, + { + 'test_name': 'vm_list_sizes', + 'command': VMListSizesScenarioTest() + }, + { + 'test_name': 'vm_generalize', + 'command': VMGeneralizeScenarioTest() + }, + { + 'test_name': 'vm_create_state_modifications', + 'command': VMCreateAndStateModificationsScenarioTest() + }, ] diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/expected_results.res b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/expected_results.res index 159426d6e98..7b74dae3128 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/expected_results.res +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/expected_results.res @@ -1,7 +1,16 @@ { + "test_vm_create_state_modifications": "[\n {\n \"availabilitySet\": null,\n \"diagnosticsProfile\": null,\n \"hardwareProfile\": {\n \"vmSize\": \"Standard_A2\"\n },\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod\",\n \"instanceView\": null,\n \"licenseType\": null,\n \"location\": \"westus\",\n \"name\": \"vm-state-mod\",\n \"networkProfile\": {\n \"networkInterfaces\": [\n {\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Network/networkInterfaces/VMNicvm-state-mod\",\n \"primary\": null,\n \"resourceGroup\": \"cliTestRg_VmStateMod\"\n }\n ]\n },\n \"osProfile\": {\n \"adminPassword\": null,\n \"adminUsername\": \"ubuntu\",\n \"computerName\": \"vm-state-mod\",\n \"customData\": null,\n \"linuxConfiguration\": {\n \"disablePasswordAuthentication\": false,\n \"ssh\": null\n },\n \"secrets\": [],\n \"windowsConfiguration\": null\n },\n \"plan\": null,\n \"provisioningState\": \"Succeeded\",\n \"resourceGroup\": \"cliTestRg_VmStateMod\",\n \"resources\": null,\n \"storageProfile\": {\n \"dataDisks\": [],\n \"imageReference\": {\n \"offer\": \"UbuntuServer\",\n \"publisher\": \"Canonical\",\n \"sku\": \"14.04.4-LTS\",\n \"version\": \"latest\"\n },\n \"osDisk\": {\n \"caching\": \"ReadWrite\",\n \"createOption\": \"fromImage\",\n \"diskSizeGb\": null,\n \"encryptionSettings\": null,\n \"image\": null,\n \"name\": \"osdiskvm-state-mod\",\n \"osType\": \"Linux\",\n \"vhd\": {\n \"uri\": \"http://vhdstoragekb5sp45f3g2h4.blob.core.windows.net/vhds/osdiskimage.vhd\"\n }\n }\n },\n \"tags\": {\n \"displayName\": \"VirtualMachine\"\n },\n \"type\": \"Microsoft.Compute/virtualMachines\"\n }\n]{\n \"availabilitySet\": null,\n \"diagnosticsProfile\": null,\n \"hardwareProfile\": {\n \"vmSize\": \"Standard_A2\"\n },\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod\",\n \"instanceView\": {\n \"bootDiagnostics\": null,\n \"disks\": [\n {\n \"name\": \"osdiskvm-state-mod\",\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Provisioning succeeded\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": \"2016-05-09T16:41:54.741518+00:00\"\n }\n ]\n }\n ],\n \"extensions\": null,\n \"platformFaultDomain\": null,\n \"platformUpdateDomain\": null,\n \"rdpThumbPrint\": null,\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Provisioning succeeded\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": \"2016-05-09T16:43:26.288602+00:00\"\n },\n {\n \"code\": \"PowerState/running\",\n \"displayStatus\": \"VM running\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": null\n }\n ],\n \"vmAgent\": {\n \"extensionHandlers\": [],\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Ready\",\n \"level\": \"Info\",\n \"message\": \"GuestAgent is running and accepting new configurations.\",\n \"time\": \"2016-05-09T16:43:45+00:00\"\n }\n ],\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\"\n }\n },\n \"licenseType\": null,\n \"location\": \"westus\",\n \"name\": \"vm-state-mod\",\n \"networkProfile\": {\n \"networkInterfaces\": [\n {\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Network/networkInterfaces/VMNicvm-state-mod\",\n \"primary\": null,\n \"resourceGroup\": \"cliTestRg_VmStateMod\"\n }\n ]\n },\n \"osProfile\": {\n \"adminPassword\": null,\n \"adminUsername\": \"ubuntu\",\n \"computerName\": \"vm-state-mod\",\n \"customData\": null,\n \"linuxConfiguration\": {\n \"disablePasswordAuthentication\": false,\n \"ssh\": null\n },\n \"secrets\": [],\n \"windowsConfiguration\": null\n },\n \"plan\": null,\n \"provisioningState\": \"Succeeded\",\n \"resourceGroup\": \"cliTestRg_VmStateMod\",\n \"resources\": null,\n \"storageProfile\": {\n \"dataDisks\": [],\n \"imageReference\": {\n \"offer\": \"UbuntuServer\",\n \"publisher\": \"Canonical\",\n \"sku\": \"14.04.4-LTS\",\n \"version\": \"latest\"\n },\n \"osDisk\": {\n \"caching\": \"ReadWrite\",\n \"createOption\": \"fromImage\",\n \"diskSizeGb\": null,\n \"encryptionSettings\": null,\n \"image\": null,\n \"name\": \"osdiskvm-state-mod\",\n \"osType\": \"Linux\",\n \"vhd\": {\n \"uri\": \"http://vhdstoragekb5sp45f3g2h4.blob.core.windows.net/vhds/osdiskimage.vhd\"\n }\n }\n },\n \"tags\": {\n \"displayName\": \"VirtualMachine\"\n },\n \"type\": \"Microsoft.Compute/virtualMachines\"\n}{\n \"availabilitySet\": null,\n \"diagnosticsProfile\": null,\n \"hardwareProfile\": {\n \"vmSize\": \"Standard_A2\"\n },\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod\",\n \"instanceView\": {\n \"bootDiagnostics\": null,\n \"disks\": [\n {\n \"name\": \"osdiskvm-state-mod\",\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Provisioning succeeded\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": \"2016-05-09T16:41:54.741518+00:00\"\n }\n ]\n }\n ],\n \"extensions\": null,\n \"platformFaultDomain\": null,\n \"platformUpdateDomain\": null,\n \"rdpThumbPrint\": null,\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Provisioning succeeded\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": \"2016-05-09T16:44:26.210430+00:00\"\n },\n {\n \"code\": \"PowerState/stopped\",\n \"displayStatus\": \"VM stopped\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": null\n }\n ],\n \"vmAgent\": {\n \"extensionHandlers\": [],\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Ready\",\n \"level\": \"Info\",\n \"message\": \"GuestAgent is running and accepting new configurations.\",\n \"time\": \"2016-05-09T16:44:11+00:00\"\n }\n ],\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\"\n }\n },\n \"licenseType\": null,\n \"location\": \"westus\",\n \"name\": \"vm-state-mod\",\n \"networkProfile\": {\n \"networkInterfaces\": [\n {\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Network/networkInterfaces/VMNicvm-state-mod\",\n \"primary\": null,\n \"resourceGroup\": \"cliTestRg_VmStateMod\"\n }\n ]\n },\n \"osProfile\": {\n \"adminPassword\": null,\n \"adminUsername\": \"ubuntu\",\n \"computerName\": \"vm-state-mod\",\n \"customData\": null,\n \"linuxConfiguration\": {\n \"disablePasswordAuthentication\": false,\n \"ssh\": null\n },\n \"secrets\": [],\n \"windowsConfiguration\": null\n },\n \"plan\": null,\n \"provisioningState\": \"Succeeded\",\n \"resourceGroup\": \"cliTestRg_VmStateMod\",\n \"resources\": null,\n \"storageProfile\": {\n \"dataDisks\": [],\n \"imageReference\": {\n \"offer\": \"UbuntuServer\",\n \"publisher\": \"Canonical\",\n \"sku\": \"14.04.4-LTS\",\n \"version\": \"latest\"\n },\n \"osDisk\": {\n \"caching\": \"ReadWrite\",\n \"createOption\": \"fromImage\",\n \"diskSizeGb\": null,\n \"encryptionSettings\": null,\n \"image\": null,\n \"name\": \"osdiskvm-state-mod\",\n \"osType\": \"Linux\",\n \"vhd\": {\n \"uri\": \"http://vhdstoragekb5sp45f3g2h4.blob.core.windows.net/vhds/osdiskimage.vhd\"\n }\n }\n },\n \"tags\": {\n \"displayName\": \"VirtualMachine\"\n },\n \"type\": \"Microsoft.Compute/virtualMachines\"\n}{\n \"availabilitySet\": null,\n \"diagnosticsProfile\": null,\n \"hardwareProfile\": {\n \"vmSize\": \"Standard_A2\"\n },\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod\",\n \"instanceView\": {\n \"bootDiagnostics\": null,\n \"disks\": [\n {\n \"name\": \"osdiskvm-state-mod\",\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Provisioning succeeded\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": \"2016-05-09T16:41:54.741518+00:00\"\n }\n ]\n }\n ],\n \"extensions\": null,\n \"platformFaultDomain\": null,\n \"platformUpdateDomain\": null,\n \"rdpThumbPrint\": null,\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Provisioning succeeded\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": \"2016-05-09T16:45:04.710431+00:00\"\n },\n {\n \"code\": \"PowerState/running\",\n \"displayStatus\": \"VM running\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": null\n }\n ],\n \"vmAgent\": {\n \"extensionHandlers\": [],\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Ready\",\n \"level\": \"Info\",\n \"message\": \"GuestAgent is running and accepting new configurations.\",\n \"time\": \"2016-05-09T16:44:11+00:00\"\n }\n ],\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\"\n }\n },\n \"licenseType\": null,\n \"location\": \"westus\",\n \"name\": \"vm-state-mod\",\n \"networkProfile\": {\n \"networkInterfaces\": [\n {\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Network/networkInterfaces/VMNicvm-state-mod\",\n \"primary\": null,\n \"resourceGroup\": \"cliTestRg_VmStateMod\"\n }\n ]\n },\n \"osProfile\": {\n \"adminPassword\": null,\n \"adminUsername\": \"ubuntu\",\n \"computerName\": \"vm-state-mod\",\n \"customData\": null,\n \"linuxConfiguration\": {\n \"disablePasswordAuthentication\": false,\n \"ssh\": null\n },\n \"secrets\": [],\n \"windowsConfiguration\": null\n },\n \"plan\": null,\n \"provisioningState\": \"Succeeded\",\n \"resourceGroup\": \"cliTestRg_VmStateMod\",\n \"resources\": null,\n \"storageProfile\": {\n \"dataDisks\": [],\n \"imageReference\": {\n \"offer\": \"UbuntuServer\",\n \"publisher\": \"Canonical\",\n \"sku\": \"14.04.4-LTS\",\n \"version\": \"latest\"\n },\n \"osDisk\": {\n \"caching\": \"ReadWrite\",\n \"createOption\": \"fromImage\",\n \"diskSizeGb\": null,\n \"encryptionSettings\": null,\n \"image\": null,\n \"name\": \"osdiskvm-state-mod\",\n \"osType\": \"Linux\",\n \"vhd\": {\n \"uri\": \"http://vhdstoragekb5sp45f3g2h4.blob.core.windows.net/vhds/osdiskimage.vhd\"\n }\n }\n },\n \"tags\": {\n \"displayName\": \"VirtualMachine\"\n },\n \"type\": \"Microsoft.Compute/virtualMachines\"\n}{\n \"availabilitySet\": null,\n \"diagnosticsProfile\": null,\n \"hardwareProfile\": {\n \"vmSize\": \"Standard_A2\"\n },\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod\",\n \"instanceView\": {\n \"bootDiagnostics\": null,\n \"disks\": [\n {\n \"name\": \"osdiskvm-state-mod\",\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Provisioning succeeded\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": \"2016-05-09T16:41:54.741518+00:00\"\n }\n ]\n }\n ],\n \"extensions\": null,\n \"platformFaultDomain\": null,\n \"platformUpdateDomain\": null,\n \"rdpThumbPrint\": null,\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Provisioning succeeded\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": \"2016-05-09T16:45:15.147992+00:00\"\n },\n {\n \"code\": \"PowerState/running\",\n \"displayStatus\": \"VM running\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": null\n }\n ],\n \"vmAgent\": {\n \"extensionHandlers\": [],\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Ready\",\n \"level\": \"Info\",\n \"message\": \"GuestAgent is running and accepting new configurations.\",\n \"time\": \"2016-05-09T16:44:11+00:00\"\n }\n ],\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\"\n }\n },\n \"licenseType\": null,\n \"location\": \"westus\",\n \"name\": \"vm-state-mod\",\n \"networkProfile\": {\n \"networkInterfaces\": [\n {\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Network/networkInterfaces/VMNicvm-state-mod\",\n \"primary\": null,\n \"resourceGroup\": \"cliTestRg_VmStateMod\"\n }\n ]\n },\n \"osProfile\": {\n \"adminPassword\": null,\n \"adminUsername\": \"ubuntu\",\n \"computerName\": \"vm-state-mod\",\n \"customData\": null,\n \"linuxConfiguration\": {\n \"disablePasswordAuthentication\": false,\n \"ssh\": null\n },\n \"secrets\": [],\n \"windowsConfiguration\": null\n },\n \"plan\": null,\n \"provisioningState\": \"Succeeded\",\n \"resourceGroup\": \"cliTestRg_VmStateMod\",\n \"resources\": null,\n \"storageProfile\": {\n \"dataDisks\": [],\n \"imageReference\": {\n \"offer\": \"UbuntuServer\",\n \"publisher\": \"Canonical\",\n \"sku\": \"14.04.4-LTS\",\n \"version\": \"latest\"\n },\n \"osDisk\": {\n \"caching\": \"ReadWrite\",\n \"createOption\": \"fromImage\",\n \"diskSizeGb\": null,\n \"encryptionSettings\": null,\n \"image\": null,\n \"name\": \"osdiskvm-state-mod\",\n \"osType\": \"Linux\",\n \"vhd\": {\n \"uri\": \"http://vhdstoragekb5sp45f3g2h4.blob.core.windows.net/vhds/osdiskimage.vhd\"\n }\n }\n },\n \"tags\": {\n \"displayName\": \"VirtualMachine\"\n },\n \"type\": \"Microsoft.Compute/virtualMachines\"\n}{\n \"availabilitySet\": null,\n \"diagnosticsProfile\": null,\n \"hardwareProfile\": {\n \"vmSize\": \"Standard_A2\"\n },\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod\",\n \"instanceView\": {\n \"bootDiagnostics\": null,\n \"disks\": [\n {\n \"name\": \"osdiskvm-state-mod\",\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Provisioning succeeded\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": \"2016-05-09T16:47:38.382466+00:00\"\n }\n ]\n }\n ],\n \"extensions\": null,\n \"platformFaultDomain\": null,\n \"platformUpdateDomain\": null,\n \"rdpThumbPrint\": null,\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Provisioning succeeded\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": \"2016-05-09T16:47:38.444872+00:00\"\n },\n {\n \"code\": \"PowerState/deallocated\",\n \"displayStatus\": \"VM deallocated\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": null\n }\n ],\n \"vmAgent\": {\n \"extensionHandlers\": [],\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Ready\",\n \"level\": \"Info\",\n \"message\": \"GuestAgent is running and accepting new configurations.\",\n \"time\": \"2016-05-09T16:44:11+00:00\"\n }\n ],\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\"\n }\n },\n \"licenseType\": null,\n \"location\": \"westus\",\n \"name\": \"vm-state-mod\",\n \"networkProfile\": {\n \"networkInterfaces\": [\n {\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Network/networkInterfaces/VMNicvm-state-mod\",\n \"primary\": null,\n \"resourceGroup\": \"cliTestRg_VmStateMod\"\n }\n ]\n },\n \"osProfile\": {\n \"adminPassword\": null,\n \"adminUsername\": \"ubuntu\",\n \"computerName\": \"vm-state-mod\",\n \"customData\": null,\n \"linuxConfiguration\": {\n \"disablePasswordAuthentication\": false,\n \"ssh\": null\n },\n \"secrets\": [],\n \"windowsConfiguration\": null\n },\n \"plan\": null,\n \"provisioningState\": \"Succeeded\",\n \"resourceGroup\": \"cliTestRg_VmStateMod\",\n \"resources\": null,\n \"storageProfile\": {\n \"dataDisks\": [],\n \"imageReference\": {\n \"offer\": \"UbuntuServer\",\n \"publisher\": \"Canonical\",\n \"sku\": \"14.04.4-LTS\",\n \"version\": \"latest\"\n },\n \"osDisk\": {\n \"caching\": \"ReadWrite\",\n \"createOption\": \"fromImage\",\n \"diskSizeGb\": null,\n \"encryptionSettings\": null,\n \"image\": null,\n \"name\": \"osdiskvm-state-mod\",\n \"osType\": \"Linux\",\n \"vhd\": {\n \"uri\": \"http://vhdstoragekb5sp45f3g2h4.blob.core.windows.net/vhds/osdiskimage.vhd\"\n }\n }\n },\n \"tags\": {\n \"displayName\": \"VirtualMachine\"\n },\n \"type\": \"Microsoft.Compute/virtualMachines\"\n}", + "test_vm_generalize": "", + "test_vm_image_list_offers": "[\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy\",\n \"location\": \"westus\",\n \"name\": \"Ubuntu15.04Snappy\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04SnappyDocker\",\n \"location\": \"westus\",\n \"name\": \"Ubuntu15.04SnappyDocker\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy\",\n \"location\": \"westus\",\n \"name\": \"UbunturollingSnappy\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer\",\n \"location\": \"westus\",\n \"name\": \"UbuntuServer\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu_Snappy_Core\",\n \"location\": \"westus\",\n \"name\": \"Ubuntu_Snappy_Core\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu_Snappy_Core_Docker\",\n \"location\": \"westus\",\n \"name\": \"Ubuntu_Snappy_Core_Docker\",\n \"tags\": null\n }\n]", + "test_vm_image_list_publishers": "[\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\",\n \"location\": \"westus\",\n \"name\": \"4psa\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\",\n \"location\": \"westus\",\n \"name\": \"4ward365\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\",\n \"location\": \"westus\",\n \"name\": \"7isolutions\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\",\n \"location\": \"westus\",\n \"name\": \"a10networks\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\",\n \"location\": \"westus\",\n \"name\": \"abiquo\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/accellion\",\n \"location\": \"westus\",\n \"name\": \"accellion\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Acronis\",\n \"location\": \"westus\",\n \"name\": \"Acronis\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Acronis.Abokov.Backup\",\n \"location\": \"westus\",\n \"name\": \"Acronis.Abokov.Backup\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Acronis.Backup\",\n \"location\": \"westus\",\n \"name\": \"Acronis.Backup\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Acronis2\",\n \"location\": \"westus\",\n \"name\": \"Acronis2\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Acronis2.Abokov.Backup\",\n \"location\": \"westus\",\n \"name\": \"Acronis2.Abokov.Backup\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/actian_matrix\",\n \"location\": \"westus\",\n \"name\": \"actian_matrix\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\",\n \"location\": \"westus\",\n \"name\": \"active-navigation\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\",\n \"location\": \"westus\",\n \"name\": \"activeeon\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\",\n \"location\": \"westus\",\n \"name\": \"adam-software\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\",\n \"location\": \"westus\",\n \"name\": \"adatao\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\",\n \"location\": \"westus\",\n \"name\": \"adobe\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\",\n \"location\": \"westus\",\n \"name\": \"adobe_test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/adra-match\",\n \"location\": \"westus\",\n \"name\": \"adra-match\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\",\n \"location\": \"westus\",\n \"name\": \"advantech\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\",\n \"location\": \"westus\",\n \"name\": \"advantech-webaccess\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\",\n \"location\": \"westus\",\n \"name\": \"aerospike\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike-database\",\n \"location\": \"westus\",\n \"name\": \"aerospike-database\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/aimsinnovation\",\n \"location\": \"westus\",\n \"name\": \"aimsinnovation\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\",\n \"location\": \"westus\",\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/akeron\",\n \"location\": \"westus\",\n \"name\": \"akeron\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\",\n \"location\": \"westus\",\n \"name\": \"alachisoft\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\",\n \"location\": \"westus\",\n \"name\": \"alertlogic\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\",\n \"location\": \"westus\",\n \"name\": \"AlertLogic.Extension\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\",\n \"location\": \"westus\",\n \"name\": \"algebraix-data\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\",\n \"location\": \"westus\",\n \"name\": \"alldigital-brevity\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/alteryx\",\n \"location\": \"westus\",\n \"name\": \"alteryx\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\",\n \"location\": \"westus\",\n \"name\": \"altiar\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/analitica\",\n \"location\": \"westus\",\n \"name\": \"analitica\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/angoss\",\n \"location\": \"westus\",\n \"name\": \"angoss\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/apigee\",\n \"location\": \"westus\",\n \"name\": \"apigee\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/appcelerator\",\n \"location\": \"westus\",\n \"name\": \"appcelerator\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\",\n \"location\": \"westus\",\n \"name\": \"appcitoinc\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\",\n \"location\": \"westus\",\n \"name\": \"appex-networks\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\",\n \"location\": \"westus\",\n \"name\": \"appistry\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\",\n \"location\": \"westus\",\n \"name\": \"apprenda\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\",\n \"location\": \"westus\",\n \"name\": \"appveyorci\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\",\n \"location\": \"westus\",\n \"name\": \"appzero\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\",\n \"location\": \"westus\",\n \"name\": \"arangodb\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\",\n \"location\": \"westus\",\n \"name\": \"aras\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/array_networks\",\n \"location\": \"westus\",\n \"name\": \"array_networks\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/aspera\",\n \"location\": \"westus\",\n \"name\": \"aspera\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/aspex\",\n \"location\": \"westus\",\n \"name\": \"aspex\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/aspex-managed-cloud\",\n \"location\": \"westus\",\n \"name\": \"aspex-managed-cloud\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\",\n \"location\": \"westus\",\n \"name\": \"attunity_cloudbeam\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/auraportal\",\n \"location\": \"westus\",\n \"name\": \"auraportal\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\",\n \"location\": \"westus\",\n \"name\": \"auriq-systems\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/avepoint\",\n \"location\": \"westus\",\n \"name\": \"avepoint\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/aviatrix-systems\",\n \"location\": \"westus\",\n \"name\": \"aviatrix-systems\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\",\n \"location\": \"westus\",\n \"name\": \"awingu\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/axway\",\n \"location\": \"westus\",\n \"name\": \"axway\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\",\n \"location\": \"westus\",\n \"name\": \"azul\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\",\n \"location\": \"westus\",\n \"name\": \"AzureRT.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/azuresyncfusion\",\n \"location\": \"westus\",\n \"name\": \"azuresyncfusion\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureTools1type\",\n \"location\": \"westus\",\n \"name\": \"AzureTools1type\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureTools1type100\",\n \"location\": \"westus\",\n \"name\": \"AzureTools1type100\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureTools1type200\",\n \"location\": \"westus\",\n \"name\": \"AzureTools1type200\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/balabit\",\n \"location\": \"westus\",\n \"name\": \"balabit\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\",\n \"location\": \"westus\",\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\",\n \"location\": \"westus\",\n \"name\": \"barracudanetworks\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\",\n \"location\": \"westus\",\n \"name\": \"basho\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\",\n \"location\": \"westus\",\n \"name\": \"Bitnami\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/bizagi\",\n \"location\": \"westus\",\n \"name\": \"bizagi\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/biztalk360\",\n \"location\": \"westus\",\n \"name\": \"biztalk360\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/blackberry\",\n \"location\": \"westus\",\n \"name\": \"blackberry\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\",\n \"location\": \"westus\",\n \"name\": \"bluetalon\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/bmcctm.test\",\n \"location\": \"westus\",\n \"name\": \"bmcctm.test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\",\n \"location\": \"westus\",\n \"name\": \"boundlessgeo\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\",\n \"location\": \"westus\",\n \"name\": \"boxless\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/brainshare-it\",\n \"location\": \"westus\",\n \"name\": \"brainshare-it\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/brocade_communications\",\n \"location\": \"westus\",\n \"name\": \"brocade_communications\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\",\n \"location\": \"westus\",\n \"name\": \"bryte\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\",\n \"location\": \"westus\",\n \"name\": \"bssw\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\",\n \"location\": \"westus\",\n \"name\": \"buddhalabs\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/bugrius\",\n \"location\": \"westus\",\n \"name\": \"bugrius\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\",\n \"location\": \"westus\",\n \"name\": \"bwappengine\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\",\n \"location\": \"westus\",\n \"name\": \"Canonical\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/caringo\",\n \"location\": \"westus\",\n \"name\": \"caringo\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\",\n \"location\": \"westus\",\n \"name\": \"catechnologies\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cautelalabs\",\n \"location\": \"westus\",\n \"name\": \"cautelalabs\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\",\n \"location\": \"westus\",\n \"name\": \"cds\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\",\n \"location\": \"westus\",\n \"name\": \"certivox\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\",\n \"location\": \"westus\",\n \"name\": \"checkpoint\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\",\n \"location\": \"westus\",\n \"name\": \"checkpointsystems\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\",\n \"location\": \"westus\",\n \"name\": \"chef-software\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\",\n \"location\": \"westus\",\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cherwell\",\n \"location\": \"westus\",\n \"name\": \"cherwell\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cipherpoint\",\n \"location\": \"westus\",\n \"name\": \"cipherpoint\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\",\n \"location\": \"westus\",\n \"name\": \"circleci\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\",\n \"location\": \"westus\",\n \"name\": \"cires21\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cisco\",\n \"location\": \"westus\",\n \"name\": \"cisco\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/citrix\",\n \"location\": \"westus\",\n \"name\": \"citrix\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\",\n \"location\": \"westus\",\n \"name\": \"clickberry\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cloud-cruiser\",\n \"location\": \"westus\",\n \"name\": \"cloud-cruiser\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees\",\n \"location\": \"westus\",\n \"name\": \"cloudbees\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\",\n \"location\": \"westus\",\n \"name\": \"cloudbees-enterprise-jenkins\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbolt-software\",\n \"location\": \"westus\",\n \"name\": \"cloudbolt-software\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\",\n \"location\": \"westus\",\n \"name\": \"cloudboost\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudcoreo\",\n \"location\": \"westus\",\n \"name\": \"cloudcoreo\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\",\n \"location\": \"westus\",\n \"name\": \"cloudera\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera1qaz2wsx\",\n \"location\": \"westus\",\n \"name\": \"cloudera1qaz2wsx\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudhouse\",\n \"location\": \"westus\",\n \"name\": \"cloudhouse\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\",\n \"location\": \"westus\",\n \"name\": \"cloudlink\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\",\n \"location\": \"westus\",\n \"name\": \"CloudLink.SecureVM\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\",\n \"location\": \"westus\",\n \"name\": \"CloudLinkEMC.SecureVM\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\",\n \"location\": \"westus\",\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\",\n \"location\": \"westus\",\n \"name\": \"cloudsoft\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\",\n \"location\": \"westus\",\n \"name\": \"clustrix\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\",\n \"location\": \"westus\",\n \"name\": \"codelathe\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/codenvy\",\n \"location\": \"westus\",\n \"name\": \"codenvy\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cognosys\",\n \"location\": \"westus\",\n \"name\": \"cognosys\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\",\n \"location\": \"westus\",\n \"name\": \"cohesive\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\",\n \"location\": \"westus\",\n \"name\": \"commvault\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/companyname-short\",\n \"location\": \"westus\",\n \"name\": \"companyname-short\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/comunity\",\n \"location\": \"westus\",\n \"name\": \"comunity\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\",\n \"location\": \"westus\",\n \"name\": \"Confer\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\",\n \"location\": \"westus\",\n \"name\": \"Confer.TestSensor\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/consensys\",\n \"location\": \"westus\",\n \"name\": \"consensys\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/convertigo\",\n \"location\": \"westus\",\n \"name\": \"convertigo\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\",\n \"location\": \"westus\",\n \"name\": \"cordis\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\",\n \"location\": \"westus\",\n \"name\": \"corent-technology-pvt\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\",\n \"location\": \"westus\",\n \"name\": \"CoreOS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\",\n \"location\": \"westus\",\n \"name\": \"cortical-io\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\",\n \"location\": \"westus\",\n \"name\": \"couchbase\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/credativ\",\n \"location\": \"westus\",\n \"name\": \"credativ\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/csstest\",\n \"location\": \"westus\",\n \"name\": \"csstest\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/dalet\",\n \"location\": \"westus\",\n \"name\": \"dalet\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/danielsol.AzureTools1\",\n \"location\": \"westus\",\n \"name\": \"danielsol.AzureTools1\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/danielsol.AzureTools1pns\",\n \"location\": \"westus\",\n \"name\": \"danielsol.AzureTools1pns\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/danielsol.AzureTools1pns2\",\n \"location\": \"westus\",\n \"name\": \"danielsol.AzureTools1pns2\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/danielsol.AzureTools1pns3\",\n \"location\": \"westus\",\n \"name\": \"danielsol.AzureTools1pns3\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Dans.Windows.App\",\n \"location\": \"westus\",\n \"name\": \"Dans.Windows.App\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Dans2.Windows.App\",\n \"location\": \"westus\",\n \"name\": \"Dans2.Windows.App\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Dans3.Windows.App\",\n \"location\": \"westus\",\n \"name\": \"Dans3.Windows.App\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\",\n \"location\": \"westus\",\n \"name\": \"dataart\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\",\n \"location\": \"westus\",\n \"name\": \"datacastle\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\",\n \"location\": \"westus\",\n \"name\": \"Datadog.Agent\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\",\n \"location\": \"westus\",\n \"name\": \"dataexpeditioninc\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/dataiku\",\n \"location\": \"westus\",\n \"name\": \"dataiku\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\",\n \"location\": \"westus\",\n \"name\": \"datalayer\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\",\n \"location\": \"westus\",\n \"name\": \"dataliberation\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\",\n \"location\": \"westus\",\n \"name\": \"datastax\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/datasunrise\",\n \"location\": \"westus\",\n \"name\": \"datasunrise\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\",\n \"location\": \"westus\",\n \"name\": \"defacto_global_\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\",\n \"location\": \"westus\",\n \"name\": \"dell-software\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\",\n \"location\": \"westus\",\n \"name\": \"dell_software\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/denyall\",\n \"location\": \"westus\",\n \"name\": \"denyall\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\",\n \"location\": \"westus\",\n \"name\": \"derdack\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\",\n \"location\": \"westus\",\n \"name\": \"dgsecure\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\",\n \"location\": \"westus\",\n \"name\": \"docker\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/docscorp-us\",\n \"location\": \"westus\",\n \"name\": \"docscorp-us\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/dolbydeveloper\",\n \"location\": \"westus\",\n \"name\": \"dolbydeveloper\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/dome9\",\n \"location\": \"westus\",\n \"name\": \"dome9\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\",\n \"location\": \"westus\",\n \"name\": \"donovapub\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\",\n \"location\": \"westus\",\n \"name\": \"drone\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\",\n \"location\": \"westus\",\n \"name\": \"dundas\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\",\n \"location\": \"westus\",\n \"name\": \"dynatrace.ruxit\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\",\n \"location\": \"westus\",\n \"name\": \"easyterritory\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/edevtech\",\n \"location\": \"westus\",\n \"name\": \"edevtech\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\",\n \"location\": \"westus\",\n \"name\": \"egress\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/eip\",\n \"location\": \"westus\",\n \"name\": \"eip\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/eip-eipower\",\n \"location\": \"westus\",\n \"name\": \"eip-eipower\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\",\n \"location\": \"westus\",\n \"name\": \"elastacloud\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\",\n \"location\": \"westus\",\n \"name\": \"elasticbox\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/elecard\",\n \"location\": \"westus\",\n \"name\": \"elecard\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\",\n \"location\": \"westus\",\n \"name\": \"elfiqnetworks\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\",\n \"location\": \"westus\",\n \"name\": \"eloquera\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/enforongo\",\n \"location\": \"westus\",\n \"name\": \"enforongo\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\",\n \"location\": \"westus\",\n \"name\": \"eperi\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\",\n \"location\": \"westus\",\n \"name\": \"equilibrium\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\",\n \"location\": \"westus\",\n \"name\": \"ESET\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\",\n \"location\": \"westus\",\n \"name\": \"ESET.FileSecurity\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\",\n \"location\": \"westus\",\n \"name\": \"esri\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\",\n \"location\": \"westus\",\n \"name\": \"eurotech\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/evostream-inc\",\n \"location\": \"westus\",\n \"name\": \"evostream-inc\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\",\n \"location\": \"westus\",\n \"name\": \"exasol\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\",\n \"location\": \"westus\",\n \"name\": \"exit-games\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\",\n \"location\": \"westus\",\n \"name\": \"expertime\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\",\n \"location\": \"westus\",\n \"name\": \"f5-networks\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\",\n \"location\": \"westus\",\n \"name\": \"filebridge\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\",\n \"location\": \"westus\",\n \"name\": \"firehost\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\",\n \"location\": \"westus\",\n \"name\": \"flexerasoftware\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\",\n \"location\": \"westus\",\n \"name\": \"foghorn-systems\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/forscene\",\n \"location\": \"westus\",\n \"name\": \"forscene\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\",\n \"location\": \"westus\",\n \"name\": \"fortinet\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/fortycloud\",\n \"location\": \"westus\",\n \"name\": \"fortycloud\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/fw\",\n \"location\": \"westus\",\n \"name\": \"fw\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/g-data-software\",\n \"location\": \"westus\",\n \"name\": \"g-data-software\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\",\n \"location\": \"westus\",\n \"name\": \"gemalto-safenet\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\",\n \"location\": \"westus\",\n \"name\": \"Gemalto.SafeNet.ProtectV\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\",\n \"location\": \"westus\",\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\",\n \"location\": \"westus\",\n \"name\": \"GitHub\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/gitlab\",\n \"location\": \"westus\",\n \"name\": \"gitlab\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/greathorn\",\n \"location\": \"westus\",\n \"name\": \"greathorn\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\",\n \"location\": \"westus\",\n \"name\": \"greensql\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/haivision\",\n \"location\": \"westus\",\n \"name\": \"haivision\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\",\n \"location\": \"westus\",\n \"name\": \"halobicloud\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\",\n \"location\": \"westus\",\n \"name\": \"hanu\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\",\n \"location\": \"westus\",\n \"name\": \"hewlett-packard\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/hitachi-solutions\",\n \"location\": \"westus\",\n \"name\": \"hitachi-solutions\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\",\n \"location\": \"westus\",\n \"name\": \"hortonworks\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/hpe\",\n \"location\": \"westus\",\n \"name\": \"hpe\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/HPE.Security.ApplicationDefender\",\n \"location\": \"westus\",\n \"name\": \"HPE.Security.ApplicationDefender\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/humanlogic\",\n \"location\": \"westus\",\n \"name\": \"humanlogic\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\",\n \"location\": \"westus\",\n \"name\": \"iaansys\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\",\n \"location\": \"westus\",\n \"name\": \"iamcloud\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/ibabs-eu\",\n \"location\": \"westus\",\n \"name\": \"ibabs-eu\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/imaginecommunications\",\n \"location\": \"westus\",\n \"name\": \"imaginecommunications\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\",\n \"location\": \"westus\",\n \"name\": \"imc\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/imperva\",\n \"location\": \"westus\",\n \"name\": \"imperva\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/incredibuild\",\n \"location\": \"westus\",\n \"name\": \"incredibuild\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\",\n \"location\": \"westus\",\n \"name\": \"infolibrarian\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica\",\n \"location\": \"westus\",\n \"name\": \"informatica\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\",\n \"location\": \"westus\",\n \"name\": \"informatica-cloud\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/informationbuilders\",\n \"location\": \"westus\",\n \"name\": \"informationbuilders\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\",\n \"location\": \"westus\",\n \"name\": \"infostrat\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/inriver\",\n \"location\": \"westus\",\n \"name\": \"inriver\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/intel\",\n \"location\": \"westus\",\n \"name\": \"intel\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\",\n \"location\": \"westus\",\n \"name\": \"intelligent-plant-ltd\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\",\n \"location\": \"westus\",\n \"name\": \"iquest\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/ishlangu-load-balancer-adc\",\n \"location\": \"westus\",\n \"name\": \"ishlangu-load-balancer-adc\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\",\n \"location\": \"westus\",\n \"name\": \"itelios\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/jedox\",\n \"location\": \"westus\",\n \"name\": \"jedox\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\",\n \"location\": \"westus\",\n \"name\": \"jelastic\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\",\n \"location\": \"westus\",\n \"name\": \"jetnexus\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\",\n \"location\": \"westus\",\n \"name\": \"jfrog\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/jitterbit_integration\",\n \"location\": \"westus\",\n \"name\": \"jitterbit_integration\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\",\n \"location\": \"westus\",\n \"name\": \"kaazing\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\",\n \"location\": \"westus\",\n \"name\": \"kaspersky_lab\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\",\n \"location\": \"westus\",\n \"name\": \"kemptech\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/kepion\",\n \"location\": \"westus\",\n \"name\": \"kepion\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/kollective\",\n \"location\": \"westus\",\n \"name\": \"kollective\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/le\",\n \"location\": \"westus\",\n \"name\": \"le\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\",\n \"location\": \"westus\",\n \"name\": \"lieberlieber\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\",\n \"location\": \"westus\",\n \"name\": \"liebsoft\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\",\n \"location\": \"westus\",\n \"name\": \"literatu\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\",\n \"location\": \"westus\",\n \"name\": \"loadbalancer\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/LocalTest.TrendMicro.DeepSecurity\",\n \"location\": \"westus\",\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\",\n \"location\": \"westus\",\n \"name\": \"logi-analytics\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\",\n \"location\": \"westus\",\n \"name\": \"loginpeople\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/logsign\",\n \"location\": \"westus\",\n \"name\": \"logsign\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\",\n \"location\": \"westus\",\n \"name\": \"logtrust\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\",\n \"location\": \"westus\",\n \"name\": \"looker\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/luxoft\",\n \"location\": \"westus\",\n \"name\": \"luxoft\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\",\n \"location\": \"westus\",\n \"name\": \"magelia\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/manageengine\",\n \"location\": \"westus\",\n \"name\": \"manageengine\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/mapr-technologies\",\n \"location\": \"westus\",\n \"name\": \"mapr-technologies\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/mariadb\",\n \"location\": \"westus\",\n \"name\": \"mariadb\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\",\n \"location\": \"westus\",\n \"name\": \"massiveanalytic-\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/mavinglobal\",\n \"location\": \"westus\",\n \"name\": \"mavinglobal\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\",\n \"location\": \"westus\",\n \"name\": \"McAfee.EndpointSecurity\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\",\n \"location\": \"westus\",\n \"name\": \"McAfee.EndpointSecurity.test3\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\",\n \"location\": \"westus\",\n \"name\": \"meanio\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/mediazenie\",\n \"location\": \"westus\",\n \"name\": \"mediazenie\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\",\n \"location\": \"westus\",\n \"name\": \"memsql\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/mendix\",\n \"location\": \"westus\",\n \"name\": \"mendix\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\",\n \"location\": \"westus\",\n \"name\": \"mentalnotes\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\",\n \"location\": \"westus\",\n \"name\": \"mesosphere\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\",\n \"location\": \"westus\",\n \"name\": \"metavistech\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\",\n \"location\": \"westus\",\n \"name\": \"mfiles\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\",\n \"location\": \"westus\",\n \"name\": \"Microsoft\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoft-ads\",\n \"location\": \"westus\",\n \"name\": \"microsoft-ads\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoft-r-products\",\n \"location\": \"westus\",\n \"name\": \"microsoft-r-products\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Azure.Applications\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Azure.Backup.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Azure.Diagnostics\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Azure.Extensions\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Azure.Extensions.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Azure.RecoveryServices\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Azure.Security\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Azure.Security.Internal\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.SiteRecovery.Test\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Compute\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Golive.Extensions\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Golive.Extensions\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.HpcCompute\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.HpcPack\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.OSTCExtensions\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions.Test\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.OSTCExtensions.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.CMD\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.CMD\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.ErrorChange\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.ErrorChange\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.Install\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.Internal\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.PaaS\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.PaaS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Preview\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.Preview\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Release.Test\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.Release.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Telemetry\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.Telemetry\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test.0\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.Test.0\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test.1\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.Test.1\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test2\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.Test2\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.UpgradeTest\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.UpgradeTest\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.UtcTest\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.UtcTest\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.Wmf\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf4Test\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.Wmf4Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf5\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.Wmf5\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.WmfRTM\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Powershell.WmfRTM\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.SqlServer.Management\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.SystemCenter\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.VisualStudio\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.ServiceProfiler\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Test\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.VisualStudio.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\",\n \"location\": \"westus\",\n \"name\": \"Microsoft.WindowsAzure.Compute\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\",\n \"location\": \"westus\",\n \"name\": \"MicrosoftAzureSiteRecovery\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\",\n \"location\": \"westus\",\n \"name\": \"MicrosoftBizTalkServer\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\",\n \"location\": \"westus\",\n \"name\": \"MicrosoftDynamicsAX\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\",\n \"location\": \"westus\",\n \"name\": \"MicrosoftDynamicsGP\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\",\n \"location\": \"westus\",\n \"name\": \"MicrosoftDynamicsNAV\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\",\n \"location\": \"westus\",\n \"name\": \"MicrosoftHybridCloudStorage\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\",\n \"location\": \"westus\",\n \"name\": \"MicrosoftSharePoint\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\",\n \"location\": \"westus\",\n \"name\": \"MicrosoftSQLServer\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\",\n \"location\": \"westus\",\n \"name\": \"MicrosoftVisualStudio\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\",\n \"location\": \"westus\",\n \"name\": \"MicrosoftWindowsServer\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\",\n \"location\": \"westus\",\n \"name\": \"MicrosoftWindowsServerEssentials\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\",\n \"location\": \"westus\",\n \"name\": \"MicrosoftWindowsServerHPCPack\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\",\n \"location\": \"westus\",\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\",\n \"location\": \"westus\",\n \"name\": \"midvision\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/miraclelinux\",\n \"location\": \"westus\",\n \"name\": \"miraclelinux\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/miracl_linux\",\n \"location\": \"westus\",\n \"name\": \"miracl_linux\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/mobilab\",\n \"location\": \"westus\",\n \"name\": \"mobilab\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\",\n \"location\": \"westus\",\n \"name\": \"mokxa-technologies\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\",\n \"location\": \"westus\",\n \"name\": \"moviemasher\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\",\n \"location\": \"westus\",\n \"name\": \"msopentech\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\",\n \"location\": \"westus\",\n \"name\": \"MSOpenTech.Extensions\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/msrazuresapservices\",\n \"location\": \"westus\",\n \"name\": \"msrazuresapservices\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\",\n \"location\": \"westus\",\n \"name\": \"mtnfog\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\",\n \"location\": \"westus\",\n \"name\": \"mvp-systems\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\",\n \"location\": \"westus\",\n \"name\": \"mxhero\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/my-com\",\n \"location\": \"westus\",\n \"name\": \"my-com\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/namirial\",\n \"location\": \"westus\",\n \"name\": \"namirial\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/nasuni\",\n \"location\": \"westus\",\n \"name\": \"nasuni\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\",\n \"location\": \"westus\",\n \"name\": \"ncbi\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\",\n \"location\": \"westus\",\n \"name\": \"netapp\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/netgate\",\n \"location\": \"westus\",\n \"name\": \"netgate\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/netiq\",\n \"location\": \"westus\",\n \"name\": \"netiq\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/netwrix\",\n \"location\": \"westus\",\n \"name\": \"netwrix\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/neusoft-neteye\",\n \"location\": \"westus\",\n \"name\": \"neusoft-neteye\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/new-signature\",\n \"location\": \"westus\",\n \"name\": \"new-signature\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/nextlimit\",\n \"location\": \"westus\",\n \"name\": \"nextlimit\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\",\n \"location\": \"westus\",\n \"name\": \"nexus\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\",\n \"location\": \"westus\",\n \"name\": \"nginxinc\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\",\n \"location\": \"westus\",\n \"name\": \"nicepeopleatwork\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\",\n \"location\": \"westus\",\n \"name\": \"nodejsapi\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/nuxeo\",\n \"location\": \"westus\",\n \"name\": \"nuxeo\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\",\n \"location\": \"westus\",\n \"name\": \"officeclipsuite\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/omega-software\",\n \"location\": \"westus\",\n \"name\": \"omega-software\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/op5\",\n \"location\": \"westus\",\n \"name\": \"op5\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\",\n \"location\": \"westus\",\n \"name\": \"opencell\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\",\n \"location\": \"westus\",\n \"name\": \"OpenLogic\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\",\n \"location\": \"westus\",\n \"name\": \"openmeap\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\",\n \"location\": \"westus\",\n \"name\": \"opennebulasystems\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/opentext\",\n \"location\": \"westus\",\n \"name\": \"opentext\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\",\n \"location\": \"westus\",\n \"name\": \"Oracle\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/orfast-technologies\",\n \"location\": \"westus\",\n \"name\": \"orfast-technologies\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\",\n \"location\": \"westus\",\n \"name\": \"orientdb\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\",\n \"location\": \"westus\",\n \"name\": \"osisoft\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\",\n \"location\": \"westus\",\n \"name\": \"outsystems\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/paloaltonetworks\",\n \"location\": \"westus\",\n \"name\": \"paloaltonetworks\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/panorama-necto\",\n \"location\": \"westus\",\n \"name\": \"panorama-necto\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/panzura-file-system\",\n \"location\": \"westus\",\n \"name\": \"panzura-file-system\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\",\n \"location\": \"westus\",\n \"name\": \"pointmatter\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/portalarchitects\",\n \"location\": \"westus\",\n \"name\": \"portalarchitects\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\",\n \"location\": \"westus\",\n \"name\": \"predictionio\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\",\n \"location\": \"westus\",\n \"name\": \"predixion\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\",\n \"location\": \"westus\",\n \"name\": \"prestashop\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/prime-strategy\",\n \"location\": \"westus\",\n \"name\": \"prime-strategy\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\",\n \"location\": \"westus\",\n \"name\": \"primestream\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/process-one\",\n \"location\": \"westus\",\n \"name\": \"process-one\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\",\n \"location\": \"westus\",\n \"name\": \"profisee\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/progelspa\",\n \"location\": \"westus\",\n \"name\": \"progelspa\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/ptv_group\",\n \"location\": \"westus\",\n \"name\": \"ptv_group\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\",\n \"location\": \"westus\",\n \"name\": \"PuppetLabs\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\",\n \"location\": \"westus\",\n \"name\": \"PuppetLabs.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\",\n \"location\": \"westus\",\n \"name\": \"pxlag_swiss\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/quales\",\n \"location\": \"westus\",\n \"name\": \"quales\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Qualys.Test\",\n \"location\": \"westus\",\n \"name\": \"Qualys.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Qualys.Test.2\",\n \"location\": \"westus\",\n \"name\": \"Qualys.Test.2\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Qualys.Test.3\",\n \"location\": \"westus\",\n \"name\": \"Qualys.Test.3\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/qualysguard\",\n \"location\": \"westus\",\n \"name\": \"qualysguard\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/quasardb\",\n \"location\": \"westus\",\n \"name\": \"quasardb\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\",\n \"location\": \"westus\",\n \"name\": \"rancher\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/RedHat\",\n \"location\": \"westus\",\n \"name\": \"RedHat\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\",\n \"location\": \"westus\",\n \"name\": \"redpoint-global\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/relevance-lab\",\n \"location\": \"westus\",\n \"name\": \"relevance-lab\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\",\n \"location\": \"westus\",\n \"name\": \"remotelearner\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\",\n \"location\": \"westus\",\n \"name\": \"revolution-analytics\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\",\n \"location\": \"westus\",\n \"name\": \"RightScaleLinux\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\",\n \"location\": \"westus\",\n \"name\": \"RightScaleWindowsServer\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\",\n \"location\": \"westus\",\n \"name\": \"riverbed\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\",\n \"location\": \"westus\",\n \"name\": \"RiverbedTechnology\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/rocketsoftware\",\n \"location\": \"westus\",\n \"name\": \"rocketsoftware\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/rocket_software\",\n \"location\": \"westus\",\n \"name\": \"rocket_software\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/rp\",\n \"location\": \"westus\",\n \"name\": \"rp\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/saama\",\n \"location\": \"westus\",\n \"name\": \"saama\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\",\n \"location\": \"westus\",\n \"name\": \"saltstack\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\",\n \"location\": \"westus\",\n \"name\": \"sap\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\",\n \"location\": \"westus\",\n \"name\": \"scalearc\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\",\n \"location\": \"westus\",\n \"name\": \"scalebase\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\",\n \"location\": \"westus\",\n \"name\": \"seagate\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\",\n \"location\": \"westus\",\n \"name\": \"searchblox\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/sensorberg\",\n \"location\": \"westus\",\n \"name\": \"sensorberg\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/servoy\",\n \"location\": \"westus\",\n \"name\": \"servoy\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\",\n \"location\": \"westus\",\n \"name\": \"sharefile\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/shareshiftneeraj.test\",\n \"location\": \"westus\",\n \"name\": \"shareshiftneeraj.test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\",\n \"location\": \"westus\",\n \"name\": \"shavlik\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\",\n \"location\": \"westus\",\n \"name\": \"sightapps\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/simmachinesinc\",\n \"location\": \"westus\",\n \"name\": \"simmachinesinc\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\",\n \"location\": \"westus\",\n \"name\": \"sinefa\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\",\n \"location\": \"westus\",\n \"name\": \"sios_datakeeper\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\",\n \"location\": \"westus\",\n \"name\": \"sisense\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Site24x7\",\n \"location\": \"westus\",\n \"name\": \"Site24x7\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/snaplogic\",\n \"location\": \"westus\",\n \"name\": \"snaplogic\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\",\n \"location\": \"westus\",\n \"name\": \"snip2code\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/soasta\",\n \"location\": \"westus\",\n \"name\": \"soasta\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\",\n \"location\": \"westus\",\n \"name\": \"softnas\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\",\n \"location\": \"westus\",\n \"name\": \"soha\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\",\n \"location\": \"westus\",\n \"name\": \"solanolabs\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/solarwinds\",\n \"location\": \"westus\",\n \"name\": \"solarwinds\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\",\n \"location\": \"westus\",\n \"name\": \"spacecurve\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\",\n \"location\": \"westus\",\n \"name\": \"spagobi\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\",\n \"location\": \"westus\",\n \"name\": \"sphere3d\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/splunk\",\n \"location\": \"westus\",\n \"name\": \"splunk\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/sqlsentry\",\n \"location\": \"westus\",\n \"name\": \"sqlsentry\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\",\n \"location\": \"westus\",\n \"name\": \"stackato-platform-as-a-service\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\",\n \"location\": \"westus\",\n \"name\": \"stackstorm\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\",\n \"location\": \"westus\",\n \"name\": \"starwind\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/StatusReport.Diagnostics.Test\",\n \"location\": \"westus\",\n \"name\": \"StatusReport.Diagnostics.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\",\n \"location\": \"westus\",\n \"name\": \"steelhive\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/stonefly\",\n \"location\": \"westus\",\n \"name\": \"stonefly\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\",\n \"location\": \"westus\",\n \"name\": \"stormshield\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/storreduce\",\n \"location\": \"westus\",\n \"name\": \"storreduce\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\",\n \"location\": \"westus\",\n \"name\": \"stratalux\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/stratus-id\",\n \"location\": \"westus\",\n \"name\": \"stratus-id\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\",\n \"location\": \"westus\",\n \"name\": \"sunview-software\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\",\n \"location\": \"westus\",\n \"name\": \"SUSE\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\",\n \"location\": \"westus\",\n \"name\": \"Symantec\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\",\n \"location\": \"westus\",\n \"name\": \"Symantec.QA\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\",\n \"location\": \"westus\",\n \"name\": \"Symantec.staging\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\",\n \"location\": \"westus\",\n \"name\": \"Symantec.test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/symantectest1\",\n \"location\": \"westus\",\n \"name\": \"symantectest1\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/SymantecTest10\",\n \"location\": \"westus\",\n \"name\": \"SymantecTest10\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/SymantecTest6\",\n \"location\": \"westus\",\n \"name\": \"SymantecTest6\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/SymantecTest7\",\n \"location\": \"westus\",\n \"name\": \"SymantecTest7\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/SymantecTest8\",\n \"location\": \"westus\",\n \"name\": \"SymantecTest8\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/SymantecTest9\",\n \"location\": \"westus\",\n \"name\": \"SymantecTest9\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/syncfusionbigdataplatfor\",\n \"location\": \"westus\",\n \"name\": \"syncfusionbigdataplatfor\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/tableau\",\n \"location\": \"westus\",\n \"name\": \"tableau\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\",\n \"location\": \"westus\",\n \"name\": \"tactic\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/talon\",\n \"location\": \"westus\",\n \"name\": \"talon\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\",\n \"location\": \"westus\",\n \"name\": \"targit\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\",\n \"location\": \"westus\",\n \"name\": \"tavendo\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\",\n \"location\": \"westus\",\n \"name\": \"techdivision\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\",\n \"location\": \"westus\",\n \"name\": \"telepat\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\",\n \"location\": \"westus\",\n \"name\": \"tenable\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\",\n \"location\": \"westus\",\n \"name\": \"tentity\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\",\n \"location\": \"westus\",\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\",\n \"location\": \"westus\",\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.HP.AppDefender\",\n \"location\": \"westus\",\n \"name\": \"Test.HP.AppDefender\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.NJHP.AppDefender\",\n \"location\": \"westus\",\n \"name\": \"Test.NJHP.AppDefender\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\",\n \"location\": \"westus\",\n \"name\": \"Test.TrendMicro.DeepSecurity\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity2\",\n \"location\": \"westus\",\n \"name\": \"Test.TrendMicro.DeepSecurity2\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity3\",\n \"location\": \"westus\",\n \"name\": \"Test.TrendMicro.DeepSecurity3\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Test1.NJHP.AppDefender\",\n \"location\": \"westus\",\n \"name\": \"Test1.NJHP.AppDefender\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Test2.Symantec.SymantecEndpointProtection\",\n \"location\": \"westus\",\n \"name\": \"Test2.Symantec.SymantecEndpointProtection\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Test3.Symantec.SymantecEndpointProtection\",\n \"location\": \"westus\",\n \"name\": \"Test3.Symantec.SymantecEndpointProtection\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Test4.Symantec.SymantecEndpointProtection\",\n \"location\": \"westus\",\n \"name\": \"Test4.Symantec.SymantecEndpointProtection\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Test5.Symantec.SymantecEndpointProtection\",\n \"location\": \"westus\",\n \"name\": \"Test5.Symantec.SymantecEndpointProtection\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\",\n \"location\": \"westus\",\n \"name\": \"thinkboxsoftware\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\",\n \"location\": \"westus\",\n \"name\": \"topdesk\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\",\n \"location\": \"westus\",\n \"name\": \"torusware\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\",\n \"location\": \"westus\",\n \"name\": \"transvault\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\",\n \"location\": \"westus\",\n \"name\": \"trendmicro\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\",\n \"location\": \"westus\",\n \"name\": \"TrendMicro.DeepSecurity\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\",\n \"location\": \"westus\",\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\",\n \"location\": \"westus\",\n \"name\": \"TrendMicro.PortalProtect\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\",\n \"location\": \"westus\",\n \"name\": \"tsa-public-service\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\",\n \"location\": \"westus\",\n \"name\": \"typesafe\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\",\n \"location\": \"westus\",\n \"name\": \"ubercloud\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/unidesk\",\n \"location\": \"westus\",\n \"name\": \"unidesk\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/unidesk-corp\",\n \"location\": \"westus\",\n \"name\": \"unidesk-corp\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\",\n \"location\": \"westus\",\n \"name\": \"usp\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/vbot\",\n \"location\": \"westus\",\n \"name\": \"vbot\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/vecompsoftware\",\n \"location\": \"westus\",\n \"name\": \"vecompsoftware\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\",\n \"location\": \"westus\",\n \"name\": \"veeam\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\",\n \"location\": \"westus\",\n \"name\": \"vidispine\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\",\n \"location\": \"westus\",\n \"name\": \"vidizmo\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/vircom\",\n \"location\": \"westus\",\n \"name\": \"vircom\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\",\n \"location\": \"westus\",\n \"name\": \"virtualworks\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\",\n \"location\": \"westus\",\n \"name\": \"vision_solutions\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/vmturbo\",\n \"location\": \"westus\",\n \"name\": \"vmturbo\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\",\n \"location\": \"westus\",\n \"name\": \"Vormetric\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\",\n \"location\": \"westus\",\n \"name\": \"Vormetric.TestExt\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\",\n \"location\": \"westus\",\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\",\n \"location\": \"westus\",\n \"name\": \"vte\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/WAD-VMSS.Test\",\n \"location\": \"westus\",\n \"name\": \"WAD-VMSS.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/WAD2AI.Diagnostics.Test\",\n \"location\": \"westus\",\n \"name\": \"WAD2AI.Diagnostics.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/WAD2EventHub.Diagnostics.Test\",\n \"location\": \"westus\",\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\",\n \"location\": \"westus\",\n \"name\": \"waratek\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/warewolf-esb\",\n \"location\": \"westus\",\n \"name\": \"warewolf-esb\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\",\n \"location\": \"westus\",\n \"name\": \"watchfulsoftware\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\",\n \"location\": \"westus\",\n \"name\": \"websense-apmailpe\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\",\n \"location\": \"westus\",\n \"name\": \"wmspanel\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\",\n \"location\": \"westus\",\n \"name\": \"workshare-technology\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\",\n \"location\": \"westus\",\n \"name\": \"wowza\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\",\n \"location\": \"westus\",\n \"name\": \"xebialabs\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\",\n \"location\": \"westus\",\n \"name\": \"xfinityinc\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\",\n \"location\": \"westus\",\n \"name\": \"xmpro\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/xrm\",\n \"location\": \"westus\",\n \"name\": \"xrm\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\",\n \"location\": \"westus\",\n \"name\": \"xtremedata\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\",\n \"location\": \"westus\",\n \"name\": \"yellowfin\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\",\n \"location\": \"westus\",\n \"name\": \"your-shop-online\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\",\n \"location\": \"westus\",\n \"name\": \"zementis\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\",\n \"location\": \"westus\",\n \"name\": \"zend\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/zoomdata\",\n \"location\": \"westus\",\n \"name\": \"zoomdata\",\n \"tags\": null\n }\n]", + "test_vm_image_list_skus": "[\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS\",\n \"location\": \"westus\",\n \"name\": \"12.04.2-LTS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS\",\n \"location\": \"westus\",\n \"name\": \"12.04.3-LTS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS\",\n \"location\": \"westus\",\n \"name\": \"12.04.4-LTS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS\",\n \"location\": \"westus\",\n \"name\": \"12.04.5-DAILY-LTS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS\",\n \"location\": \"westus\",\n \"name\": \"12.04.5-LTS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.10\",\n \"location\": \"westus\",\n \"name\": \"12.10\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04-beta\",\n \"location\": \"westus\",\n \"name\": \"14.04-beta\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS\",\n \"location\": \"westus\",\n \"name\": \"14.04.0-LTS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS\",\n \"location\": \"westus\",\n \"name\": \"14.04.1-LTS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS\",\n \"location\": \"westus\",\n \"name\": \"14.04.2-LTS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS\",\n \"location\": \"westus\",\n \"name\": \"14.04.3-LTS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-DAILY-LTS\",\n \"location\": \"westus\",\n \"name\": \"14.04.4-DAILY-LTS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS\",\n \"location\": \"westus\",\n \"name\": \"14.04.4-LTS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.10\",\n \"location\": \"westus\",\n \"name\": \"14.10\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.10-beta\",\n \"location\": \"westus\",\n \"name\": \"14.10-beta\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.10-DAILY\",\n \"location\": \"westus\",\n \"name\": \"14.10-DAILY\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04\",\n \"location\": \"westus\",\n \"name\": \"15.04\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-beta\",\n \"location\": \"westus\",\n \"name\": \"15.04-beta\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY\",\n \"location\": \"westus\",\n \"name\": \"15.04-DAILY\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10\",\n \"location\": \"westus\",\n \"name\": \"15.10\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-alpha\",\n \"location\": \"westus\",\n \"name\": \"15.10-alpha\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-beta\",\n \"location\": \"westus\",\n \"name\": \"15.10-beta\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY\",\n \"location\": \"westus\",\n \"name\": \"15.10-DAILY\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-alpha\",\n \"location\": \"westus\",\n \"name\": \"16.04-alpha\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-beta\",\n \"location\": \"westus\",\n \"name\": \"16.04-beta\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-DAILY-LTS\",\n \"location\": \"westus\",\n \"name\": \"16.04.0-DAILY-LTS\",\n \"tags\": null\n },\n {\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS\",\n \"location\": \"westus\",\n \"name\": \"16.04.0-LTS\",\n \"tags\": null\n }\n]", + "test_vm_image_show": "{\n \"dataDiskImages\": [],\n \"id\": \"/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201503090\",\n \"location\": \"westus\",\n \"name\": \"14.04.201503090\",\n \"osDiskImage\": {\n \"operatingSystem\": \"Linux\"\n },\n \"plan\": null,\n \"tags\": null\n}", "test_vm_images_list_by_aliases": "", "test_vm_images_list_thru_services": "", "test_vm_list_from_group": "Availability Set : None\nId : /subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/XPLATTESTGEXTENSION9085/providers/Microsoft.Compute/virtualMachines/xplatvmExt1314\nInstance View : None\nLicense Type : None\nLocation : southeastasia\nName : xplatvmExt1314\nPlan : None\nProvisioning State : Succeeded\nResource Group : XPLATTESTGEXTENSION9085\nResources : None\nType : Microsoft.Compute/virtualMachines\nDiagnostics Profile :\n Boot Diagnostics :\n Enabled : True\n Storage Uri : https://xplatstoragext4633.blob.core.windows.net/\nHardware Profile :\n Vm Size : Standard_A1\nNetwork Profile :\n Network Interfaces :\n Id : /subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/xplatTestGExtension9085/providers/Microsoft.Network/networkInterfaces/xplatnicExt4843\n Primary : None\n Resource Group : xplatTestGExtension9085\nOs Profile :\n Admin Password : None\n Admin Username : azureuser\n Computer Name : xplatvmExt1314\n Custom Data : None\n Linux Configuration : None\n Secrets :\n None\n Windows Configuration :\n Additional Unattend Content : None\n Enable Automatic Updates : True\n Provision Vm Agent : True\n Time Zone : None\n Win Rm : None\nStorage Profile :\n Data Disks :\n None\n Image Reference :\n Offer : WindowsServerEssentials\n Publisher : MicrosoftWindowsServerEssentials\n Sku : WindowsServerEssentials\n Version : 1.0.20131018\n Os Disk :\n Caching : ReadWrite\n Create Option : fromImage\n Disk Size Gb : None\n Encryption Settings : None\n Image : None\n Name : cli1eaed78b36def353-os-1453419539945\n Os Type : Windows\n Vhd :\n Uri : https://xplatstoragext4633.blob.core.windows.net/xplatstoragecntext1789/cli1eaed78b36def353-os-1453419539945.vhd\nTags :\n None\n\n\n", "test_vm_list_ip_addresses": "[\n {\n \"virtualMachine\": {\n \"name\": \"vm-with-public-ip\",\n \"network\": {\n \"privateIpAddresses\": [\n \"10.0.0.4\"\n ],\n \"publicIpAddresses\": [\n {\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmListIpAddresses/providers/Microsoft.Network/publicIPAddresses/PublicIPvm-with-public-ip\",\n \"ipAddress\": \"13.93.155.206\",\n \"ipAllocationMethod\": \"Dynamic\",\n \"name\": \"PublicIPvm-with-public-ip\",\n \"resourceGroup\": \"cliTestRg_VmListIpAddresses\"\n }\n ]\n },\n \"resourceGroup\": \"cliTestRg_VmListIpAddresses\"\n }\n }\n]", + "test_vm_list_sizes": "[\n {\n \"maxDataDiskCount\": 1,\n \"memoryInMb\": 768,\n \"name\": \"Standard_A0\",\n \"numberOfCores\": 1,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 20480\n },\n {\n \"maxDataDiskCount\": 2,\n \"memoryInMb\": 1792,\n \"name\": \"Standard_A1\",\n \"numberOfCores\": 1,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 71680\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 3584,\n \"name\": \"Standard_A2\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 138240\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 7168,\n \"name\": \"Standard_A3\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 291840\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 14336,\n \"name\": \"Standard_A5\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 138240\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 14336,\n \"name\": \"Standard_A4\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 619520\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 28672,\n \"name\": \"Standard_A6\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 291840\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 57344,\n \"name\": \"Standard_A7\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 619520\n },\n {\n \"maxDataDiskCount\": 1,\n \"memoryInMb\": 768,\n \"name\": \"Basic_A0\",\n \"numberOfCores\": 1,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 20480\n },\n {\n \"maxDataDiskCount\": 2,\n \"memoryInMb\": 1792,\n \"name\": \"Basic_A1\",\n \"numberOfCores\": 1,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 40960\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 3584,\n \"name\": \"Basic_A2\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 61440\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 7168,\n \"name\": \"Basic_A3\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 122880\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 14336,\n \"name\": \"Basic_A4\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 245760\n },\n {\n \"maxDataDiskCount\": 2,\n \"memoryInMb\": 3584,\n \"name\": \"Standard_D1_v2\",\n \"numberOfCores\": 1,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 51200\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 7168,\n \"name\": \"Standard_D2_v2\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 102400\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 14336,\n \"name\": \"Standard_D3_v2\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 204800\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 28672,\n \"name\": \"Standard_D4_v2\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 409600\n },\n {\n \"maxDataDiskCount\": 32,\n \"memoryInMb\": 57344,\n \"name\": \"Standard_D5_v2\",\n \"numberOfCores\": 16,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 819200\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 14336,\n \"name\": \"Standard_D11_v2\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 102400\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 28672,\n \"name\": \"Standard_D12_v2\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 204800\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 57344,\n \"name\": \"Standard_D13_v2\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 409600\n },\n {\n \"maxDataDiskCount\": 32,\n \"memoryInMb\": 114688,\n \"name\": \"Standard_D14_v2\",\n \"numberOfCores\": 16,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 819200\n },\n {\n \"maxDataDiskCount\": 40,\n \"memoryInMb\": 143360,\n \"name\": \"Standard_D15_v2\",\n \"numberOfCores\": 20,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 286720\n }\n]", + "test_vm_show": "{\n \"availabilitySet\": null,\n \"diagnosticsProfile\": null,\n \"hardwareProfile\": {\n \"vmSize\": \"Standard_A2\"\n },\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmShow/providers/Microsoft.Compute/virtualMachines/vm-show\",\n \"instanceView\": {\n \"bootDiagnostics\": null,\n \"disks\": [\n {\n \"name\": \"osdiskvm-show\",\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Provisioning succeeded\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": \"2016-05-10T00:20:10.570837+00:00\"\n }\n ]\n }\n ],\n \"extensions\": null,\n \"platformFaultDomain\": null,\n \"platformUpdateDomain\": null,\n \"rdpThumbPrint\": null,\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Provisioning succeeded\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": \"2016-05-10T00:21:40.056358+00:00\"\n },\n {\n \"code\": \"PowerState/running\",\n \"displayStatus\": \"VM running\",\n \"level\": \"Info\",\n \"message\": null,\n \"time\": null\n }\n ],\n \"vmAgent\": {\n \"extensionHandlers\": [],\n \"statuses\": [\n {\n \"code\": \"ProvisioningState/succeeded\",\n \"displayStatus\": \"Ready\",\n \"level\": \"Info\",\n \"message\": \"GuestAgent is running and accepting new configurations.\",\n \"time\": \"2016-05-10T00:21:38+00:00\"\n }\n ],\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\"\n }\n },\n \"licenseType\": null,\n \"location\": \"westus\",\n \"name\": \"vm-show\",\n \"networkProfile\": {\n \"networkInterfaces\": [\n {\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmShow/providers/Microsoft.Network/networkInterfaces/VMNicvm-show\",\n \"primary\": null,\n \"resourceGroup\": \"cliTestRg_VmShow\"\n }\n ]\n },\n \"osProfile\": {\n \"adminPassword\": null,\n \"adminUsername\": \"ubuntu\",\n \"computerName\": \"vm-show\",\n \"customData\": null,\n \"linuxConfiguration\": {\n \"disablePasswordAuthentication\": false,\n \"ssh\": null\n },\n \"secrets\": [],\n \"windowsConfiguration\": null\n },\n \"plan\": null,\n \"provisioningState\": \"Succeeded\",\n \"resourceGroup\": \"cliTestRg_VmShow\",\n \"resources\": null,\n \"storageProfile\": {\n \"dataDisks\": [],\n \"imageReference\": {\n \"offer\": \"UbuntuServer\",\n \"publisher\": \"Canonical\",\n \"sku\": \"14.04.4-LTS\",\n \"version\": \"latest\"\n },\n \"osDisk\": {\n \"caching\": \"ReadWrite\",\n \"createOption\": \"fromImage\",\n \"diskSizeGb\": null,\n \"encryptionSettings\": null,\n \"image\": null,\n \"name\": \"osdiskvm-show\",\n \"osType\": \"Linux\",\n \"vhd\": {\n \"uri\": \"http://vhdstorageu47fs25lwwgcm.blob.core.windows.net/vhds/osdiskimage.vhd\"\n }\n }\n },\n \"tags\": {\n \"displayName\": \"VirtualMachine\"\n },\n \"type\": \"Microsoft.Compute/virtualMachines\"\n}", + "test_vm_size_list": "[\n {\n \"maxDataDiskCount\": 1,\n \"memoryInMb\": 768,\n \"name\": \"Standard_A0\",\n \"numberOfCores\": 1,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 20480\n },\n {\n \"maxDataDiskCount\": 2,\n \"memoryInMb\": 1792,\n \"name\": \"Standard_A1\",\n \"numberOfCores\": 1,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 71680\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 3584,\n \"name\": \"Standard_A2\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 138240\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 7168,\n \"name\": \"Standard_A3\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 291840\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 14336,\n \"name\": \"Standard_A5\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 138240\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 14336,\n \"name\": \"Standard_A4\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 619520\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 28672,\n \"name\": \"Standard_A6\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 291840\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 57344,\n \"name\": \"Standard_A7\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 619520\n },\n {\n \"maxDataDiskCount\": 1,\n \"memoryInMb\": 768,\n \"name\": \"Basic_A0\",\n \"numberOfCores\": 1,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 20480\n },\n {\n \"maxDataDiskCount\": 2,\n \"memoryInMb\": 1792,\n \"name\": \"Basic_A1\",\n \"numberOfCores\": 1,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 40960\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 3584,\n \"name\": \"Basic_A2\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 61440\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 7168,\n \"name\": \"Basic_A3\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 122880\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 14336,\n \"name\": \"Basic_A4\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 245760\n },\n {\n \"maxDataDiskCount\": 2,\n \"memoryInMb\": 3584,\n \"name\": \"Standard_D1_v2\",\n \"numberOfCores\": 1,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 51200\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 7168,\n \"name\": \"Standard_D2_v2\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 102400\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 14336,\n \"name\": \"Standard_D3_v2\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 204800\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 28672,\n \"name\": \"Standard_D4_v2\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 409600\n },\n {\n \"maxDataDiskCount\": 32,\n \"memoryInMb\": 57344,\n \"name\": \"Standard_D5_v2\",\n \"numberOfCores\": 16,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 819200\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 14336,\n \"name\": \"Standard_D11_v2\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 102400\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 28672,\n \"name\": \"Standard_D12_v2\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 204800\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 57344,\n \"name\": \"Standard_D13_v2\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 409600\n },\n {\n \"maxDataDiskCount\": 32,\n \"memoryInMb\": 114688,\n \"name\": \"Standard_D14_v2\",\n \"numberOfCores\": 16,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 819200\n },\n {\n \"maxDataDiskCount\": 40,\n \"memoryInMb\": 143360,\n \"name\": \"Standard_D15_v2\",\n \"numberOfCores\": 20,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 286720\n },\n {\n \"maxDataDiskCount\": 2,\n \"memoryInMb\": 3584,\n \"name\": \"Standard_DS1\",\n \"numberOfCores\": 1,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 7168\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 7168,\n \"name\": \"Standard_DS2\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 14336\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 14336,\n \"name\": \"Standard_DS3\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 28672\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 28672,\n \"name\": \"Standard_DS4\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 57344\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 14336,\n \"name\": \"Standard_DS11\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 28672\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 28672,\n \"name\": \"Standard_DS12\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 57344\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 57344,\n \"name\": \"Standard_DS13\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 114688\n },\n {\n \"maxDataDiskCount\": 32,\n \"memoryInMb\": 114688,\n \"name\": \"Standard_DS14\",\n \"numberOfCores\": 16,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 229376\n },\n {\n \"maxDataDiskCount\": 2,\n \"memoryInMb\": 3584,\n \"name\": \"Standard_D1\",\n \"numberOfCores\": 1,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 51200\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 7168,\n \"name\": \"Standard_D2\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 102400\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 14336,\n \"name\": \"Standard_D3\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 204800\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 28672,\n \"name\": \"Standard_D4\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 409600\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 14336,\n \"name\": \"Standard_D11\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 102400\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 28672,\n \"name\": \"Standard_D12\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 204800\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 57344,\n \"name\": \"Standard_D13\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 409600\n },\n {\n \"maxDataDiskCount\": 32,\n \"memoryInMb\": 114688,\n \"name\": \"Standard_D14\",\n \"numberOfCores\": 16,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 819200\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 28672,\n \"name\": \"Standard_G1\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 393216\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 57344,\n \"name\": \"Standard_G2\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 786432\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 114688,\n \"name\": \"Standard_G3\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 1572864\n },\n {\n \"maxDataDiskCount\": 32,\n \"memoryInMb\": 229376,\n \"name\": \"Standard_G4\",\n \"numberOfCores\": 16,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 3145728\n },\n {\n \"maxDataDiskCount\": 64,\n \"memoryInMb\": 458752,\n \"name\": \"Standard_G5\",\n \"numberOfCores\": 32,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 6291456\n },\n {\n \"maxDataDiskCount\": 4,\n \"memoryInMb\": 28672,\n \"name\": \"Standard_GS1\",\n \"numberOfCores\": 2,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 57344\n },\n {\n \"maxDataDiskCount\": 8,\n \"memoryInMb\": 57344,\n \"name\": \"Standard_GS2\",\n \"numberOfCores\": 4,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 114688\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 114688,\n \"name\": \"Standard_GS3\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 229376\n },\n {\n \"maxDataDiskCount\": 32,\n \"memoryInMb\": 229376,\n \"name\": \"Standard_GS4\",\n \"numberOfCores\": 16,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 458752\n },\n {\n \"maxDataDiskCount\": 64,\n \"memoryInMb\": 458752,\n \"name\": \"Standard_GS5\",\n \"numberOfCores\": 32,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 917504\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 57344,\n \"name\": \"Standard_A8\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 391168\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 114688,\n \"name\": \"Standard_A9\",\n \"numberOfCores\": 16,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 391168\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 57344,\n \"name\": \"Standard_A10\",\n \"numberOfCores\": 8,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 391168\n },\n {\n \"maxDataDiskCount\": 16,\n \"memoryInMb\": 114688,\n \"name\": \"Standard_A11\",\n \"numberOfCores\": 16,\n \"osDiskSizeInMb\": 1047552,\n \"resourceDiskSizeInMb\": 391168\n }\n]", "test_vm_usage_list_westus": "[\n {\n \"currentValue\": 0,\n \"limit\": 2000,\n \"name\": {\n \"localizedValue\": \"Availability Sets\",\n \"value\": \"availabilitySets\"\n },\n \"unit\": \"Count\"\n },\n {\n \"currentValue\": 7,\n \"limit\": 100,\n \"name\": {\n \"localizedValue\": \"Total Regional Cores\",\n \"value\": \"cores\"\n },\n \"unit\": \"Count\"\n },\n {\n \"currentValue\": 5,\n \"limit\": 10000,\n \"name\": {\n \"localizedValue\": \"Virtual Machines\",\n \"value\": \"virtualMachines\"\n },\n \"unit\": \"Count\"\n },\n {\n \"currentValue\": 0,\n \"limit\": 50,\n \"name\": {\n \"localizedValue\": \"Virtual Machine Scale Sets\",\n \"value\": \"virtualMachineScaleSets\"\n },\n \"unit\": \"Count\"\n },\n {\n \"currentValue\": 1,\n \"limit\": 100,\n \"name\": {\n \"localizedValue\": \"Standard D Family Cores\",\n \"value\": \"standardDFamily\"\n },\n \"unit\": \"Count\"\n },\n {\n \"currentValue\": 6,\n \"limit\": 100,\n \"name\": {\n \"localizedValue\": \"Standard A0-A7 Family Cores\",\n \"value\": \"standardA0_A7Family\"\n },\n \"unit\": \"Count\"\n }\n]\n" } \ No newline at end of file diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_create_state_modifications.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_create_state_modifications.yaml new file mode 100644 index 00000000000..dbec4ebe667 --- /dev/null +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_create_state_modifications.yaml @@ -0,0 +1,1226 @@ +interactions: +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmStateMod?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['112'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:41:05 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-failure-cause: [gateway] + status: {code: 404, message: Not Found} +- request: + body: !!binary | + eyJsb2NhdGlvbiI6ICJ3ZXN0dXMifQ== + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['22'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmStateMod?api-version=2015-11-01 + response: + body: {string: '{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod","name":"cliTestRg_VmStateMod","location":"westus","properties":{"provisioningState":"Succeeded"}}'} + headers: + Cache-Control: [no-cache] + Content-Length: ['193'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:41:05 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR5dZ + uc4/evS97/+S/wdC6kBEDAAAAA== + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['133'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:41:07 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: !!binary | + eyJwcm9wZXJ0aWVzIjogeyJwYXJhbWV0ZXJzIjogeyJ2aXJ0dWFsTmV0d29ya1R5cGUiOiB7InZh + bHVlIjogIm5ldyJ9LCAib3NPZmZlciI6IHsidmFsdWUiOiAiVWJ1bnR1U2VydmVyIn0sICJvc1B1 + Ymxpc2hlciI6IHsidmFsdWUiOiAiQ2Fub25pY2FsIn0sICJwdWJsaWNJcEFkZHJlc3NUeXBlIjog + eyJ2YWx1ZSI6ICJub25lIn0sICJwdWJsaWNJcEFkZHJlc3NBbGxvY2F0aW9uIjogeyJ2YWx1ZSI6 + ICJEeW5hbWljIn0sICJhZG1pblBhc3N3b3JkIjogeyJ2YWx1ZSI6ICJ0ZXN0UGFzc3dvcmQwIn0s + ICJvc1NLVSI6IHsidmFsdWUiOiAiMTQuMDQuNC1MVFMifSwgInN0b3JhZ2VSZWR1bmRhbmN5VHlw + ZSI6IHsidmFsdWUiOiAiU3RhbmRhcmRfTFJTIn0sICJvc0Rpc2tOYW1lIjogeyJ2YWx1ZSI6ICJv + c2Rpc2tpbWFnZSJ9LCAicHJpdmF0ZUlwQWRkcmVzc0FsbG9jYXRpb24iOiB7InZhbHVlIjogIkR5 + bmFtaWMifSwgIm5hbWUiOiB7InZhbHVlIjogInZtLXN0YXRlLW1vZCJ9LCAic3VibmV0SXBBZGRy + ZXNzUHJlZml4IjogeyJ2YWx1ZSI6ICIxMC4wLjAuMC8yNCJ9LCAiYXZhaWxhYmlsaXR5U2V0VHlw + ZSI6IHsidmFsdWUiOiAibm9uZSJ9LCAib3NWZXJzaW9uIjogeyJ2YWx1ZSI6ICJsYXRlc3QifSwg + InNpemUiOiB7InZhbHVlIjogIlN0YW5kYXJkX0EyIn0sICJfYXJ0aWZhY3RzTG9jYXRpb24iOiB7 + InZhbHVlIjogImh0dHBzOi8vYXp1cmVzZGtjaS5ibG9iLmNvcmUud2luZG93cy5uZXQvdGVtcGxh + dGVob3N0L0NyZWF0ZVZNIn0sICJzdG9yYWdlQ29udGFpbmVyTmFtZSI6IHsidmFsdWUiOiAidmhk + cyJ9LCAiYWRtaW5Vc2VybmFtZSI6IHsidmFsdWUiOiAidWJ1bnR1In0sICJvc1R5cGUiOiB7InZh + bHVlIjogIkN1c3RvbSJ9LCAidmlydHVhbE5ldHdvcmtJcEFkZHJlc3NQcmVmaXgiOiB7InZhbHVl + IjogIjEwLjAuMC4wLzE2In0sICJhdXRoZW50aWNhdGlvblR5cGUiOiB7InZhbHVlIjogInBhc3N3 + b3JkIn0sICJzdG9yYWdlQWNjb3VudFR5cGUiOiB7InZhbHVlIjogIm5ldyJ9LCAibG9jYXRpb24i + OiB7InZhbHVlIjogIndlc3R1cyJ9fSwgIm1vZGUiOiAiSW5jcmVtZW50YWwiLCAidGVtcGxhdGVM + aW5rIjogeyJ1cmkiOiAiaHR0cHM6Ly9henVyZXNka2NpLmJsb2IuY29yZS53aW5kb3dzLm5ldC90 + ZW1wbGF0ZWhvc3QvQ3JlYXRlVk0vYXp1cmVkZXBsb3kuanNvbiJ9fX0= + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['1181'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-state-mod?api-version=2015-11-01 + response: + body: {string: '{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-state-mod","name":"azurecli-test-deployment-vm-state-mod","properties":{"templateLink":{"uri":"https://azuresdkci.blob.core.windows.net/templatehost/CreateVM/azuredeploy.json","contentVersion":"1.0.0.0"},"parameters":{"_artifactsLocation":{"type":"String","value":"https://azuresdkci.blob.core.windows.net/templatehost/CreateVM"},"adminPassword":{"type":"SecureString"},"adminUsername":{"type":"String","value":"ubuntu"},"authenticationType":{"type":"String","value":"password"},"availabilitySetId":{"type":"String","value":""},"availabilitySetType":{"type":"String","value":"none"},"dnsNameForPublicIP":{"type":"String","value":""},"dnsNameType":{"type":"String","value":"none"},"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"vm-state-mod"},"osDiskName":{"type":"String","value":"osdiskimage"},"osDiskUri":{"type":"String","value":"http://vhdstoragekb5sp45f3g2h4.blob.core.windows.net/vhds/osdiskimage.vhd"},"osOffer":{"type":"String","value":"UbuntuServer"},"osPublisher":{"type":"String","value":"Canonical"},"osSKU":{"type":"String","value":"14.04.4-LTS"},"osType":{"type":"String","value":"Custom"},"osVersion":{"type":"String","value":"latest"},"privateIpAddressAllocation":{"type":"String","value":"Dynamic"},"publicIpAddressAllocation":{"type":"String","value":"Dynamic"},"publicIpAddressName":{"type":"String","value":"PublicIPvm-state-mod"},"publicIpAddressType":{"type":"String","value":"none"},"size":{"type":"String","value":"Standard_A2"},"sshDestKeyPath":{"type":"String","value":"/home/ubuntu/.ssh/authorized_keys"},"sshKeyValue":{"type":"String","value":""},"storageAccountName":{"type":"String","value":"vhdstoragekb5sp45f3g2h4"},"storageAccountType":{"type":"String","value":"new"},"storageContainerName":{"type":"String","value":"vhds"},"storageRedundancyType":{"type":"String","value":"Standard_LRS"},"subnetIpAddressPrefix":{"type":"String","value":"10.0.0.0/24"},"subnetName":{"type":"String","value":"Subnetvm-state-mod"},"virtualNetworkIpAddressPrefix":{"type":"String","value":"10.0.0.0/16"},"virtualNetworkName":{"type":"String","value":"VNETvm-state-mod"},"virtualNetworkType":{"type":"String","value":"new"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2016-05-09T16:41:08.0299265Z","duration":"PT0.1648485S","correlationId":"88bf6b81-0ba5-4220-85ef-b50bc3e92caa","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/VNetvm-state-mod","resourceType":"Microsoft.Resources/deployments","resourceName":"VNetvm-state-mod"}],"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/NicIpvm-state-mod","resourceType":"Microsoft.Resources/deployments","resourceName":"NicIpvm-state-mod"},{"dependsOn":[{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/vhdstoragekb5sp45f3g2h4vm-state-mod","resourceType":"Microsoft.Resources/deployments","resourceName":"vhdstoragekb5sp45f3g2h4vm-state-mod"},{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/NicIpvm-state-mod","resourceType":"Microsoft.Resources/deployments","resourceName":"NicIpvm-state-mod"}],"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/VMvm-state-mod","resourceType":"Microsoft.Resources/deployments","resourceName":"VMvm-state-mod"}]}}'} + headers: + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-state-mod/operationStatuses/08587387948176126801?api-version=2015-11-01'] + Cache-Control: [no-cache] + Content-Length: ['3908'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:41:07 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-state-mod/operationStatuses/08587387948176126801?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:41:38 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-state-mod/operationStatuses/08587387948176126801?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:42:08 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-state-mod/operationStatuses/08587387948176126801?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:42:39 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-state-mod/operationStatuses/08587387948176126801?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:43:08 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-state-mod/operationStatuses/08587387948176126801?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:43:39 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-state-mod/operationStatuses/08587387948176126801?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvV5Pp3k+y2cf/ZL/ByCIe+QWAAAA + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['141'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:44:10 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmStateMod/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-state-mod?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR8Xs + o0cf3W3Wk2ZaF6u2qJbN3Z3J7vmn+w92t3cn5zvb+7NZtp3l03vb08nDvQd75zsP7z/cuVvnTbWu + p/nndbVeNXenZfEmb9pXF7//Ty5et1mbf1HN7q7q6rKY5XVz94tiWldNdd6OX+l7zd1Zviqr60W+ + bJu72Q/WdU4wtlsCsu2+2b5cbDcAt72oZh+NPlpmi5wQvm1zQmCV122RNx89+sUftfliVdKXz4vl + W/y9rguCNW/bVfPorqDQzN5Oi/GkrCbjaVXn46tiOauumvEyb++a1+dV0949qXP69Se/kNcEg/FP + N9WSep1Wy5aQ+UkaONGTutgd7+C/j34JYZTVNISWvgIGv39GyJ1n07Z5Xk0zUB+fttcrDPJ1WxfL + C4J3mZVrfPBhmKL3bLYoli+zprmqapp411U+JZDaoWn3VZPXQm/XTlo4lNaT9bJd8yvrdk6DLmQY + b7j98HsrgwPevMyKMpsUZdFev87bswCx7ouRF27qa1ktc7w2WzYvskX+rKpfridlMT17uekt743b + dlDeYg6viGHXDVrfRNqAlal91TwtmrfAZ9NbVTOjVsUiu2CU5KWvwOjD74CviK0u57OmrWp68+3k + frPav39+72Jvvj/AY2h91+ttTB9Ij1+en+f1pv6+YqZ5ndeX1I5f4Qlp5vTnhtdOMiI08Vcp77z+ + vb7a1Hp3f7yzP97ffv7mtbS/aRZP1jT6hbS1ojvcHPLVtGi+qotL+uNsdTybkVw2x+VtGOHpNTFA + MWUAGP30G3v/JhZhYhP3dxmsA+YmetFkMIs1xQ/oz+F2ZA2Ws6ye/f7He9y8mT8lwv1e+fXLrJ1v + evHuvFrkd0XD3B3Te3ehY6qa+pv9/m/za5Yi+phA/aS8MgyLmwpzH0+nFYG8iUrEzvpCIA19QDfS + Kb/yXjoh25AVy7y+Tf/ee6/y2ZrIuJxe39SfpffzV8z5ZNtJXu20vqzz8+LdJgC7ZKrw3909GS2/ + fxO6r7lVl6Uui7pdZ+WLvCVl//br4LD7aR/OTbj85IvTN5sxuYmGPGf0Fr2MP8+W0zqHf0G6h+QE + Xg3UA71DxG7R4vV6Os3JDYDT0RYLYvBssaLP93Z2P93eub+98/DN7qeP9u892t8Zf3p/7+HDez9F + LWfrWuX8o5dv9r64tzd+cPDg4e791/QdKdw6JyVDX8MifnRwMDn/dHKwu70zye5v7+/t7Wwf3M/P + tyf3dybTe/nDvWmW0WuMHFyujx597xezjWlW2RQoRlwwak/Twb+DIvKO/wm9Jq4NBo/mRjOh6XJd + lt//JfQfDSRf5ctZvpyyp0VA5IPmSxoa/fX/EifzJ2n2A74Ih0843gDBe0F4kFitAxLU+H/JcF9A + mQfIOfS/7nj7MH/J6P+lsw0FKrozUOAB8m58X5cgt+kFJPp/CVH68+dG9HVJ0If5/yIh+MkvAswc + 8l93tB2AGGq1bldravvoF5PJkD8sMCcRrqeTakFN8rtqk77IpnPyCIhjA8CGadx7pGtgvO6SocXP + M4oyawoe6c2f/IIm4bava7f6J73cN5e9d18Lj99VXlfXh1COsz+R5Zf8kv8HLLAPJF0QAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['1307'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:44:10 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UeXWbnOP3qUfg9/pSl/iOejVV2t8rot8oa+tR/TF5eLsxl99NE0e3hwfm93sj2bPNzd3j+Y3t+e + PNjLts/znQeT6b1PP81ms49G3ovzrJ5dZXX+sq7OixKdemDp+8vF6+IH+Pij1222nFHr3/947yPX + 5Jf4wJq2qrOLQVjFgr58lZ/ndb6c9r6mBqv1pCyaeV7Tdx+dZMtqWUyz0scXz0fVOYFAk68m62W7 + fp3Xl/R3t1Xzdo02u/vjnf3x/vbzN697Tei1pqiWaFZmbd603sDCoVHjqnlaNG+pbRfrqnlzvcJw + PnpeLNfver0sswV/WzUzAnC52G5a6mx7UQUzgeejaZ3TV1+uWsXqWV0tzkC1XsvLOea7gwp9vq4L + +vyjeduuHt29S610Tt5O7jer/fvn9y725vvjSVlNxtOqzsdXxXJWXTXjZd5y67uCJU/VmD4IKNKl + CfU3zabzYnmBPl/l2ey7ddHmwTvhGx/NsjYDHcHA3/u++8pvRpQaYqFptVit27x+oTQdpuZH2WxR + LL9q8trQf83c0mlVYspOquV5cbGuM6V70Cc1IopkkzJ/mTXNVVXPjtftPF+2xJva/jwrm9x/xx8N + vd/kNLHtxiET/Qn0W2/c5qOzJY33PJtC5r/3iz8qaN4/utusJ820LphRmrs7k93zT/cf7G7vTs53 + tvdns2w7y6f3tqeTh3sP9s53Ht5/uHO3zptqXU/zz+tqvWruTsviDXH8q4vf/ycXJNpt/kU1u0v6 + 5bKYkVTc/aKY1lVTnbfjF4LG3R46d3/yixfFNJiBX/L9YFAMDhJGHMJ90Lg+er2eTvN8ljvWcu/w + 6NIf6vBOhKPuXhZ1u87KL5ifaXDBuByChpkGvm5VE9wI33unrCwjfXRFOK/9L9vsgubd50hw46rM + ro0I/GQA2BFVfuEfxHS/5P8BKP9Ew1oGAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:44:11 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod?api-version=2015-06-15&$expand=instanceView + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UerulrldVvkzUePUv6IPrxcnM3oz4+m2cOD83u7k+3Z5OHu9v7B9P725MFetn2e7zyYTO99+mk2 + m3000pfmWT27yur8ZV2dF2VO7ys4+u5y8br4AT766HWbLWfU8vc/3vtIvv4lBkDTVnV2EX2/WNAX + r/LzvM6X0+Ar+nK1npRFM89r+vyjk2xZLYtpVhq88HxUndOr+PqryXrZrl/n9SX97bdo3q7x/e7+ + eGd/vL/9/M3r4Gtq3hTVEk3KrM2bVpF36FOjqnlaNG+pjY9d1by5XgHlj54Xy/W7AOoyW/A3VTOj + Fy8X201LwLcXlaUqno+mdU4ff7lqFYNndbU4A0WCVpdzzJnXNX22rgv67KN5264e3b1LLZTGbyf3 + m9X+/fN7F3vz/fGkrCbjaVXn46tiOauumvEyb7n1XcGMyT+mD+yo/XFTP9NsOi+WF+jrVZ7NvlsX + bW7bupYfzbI2A43AbN/7vnxsviYqxKZ+Wi1W6zavXyit4lT6KJstiuVXTV4bmq55pr0WJch/Ui3P + i4t1nSktbT/UgEaaTcr8ZdY0V1U9O16383zZEi9p2/OsbHLT3mBN7zU5TVAbHRLRkUC99cZlPjpb + 0pjOsynk7nu/+KOC5u6ju8160kzrgie6ubsz2T3/dP/B7vbu5Hxne382y7azfHpvezp5uPdg73zn + 4f2HO3frvKnW9TT/vK7Wq+butCzeEHe+uvj9f3JBotbmX1SzuyTjl8WMOPjuF8W0rprqvB2/EDTu + 9tC5+5NfvCimAZV/yfftgBgUJIFmm+HTmD56vZ5O83yW2/n4qFjS2ySpP1nkV9TCUplm7/iCiOp/ + 5j79SUKRQNOXH333mKWFP97eG++Md/cNcDykK7J23YB46ffcx6kPFQ9xz4xRpBkI8b7bdJE2z0dl + fpmXeOlseV71viUuWZXZNYCs0f1HYPjrXrNF3jQkNGjw+ZpmhEeSFk1ar5dAIiU1mGaEAk02/bXM + r9Kpz5vNuAeyLYSz93Z2P93eub+98/DN7qeP9u892r//yc7Oo50dK3F4fon74/sepI/yd22+BCW+ + TRiURHECafiW3rJNMVCRU/NJh7q31F7UEJ/HJqsDEM/XmTB6a+OU0feEYDhpPvh0E+QBou8+ur8/ + frC/e3/34GGE+ERI/09LXu9zNykD9Alo8/502USTr0ePIVrce7T36Xjv4ODTnb2DHi0cQw2OqLrK + a2CS31XZ6HT7XgP5yS+MhPlImF91IvhvwYw1b/pDVb0nYtHuXhZ1u87KL9h2kuLtS5AVschXrXoV + N8LV9mVlDdlHV4QnkUu+aLMLUE4nx1DUmNufDIAxTYl6v+T/ASxTg7M9CgAA + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:44:10 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod/powerOff?api-version=2015-06-15 + response: + body: {string: ''} + headers: + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Compute/locations/westus/operations/ec2b4cc0-378b-4f08-8a9e-1b2dc92d7612?api-version=2015-06-15'] + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 16:44:10 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Compute/locations/westus/operations/ec2b4cc0-378b-4f08-8a9e-1b2dc92d7612?monitor=true&api-version=2015-06-15'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ec2b4cc0-378b-4f08-8a9e-1b2dc92d7612?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UfVKq+ztqiWZ7OPHqUf5dO9yf50urN978HBZHv/fOdg+yB7mG/vTvZm04d7swef7u59NOI3mzar + 2zfFIsd7ezu7n27v3N/eefhm99NH+/uPdnfHDz/d2T94+MnOzqOdHX0nX84G39j7dLz3YO/hw53d + 4BXqpl03eOP1ejrN81k+++g3Tn7J/wN9mKsMvgAAAA== + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:44:41 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod?api-version=2015-06-15&$expand=instanceView + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UerulrldVvkzUePUv6IPrxcnM3oz4+m2cOD83u7k+3Z5OHu9v7B9P725MFetn2e7zyYTO99+mk2 + m3000pfmWT27yur8ZV2dF2VO7ys4+u5y8br4AT766HWbLWfU8vc/3vtIvv4lBkDTVnV2EX2/WNAX + r/LzvM6X0+Ar+nK1npRFM89r+vyjk2xZLYtpVhq88HxUndOr+PqryXrZrl/n9SX97bdo3q7x/e7+ + eGd/vL/9/M3r4Gtq3hTVEk3KrM2bVpF36FOjqnlaNG+pjY9d1by5XgHlj54Xy/W7AOoyW/A3VTOj + Fy8X201LwLcXlaUqno+mdU4ff7lqFYNndbU4A0WCVpdzzJnXNX22rgv67KN5264e3b1LLZTGbyf3 + m9X+/fN7F3vz/fGkrCbjaVXn46tiOauumvEyb7n1XcGMyT+mD+yo/XFTP9NsOi+WF+jrVZ7NvlsX + bW7bupYfzbI2A43AbN/7vnxsviYqxKZ+Wi1W6zavXyit4lT6KJstiuVXTV4bmq55pr0WJch/Ui3P + i4t1nSktbT/UgEaaTcr8ZdY0V1U9O16383zZEi9p2/OsbHLT3mBN7zU5TVAbHRLRkUC99cZlPjpb + 0pjOsynk7nu/+KOC5u6ju8160kzrgie6ubsz2T3/dP/B7vbu5Hxne382y7azfHpvezp5uPdg73zn + 4f2HO3frvKnW9TT/vK7Wq+butCzeEHe+uvj9f3JBotbmX1SzuyTjl8WMOPjuF8W0rprqvB2/EDTu + 9tC5+5NfvCimAZV/yfftgBgUJIFmm+HTmD56vZ5O83yW2/n4qFjS2ySpP1nkV9TCUplm7/iCiOp/ + 5j79SUKRQNOXH333mKWFP97eG++Md/cNcDykK7J23YB46ffcx6kPFQ9xz4xRpBkI8b7bdJE2z0dl + fpmXeOlseV71viUuWZXZNYCs0f1HYPjrXrNF3jQkNGjw+ZpmhEeSFk1ar5dAIiU1mGaEAk02/bXM + r9Kpz5vNuAeyLYSz93Z2P93eub+98/DN7qeP9vcf7e5+srPzaGfHShyeX+L++L4H6aP8XZsvQYlv + EwYlUZxAGr6lt2xTDFTk1HzSoe4ttRc1xOexyeoAxPN1Joze2jhl9D0hGE6aDz7dBHmA6LuP7u+P + H+zv3t89eBghPhHS/9OS1/vcTcoAfQLavD9dNtHk69FjiBb7j/Y+He/t7uzf2/m0RwvHUIMjqq7y + GpjQUNpqtep1+14D+ckvUgPFNXREl1/4b8GMNW/6Q1W9J2LR7l4WdbvOyi/YdpLi7UuQFbHIV616 + FTfC1fZlZQ3ZR1eEJ5FLvmizC1BOJ8dQ1JjbnwyAMU2Jer/k/wEtvalHPQoAAA== + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:44:42 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod/start?api-version=2015-06-15 + response: + body: {string: ''} + headers: + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Compute/locations/westus/operations/f5c3e9c8-2f83-4d61-82ff-26dc9f5d79d2?api-version=2015-06-15'] + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 16:44:42 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Compute/locations/westus/operations/f5c3e9c8-2f83-4d61-82ff-26dc9f5d79d2?monitor=true&api-version=2015-06-15'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f5c3e9c8-2f83-4d61-82ff-26dc9f5d79d2?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UfVKq+ztqiWZ7OPHqUfnd+f3ssfTg+2984P7m3vzz7d3T7YOz/f3vt0Nn14fn/24OFs76MRv9m0 + Wd2+KRY53tvb2f10e+f+9s7DN7ufPtrff7R/b3zv3v39g52DT3Z2Hu3s6Ev5cjbwyv1HO/vjB/cf + 3Htw717wCvXTrhu88Xo9neb5LJ999Bsnv+T/AYdarzi/AAAA + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:45:12 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod?api-version=2015-06-15&$expand=instanceView + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UerulrldVvkzUePUv6IPrxcnM3oz4+m2cOD83u7k+3Z5OHu9v7B9P725MFetn2e7zyYTO99+mk2 + m3000pfmWT27yur8ZV2dF2VO7ys4+u5y8br4AT766HWbLWfU8vc/3vtIvv4lBkDTVnV2EX2/WNAX + r/LzvM6X0+Ar+nK1npRFM89r+vyjk2xZLYtpVhq88HxUndOr+PqryXrZrl/n9SX97bdo3q7x/e7+ + eGd/vL/9/M3r4Gtq3hTVEk3KrM2bVpF36FOjqnlaNG+pjY9d1by5XgHlj54Xy/W7AOoyW/A3VTOj + Fy8X201LwLcXlaUqno+mdU4ff7lqFYNndbU4A0WCVpdzzJnXNX22rgv67KN5264e3b1LLZTGbyf3 + m9X+/fN7F3vz/fGkrCbjaVXn46tiOauumvEyb7n1XcGMyT+mD+yo/XFTP9NsOi+WF+jrVZ7NvlsX + bW7bupYfzbI2A43AbN/7vnxsviYqxKZ+Wi1W6zavXyit4lT6KJstiuVXTV4bmq55pr0WJch/Ui3P + i4t1nSktbT/UgEaaTcr8ZdY0V1U9O16383zZEi9p2/OsbHLT3mBN7zU5TVAbHRLRkUC99cZlPjpb + 0pjOsynk7nu/+KOC5u6ju8160kzrgie6ubsz2T3/dP/B7vbu5Hxne382y7azfHpvezp5uPdg73zn + 4f2HO3frvKnW9TT/vK7Wq+butCzeEHe+uvj9f3JBotbmX1SzuyTjl8WMOPjuF8W0rprqvB2/EDTu + 9tC5+5NfvCimAZV/yfftgBgUJIFmm+HTmD56vZ5O83yW2/n4qFjS2ySpP1nkV9TCUplm7/iCiOp/ + 5j79SUKRQNOXH333mKWFP97eG++Md/cNcDykK7J23YB46ffcx6kPFQ9xz4xRpBkI8b7bdJE2z0dl + fpmXeOlseV71viUuWZXZNYCs0f1HYPjrXrNF3jQkNGjw+ZpmhEeSFk1ar5dAIiU1mGaEAk02/bXM + r9Kpz5vNuAeyLYSz93Z2P93eub+98/DN7qeP9vcf7e5+srPzaGfHShyeX+L++L4H6aP8XZsvQYlv + EwYlUZxAGr6lt2xTDFTk1HzSoe4ttRc1xOexyeoAxPN1Joze2jhl9D0hGE6aDz7dBHmA6LuP7u+P + H+zv3t89eBghPhHS/9OS1/vcTcoAfQLavD9dNtHk69FjiBb3H5HJfLC7s38vwoiOoQZHVF3lNTDJ + 76psdLp9r4H85BdGwnwkzK86Efy3YMaaN/2hqt4TsWh3L4u6XWflF2w7SfH2JciKWOSrVr2KG+Fq + +7KyhuyjK8KTyCVftNkFKKeTYyhqzO1PBsCYpkS9X/L/AI4i38o9CgAA + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:45:13 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod/restart?api-version=2015-06-15 + response: + body: {string: ''} + headers: + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Compute/locations/westus/operations/9cefb57e-7bd8-4894-946b-5017753c4c63?api-version=2015-06-15'] + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 16:45:14 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Compute/locations/westus/operations/9cefb57e-7bd8-4894-946b-5017753c4c63?monitor=true&api-version=2015-06-15'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9cefb57e-7bd8-4894-946b-5017753c4c63?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UfVKq+ztqiWZ7OPHqUfPZzm55P7D/LtB5PZwfb+wcP97Yf7n0627+/sPnhw/950f/rpvY9G/GbT + ZnX7pljkeG9vZ/fT7Z372zsP3+x++mj//qPd/fHBp58+uPdg/5OdnUc7O/pSvpwNv3J/vPtw/+De + g3vBK9RPu27wxuv1dJrns3z20W+c/JL/B7kNcxW/AAAA + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:45:44 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod?api-version=2015-06-15&$expand=instanceView + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UerulrldVvkzUePUv6IPrxcnM3oz4+m2cOD83u7k+3Z5OHu9v7B9P725MFetn2e7zyYTO99+mk2 + m3000pfmWT27yur8ZV2dF2VO7ys4+u5y8br4AT766HWbLWfU8vc/3vtIvv4lBkDTVnV2EX2/WNAX + r/LzvM6X0+Ar+nK1npRFM89r+vyjk2xZLYtpVhq88HxUndOr+PqryXrZrl/n9SX97bdo3q7x/e7+ + eGd/vL/9/M3r4Gtq3hTVEk3KrM2bVpF36FOjqnlaNG+pjY9d1by5XgHlj54Xy/W7AOoyW/A3VTOj + Fy8X201LwLcXlaUqno+mdU4ff7lqFYNndbU4A0WCVpdzzJnXNX22rgv67KN5264e3b1LLZTGbyf3 + m9X+/fN7F3vz/fGkrCbjaVXn46tiOauumvEyb7n1XcGMyT+mD+yo/XFTP9NsOi+WF+jrVZ7NvlsX + bW7bupYfzbI2A43AbN/7vnxsviYqxKZ+Wi1W6zavXyit4lT6KJstiuVXTV4bmq55pr0WJch/Ui3P + i4t1nSktbT/UgEaaTcr8ZdY0V1U9O16383zZEi9p2/OsbHLT3mBN7zU5TVAbHRLRkUC99cZlPjpb + 0pjOsynk7nu/+KOC5u6ju8160kzrgie6ubsz2T3/dP/B7vbu5Hxne382y7azfHpvezp5uPdg73zn + 4f2HO3frvKnW9TT/vK7Wq+butCzeEHe+uvj9f3JBotbmX1SzuyTjl8WMOPjuF8W0rprqvB2/EDTu + 9tC5+5NfvCimAZV/yfftgBgUJIFmm+HTmD56vZ5O83yW2/n4qFjS2ySpP1nkV9TCUplm7/iCiOp/ + 5j79SUKRQNOXH333mKWFP97eG++Md/cNcDykK7J23YB46ffcx6kPFQ9xz4xRpBkI8b7bdJE2z0dl + fpmXeOlseV71viUuWZXZNYCs0f1HYPjrXrNF3jQkNGjw+ZpmhEeSFk1ar5dAIiU1mGaEAk02/bXM + r9Kpz5vNuAeyLYSz93Z2P93eub+98/DN7qeP9vcf7e5+srPzaGfHShyeX+L++L4H6aP8XZsvQYlv + EwYlUZxAGr6lt2xTDFTk1HzSoe4ttRc1xOexyeoAxPN1Joze2jhl9D0hGE6aDz7dBHmA6LuP7u+P + H+zv3t89eBghPhHS/9OS1/vcTcoAfQLavD9dNtHk69FjiBb3H+3eJ/l88PDhXo8Ujp8GB1Rd5TUQ + ye+qaHR6fa9x/OQXRsB8JMyvOg/8t2DGijf9oWreEzFody+Lul1n5RdsOknv9gXISljkq1adihvh + avuysnbsoyvCk8glX7TZBSink2MoaqztTwbAmKZEvV/y/wAgxooaPAoAAA== + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:45:45 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod/deallocate?api-version=2015-06-15 + response: + body: {string: ''} + headers: + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Compute/locations/westus/operations/ff8b6dc8-5a44-4d41-ab4b-cab3576cbfd4?api-version=2015-06-15'] + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 16:45:45 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Compute/locations/westus/operations/ff8b6dc8-5a44-4d41-ab4b-cab3576cbfd4?monitor=true&api-version=2015-06-15'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ff8b6dc8-5a44-4d41-ab4b-cab3576cbfd4?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UfVKq+ztqiWZ7OPHqUfnZ8fTD6dTQ+272f7+9v7s/3d7WyyP9meZpN79x98Op2cz/Y/GvGbTZvV + 7ZtikeO9vZ3dT7d37m/vPHyz++mj/fuP9j8d791/cO/TBw8+2dl5tLPjXmrXDd44W76sq4s6b5qP + fuPkl/w/KP5y4Y0AAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:46:15 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ff8b6dc8-5a44-4d41-ab4b-cab3576cbfd4?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UfVKq+ztqiWZ7OPHqUfnZ8fTD6dTQ+272f7+9v7s/3d7WyyP9meZpN79x98Op2cz/Y/GvGbTZvV + 7ZtikeO9vZ3dT7d37m/vPHyz++mj/fuP9j8d791/cO/TBw8+2dl5tLPjXmrXDd44W76sq4s6b5qP + fuPkl/w/KP5y4Y0AAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:46:46 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ff8b6dc8-5a44-4d41-ab4b-cab3576cbfd4?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UfVKq+ztqiWZ7OPHqUfnZ8fTD6dTQ+272f7+9v7s/3d7WyyP9meZpN79x98Op2cz/Y/GvGbTZvV + 7ZtikeO9vZ3dT7d37m/vPHyz++mj/fuP9j8d791/cO/TBw8+2dl5tLPjXmrXDd44W76sq4s6b5qP + fuPkl/w/KP5y4Y0AAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:47:15 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ff8b6dc8-5a44-4d41-ab4b-cab3576cbfd4?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UfVKq+ztqiWZ7OPHqUfnZ8fTD6dTQ+272f7+9v7s/3d7WyyP9meZpN79x98Op2cz/Y/GvGbTZvV + 7ZtikeO9vZ3dT7d37m/vPHyz++mj/fuP9j8d791/cO/TBw8+2dl5tLOjL+XL2cArDx7dOxjf33lw + 7+D+p8Er1E+7bvDG6/V0muezfPbRb5z8kv8Ho0pykr8AAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:47:46 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod?api-version=2015-06-15&$expand=instanceView + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UerulrldVvkzUePUv6IPrxcnM3oz4+m2cOD83u7k+3Z5OHu9v7B9P725MFetn2e7zyYTO99+mk2 + m3000pfmWT27yur8ZV2dF2VO7ys4+u5y8br4AT766HWbLWfU8vc/3vtIvv4lBkDTVnV2EX2/WNAX + r/LzvM6X0+Ar+nK1npRFM89r+vyjk2xZLYtpVhq88HxUndOr+PqryXrZrl/n9SX97bdo3q7x/e7+ + eGd/vL/9/M3r4Gtq3hTVEk3KrM2bVpF36FOjqnlaNG+pjY9d1by5XgHlj54Xy/W7AOoyW/A3VTOj + Fy8X201LwLcXlaUqno+mdU4ff7lqFYNndbU4A0WCVpdzzJnXNX22rgv67KN5264e3b1LLZTGbyf3 + m9X+/fN7F3vz/fGkrCbjaVXn46tiOauumvEyb7n1XcGMyT+mD+yo/XFTP9NsOi+WF+jrVZ7NvlsX + bW7bupYfzbI2A43AbN/7vnxsviYqxKZ+Wi1W6zavXyit4lT6KJstiuVXTV4bmq55pr0WJch/Ui3P + i4t1nSktbT/UgEaaTcr8ZdY0V1U9O16383zZEi9p2/OsbHLT3mBN7zU5TVAbHRLRkUC99cZlPjpb + 0pjOsynk7nu/+KOC5u6ju8160kzrgie6ubsz2T3/dP/B7vbu5Hxne382y7azfHpvezp5uPdg73zn + 4f2HO3frvKnW9TT/vK7Wq+butCzeEHe+uvj9f3JBotbmX1SzuyTjl8WMOPjuF8W0rprqvB2/EDTu + 9tC5+5NfvCimAZV/yfftgBgUJIFmm+HTmD56vZ5O83yW2/n4qFjS2ySpP1nkV9TCUplm7/iCiOp/ + 5j79SUKRQNOXH333mKWFP97eG++Md/cNcDykK7J23YB46ffcx6kPFQ9xz4xRpBkI8b7bdJE2z0dl + fpmXeOlseV71viUuWZXZNYCs0f1HYPjrXrNF3jQkNGjw+ZpmhEeSFk1ar5dAIiU1mGaEAk02/bXM + r9Kpz5vNuAeyLYSz93Z2P93eub+98/DN7qeP9vcf7e5+srPzaGfHShyeX+L++L4H6aP8XZsvQYlv + EwYlUZxAGr6lt2xTDFTk1HzSoe4ttRc1xOexyeoAxPN1Joze2jhl9D0hGE6aDz7dBHmA6A8e3TsY + 3zvY2//00xjxiZD+n5a83uduUgboE9Dm/emyiSZfjx4babG/v3/wYK9HCsdPgwOqrvIaiOR3Z3lW + lhXp217P7zWWn/wi9SG5xo728gv/LRiyAk5/qBr4RAzb3cuibtdZ+QWbUNK/fUGykhb5qlXn4ka4 + 2p6pQoPDO1eEJ5FMvmizC1BPJ8lQ1VjdnwyAMU2Jer/k/wFej/zRRAoAAA== + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:47:47 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines/vm-state-mod?api-version=2015-06-15 + response: + body: {string: ''} + headers: + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Compute/locations/westus/operations/34dd8cf7-4d74-4fb8-a8e0-0b80675b92d7?api-version=2015-06-15'] + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 16:47:47 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Compute/locations/westus/operations/34dd8cf7-4d74-4fb8-a8e0-0b80675b92d7?monitor=true&api-version=2015-06-15'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/34dd8cf7-4d74-4fb8-a8e0-0b80675b92d7?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UfVKq+ztqiWZ7OPHqUf3dufzQ6m5w+292cP9rf3zycH29lBvrO9MznY+fTB/cnDvdmDj0b8ZtNm + dfumWOR4b29n99PtnfvbOw/f7H76aP/Bo/2D8b2Dvf3dh5/s7Dza2dF38uVs8I37D8f3dx7c2999 + ELxC3bTrBm+8Xk+neT7LZx/9xskv+X8ApfPcWr4AAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:48:17 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmStateMod/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR5dZ + uc4/evS97/+S/wdC6kBEDAAAAA== + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['133'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 16:48:19 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmStateMod?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 16:48:19 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 16:48:34 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 16:48:50 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 16:49:05 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 16:49:20 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 16:49:35 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 16:49:51 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNUQVRFTU9ELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 16:50:06 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_generalize.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_generalize.yaml new file mode 100644 index 00000000000..91b5fdb7c85 --- /dev/null +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_generalize.yaml @@ -0,0 +1,1103 @@ +interactions: +- request: + body: !!binary | + cmVzb3VyY2U9aHR0cHMlM0ElMkYlMkZtYW5hZ2VtZW50LmNvcmUud2luZG93cy5uZXQlMkYmY2xp + ZW50X2lkPTA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiZncmFudF90eXBlPXJl + ZnJlc2hfdG9rZW4mcmVmcmVzaF90b2tlbj1BQUFCQUFBQWlMOUtuMloyN1V1YnZXRlBibTBnTGJO + Q05ZSEJkWVVzY24xRVl1M3Ztb1RwVWhfVG9rQ3RZaGJtckpnVmRRVVZidmdWNU5qWkdCbjdQUXhN + ZkRwVW1YRUYxTVR6ODIyRWlsZFNDb1F3RG5qREVfaU0ySnhla1pmUF84OGRlTFBndUp3eE8tVWI2 + MmM5OVVkRVZJZEU1b3QxVVY4bzBkOWRIUmhOX25JREdrR3pucnBRaHR0eUlJVzVXVl9YdzB5OWFX + VHoxcWVycUNfZVFZRHhmamJzekRLSjlweElDYXZHOWxLOC04QkRCeTdGMndqNWVQTUVlV1pGeUFS + WDFVbXFWVkxlYnBUVnoxU1hEaHRUUDNfTnhVckRUUjR4d3N4TXFKQjJVb05aeklSUEE5T0pTS0Q0 + MThTQmw5SlV3aDJDOGlMd0tocjNUbnRlcnNJNzJYczdYMjVXQWpFQmRHRmZidndYa25GTkxJMU1G + bHBubC01dHNQZC1KTjd2VWNSa3g3ZktTZjM0SFZyUHoxOExGcXB3eWdvSUhIZGdKLUxyazMtTFJD + T2xIdEc4YVFySU1tTWFKSEhZOHVOTGdGMDl6Q3ZsaExKa0hCeWI2ZDdIbEF3QXRJN2JESUJVV0Yw + NVhoX216ZEpTRWVvSXZMY1lNWHUzUDZXazBfM0hTSk9PSUtjYUxtLVA4NEgyZ2k2T20yRFZ0c3ZH + VUh0ZmoyME9Gc2JGSnFFQ1NBRE0xZGpzcFRKMkNzbkg4T3pmMmw2Zk5QU2duZWpsenEtalBPaDFi + VG83cTk5eTJIQUpyZ2x2WDVRQzZkNWZTOXZReEduVlZId3NmTTV4VDczbk1kY2FlNkg1Snk4WGxi + X0ZpN05IZUlCVVFTQUE= + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['812'] + User-Agent: [python-requests/2.9.1] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [darwin] + x-client-SKU: [Python] + x-client-Ver: [0.2.0] + method: POST + uri: https://login.microsoftonline.com/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/oauth2/token?api-version=1.0 + response: + body: {string: '{"token_type":"Bearer","scope":"user_impersonation","expires_in":"3599","expires_on":"1462781623","not_before":"1462777723","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ik1uQ19WWmNBVGZNNXBPWWlKSE1iYTlnb0VLWSIsImtpZCI6Ik1uQ19WWmNBVGZNNXBPWWlKSE1iYTlnb0VLWSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC81NDgyNmIyMi0zOGQ2LTRmYjItYmFkOS1iN2I5M2EzZTljNWEvIiwiaWF0IjoxNDYyNzc3NzIzLCJuYmYiOjE0NjI3Nzc3MjMsImV4cCI6MTQ2Mjc4MTYyMywiYWNyIjoiMSIsImFtciI6WyJwd2QiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJmYW1pbHlfbmFtZSI6IkFkbWluMiIsImdpdmVuX25hbWUiOiJBZG1pbjIiLCJncm91cHMiOlsiZTRiYjBiNTYtMTAxNC00MGY4LTg4YWItM2Q4YThjYjBlMDg2Il0sImlwYWRkciI6IjEzMS4xMDcuMTU5LjE0NiIsIm5hbWUiOiJBZG1pbjIiLCJvaWQiOiI1OTYzZjUwYy03YzQzLTQwNWMtYWY3ZS01MzI5NGRlNzZhYmQiLCJwdWlkIjoiMTAwM0JGRkQ5NTlGODQyMyIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6InNEZ2V4UndDTklmWS1oelFqakNEdlpUN0l6ZGZvNFN5cnI0eDBkRE56UjQiLCJ0aWQiOiI1NDgyNmIyMi0zOGQ2LTRmYjItYmFkOS1iN2I5M2EzZTljNWEiLCJ1bmlxdWVfbmFtZSI6ImFkbWluMkBBenVyZVNES1RlYW0ub25taWNyb3NvZnQuY29tIiwidXBuIjoiYWRtaW4yQEF6dXJlU0RLVGVhbS5vbm1pY3Jvc29mdC5jb20iLCJ2ZXIiOiIxLjAiLCJ3aWRzIjpbIjYyZTkwMzk0LTY5ZjUtNDIzNy05MTkwLTAxMjE3NzE0NWUxMCJdfQ.kcBKvRfVqZuZAFsVK3zquY4f0_vFyDOl-pss2ZznEULGss-SJAjv33ud8mNo-esJsnRruhYeANPOYpI7aSYsVeASm2Cqvh_eBvyXdDDP-3fUBMNzfu0herV00jKB9qWX4hWayT0oYnmNf0aukqiz-x0kYTyfreMXNc0lkwRnYOvFcXlgjvrsmZzsh-0kkoHxR6duv92mjUWvKyp6ZyWpTnz75r_4f0B4mHoUDIM8NlaDXKyuH53CZWbg76ghvs_ZzEQWoaIf1m6iQifKeXKLzLyagtxh0RI3Edu8Lz44gFgcuAUjOn8RnPRs3mCO_jUWlymGGwsuO3OuUUfyon16Bw","refresh_token":"AAABAAAAiL9Kn2Z27UubvWFPbm0gLRfaJIOuGHZsnar0K6sROCmG_qIv8Ils1umxxAYvuDRXvGqDa-ENC-2ufSO-w7oWryDQCWNBQu-U9kDKiVaJvcreJvtqNHKyr3pl7tgBfEOYNVxktMZPIQzvOGzCgYNhnpLXHJYjApV2Sv7v97X3kKOf_MdO_bel0fgBKDTuOeGQjr7hg-d8nDe5dsHknYuibAv3XhOZRce56b6MfPxiHZvqz1I6VdLJTeECH4wyqSeOCU1GLEVkXqfIs8cjwx7wv4YdJ8nFYmBs-PJL1bxrEnTSH3vaP5vS-k03eD4Z6U-W6lq9-JACG9AL9EGysWRCp3Sg3DkpNQQbCYs2vfofnpDXKP0dyD24fOzyJxiOvIZuagrqeYIqqhQ-ITARancg3atWUaa0h4PotjmzvPdq9KeUrs8MHP8sSTa_3wscPaEnYeW_E4kAK3g0BNYUAffhcAWrCJeUuXceJzdDZy6ENnQR9OMy6_8cmojHUIk3HiqYR0Ahr-S0lk6CQpWpz5fR7r7m6_nCzPLxyMM_fIYepWTVM5VOsgamN9-WKKmqNaM3ZVVKGvj43k9PbOD_0th5fETyDOVoAbhAAE6C4zd2uM3hYPwpEF7Fn9SvZmPS2YoOZyr4gi0_aO1PLMo7__EgPyAA"}'} + headers: + Cache-Control: ['no-cache, no-store'] + Content-Length: ['2349'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 07:13:41 GMT'] + Expires: ['-1'] + P3P: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + Pragma: [no-cache] + Server: [Microsoft-IIS/8.5] + Set-Cookie: [flight-uxoptin=true; path=/; secure; HttpOnly, esctx=AAABAAAAiL9Kn2Z27UubvWFPbm0gLSGIlXGZda6X3YaKxcUD0rx4OOCB0V5cUmZDVaJG2F180rIHt6s6KRzF-6j4wlZHFloAYk-1iRsobiu_RT7OfYeUWBWCAf68ApBDHCs0FKghJvPPvreLI1g68BnFc385lBjCk9wnrbIgJBu43aoF_P0--VRmwMH8yKMsqATmmeN3IAA; + domain=.login.microsoftonline.com; path=/; secure; HttpOnly, x-ms-gateway-slice=productiona; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + X-Content-Type-Options: [nosniff] + X-Powered-By: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmGeneralize?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['114'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 07:13:42 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-failure-cause: [gateway] + status: {code: 404, message: Not Found} +- request: + body: !!binary | + eyJsb2NhdGlvbiI6ICJ3ZXN0dXMifQ== + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['22'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmGeneralize?api-version=2015-11-01 + response: + body: {string: '{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmGeneralize","name":"cliTestRg_VmGeneralize","location":"westus","properties":{"provisioningState":"Succeeded"}}'} + headers: + Cache-Control: [no-cache] + Content-Length: ['197'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 07:13:44 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} +- request: + body: !!binary | + eyJwcm9wZXJ0aWVzIjogeyJtb2RlIjogIkluY3JlbWVudGFsIiwgInRlbXBsYXRlTGluayI6IHsi + dXJpIjogImh0dHBzOi8vYXp1cmVzZGtjaS5ibG9iLmNvcmUud2luZG93cy5uZXQvdGVtcGxhdGVo + b3N0L0NyZWF0ZVZNL2F6dXJlZGVwbG95Lmpzb24ifSwgInBhcmFtZXRlcnMiOiB7ImxvY2F0aW9u + IjogeyJ2YWx1ZSI6ICJ3ZXN0dXMifSwgInByaXZhdGVJcEFkZHJlc3NBbGxvY2F0aW9uIjogeyJ2 + YWx1ZSI6ICJEeW5hbWljIn0sICJvc1B1Ymxpc2hlciI6IHsidmFsdWUiOiAiQ2Fub25pY2FsIn0s + ICJhdXRoZW50aWNhdGlvblR5cGUiOiB7InZhbHVlIjogInBhc3N3b3JkIn0sICJhdmFpbGFiaWxp + dHlTZXRUeXBlIjogeyJ2YWx1ZSI6ICJub25lIn0sICJzaXplIjogeyJ2YWx1ZSI6ICJTdGFuZGFy + ZF9BMiJ9LCAib3NWZXJzaW9uIjogeyJ2YWx1ZSI6ICJsYXRlc3QifSwgIl9hcnRpZmFjdHNMb2Nh + dGlvbiI6IHsidmFsdWUiOiAiaHR0cHM6Ly9henVyZXNka2NpLmJsb2IuY29yZS53aW5kb3dzLm5l + dC90ZW1wbGF0ZWhvc3QvQ3JlYXRlVk0ifSwgInN0b3JhZ2VSZWR1bmRhbmN5VHlwZSI6IHsidmFs + dWUiOiAiU3RhbmRhcmRfTFJTIn0sICJhZG1pblVzZXJuYW1lIjogeyJ2YWx1ZSI6ICJ1YnVudHUi + fSwgInN0b3JhZ2VDb250YWluZXJOYW1lIjogeyJ2YWx1ZSI6ICJ2aGRzIn0sICJuYW1lIjogeyJ2 + YWx1ZSI6ICJ2bS1nZW5lcmFsaXplIn0sICJvc1NLVSI6IHsidmFsdWUiOiAiMTQuMDQuNC1MVFMi + fSwgInB1YmxpY0lwQWRkcmVzc1R5cGUiOiB7InZhbHVlIjogIm5vbmUifSwgInN0b3JhZ2VBY2Nv + dW50VHlwZSI6IHsidmFsdWUiOiAibmV3In0sICJ2aXJ0dWFsTmV0d29ya1R5cGUiOiB7InZhbHVl + IjogIm5ldyJ9LCAib3NEaXNrTmFtZSI6IHsidmFsdWUiOiAib3NkaXNraW1hZ2UifSwgIm9zVHlw + ZSI6IHsidmFsdWUiOiAiQ3VzdG9tIn0sICJhZG1pblBhc3N3b3JkIjogeyJ2YWx1ZSI6ICJ0ZXN0 + UGFzc3dvcmQwIn0sICJ2aXJ0dWFsTmV0d29ya0lwQWRkcmVzc1ByZWZpeCI6IHsidmFsdWUiOiAi + MTAuMC4wLjAvMTYifSwgInN1Ym5ldElwQWRkcmVzc1ByZWZpeCI6IHsidmFsdWUiOiAiMTAuMC4w + LjAvMjQifSwgIm9zT2ZmZXIiOiB7InZhbHVlIjogIlVidW50dVNlcnZlciJ9LCAicHVibGljSXBB + ZGRyZXNzQWxsb2NhdGlvbiI6IHsidmFsdWUiOiAiRHluYW1pYyJ9fX19 + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['1182'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-generalize?api-version=2015-11-01 + response: + body: {string: '{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-generalize","name":"azurecli-test-deployment-vm-generalize","properties":{"templateLink":{"uri":"https://azuresdkci.blob.core.windows.net/templatehost/CreateVM/azuredeploy.json","contentVersion":"1.0.0.0"},"parameters":{"_artifactsLocation":{"type":"String","value":"https://azuresdkci.blob.core.windows.net/templatehost/CreateVM"},"adminPassword":{"type":"SecureString"},"adminUsername":{"type":"String","value":"ubuntu"},"authenticationType":{"type":"String","value":"password"},"availabilitySetId":{"type":"String","value":""},"availabilitySetType":{"type":"String","value":"none"},"dnsNameForPublicIP":{"type":"String","value":""},"dnsNameType":{"type":"String","value":"none"},"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"vm-generalize"},"osDiskName":{"type":"String","value":"osdiskimage"},"osDiskUri":{"type":"String","value":"http://vhdstorageg4srpskjqsssw.blob.core.windows.net/vhds/osdiskimage.vhd"},"osOffer":{"type":"String","value":"UbuntuServer"},"osPublisher":{"type":"String","value":"Canonical"},"osSKU":{"type":"String","value":"14.04.4-LTS"},"osType":{"type":"String","value":"Custom"},"osVersion":{"type":"String","value":"latest"},"privateIpAddressAllocation":{"type":"String","value":"Dynamic"},"publicIpAddressAllocation":{"type":"String","value":"Dynamic"},"publicIpAddressName":{"type":"String","value":"PublicIPvm-generalize"},"publicIpAddressType":{"type":"String","value":"none"},"size":{"type":"String","value":"Standard_A2"},"sshDestKeyPath":{"type":"String","value":"/home/ubuntu/.ssh/authorized_keys"},"sshKeyValue":{"type":"String","value":""},"storageAccountName":{"type":"String","value":"vhdstorageg4srpskjqsssw"},"storageAccountType":{"type":"String","value":"new"},"storageContainerName":{"type":"String","value":"vhds"},"storageRedundancyType":{"type":"String","value":"Standard_LRS"},"subnetIpAddressPrefix":{"type":"String","value":"10.0.0.0/24"},"subnetName":{"type":"String","value":"Subnetvm-generalize"},"virtualNetworkIpAddressPrefix":{"type":"String","value":"10.0.0.0/16"},"virtualNetworkName":{"type":"String","value":"VNETvm-generalize"},"virtualNetworkType":{"type":"String","value":"new"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2016-05-09T07:13:46.0535546Z","duration":"PT0.3061976S","correlationId":"469face9-7a5e-41a7-96c7-e2610f8ca7c9","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/VNetvm-generalize","resourceType":"Microsoft.Resources/deployments","resourceName":"VNetvm-generalize"}],"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/NicIpvm-generalize","resourceType":"Microsoft.Resources/deployments","resourceName":"NicIpvm-generalize"},{"dependsOn":[{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/vhdstorageg4srpskjqssswvm-generalize","resourceType":"Microsoft.Resources/deployments","resourceName":"vhdstorageg4srpskjqssswvm-generalize"},{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/NicIpvm-generalize","resourceType":"Microsoft.Resources/deployments","resourceName":"NicIpvm-generalize"}],"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/VMvm-generalize","resourceType":"Microsoft.Resources/deployments","resourceName":"VMvm-generalize"}]}}'} + headers: + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-generalize/operationStatuses/08587388288597307126?api-version=2015-11-01'] + Cache-Control: [no-cache] + Content-Length: ['3936'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 07:13:45 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-generalize/operationStatuses/08587388288597307126?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 07:14:16 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-generalize/operationStatuses/08587388288597307126?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 07:14:46 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-generalize/operationStatuses/08587388288597307126?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 07:15:16 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-generalize/operationStatuses/08587388288597307126?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 07:15:47 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-generalize/operationStatuses/08587388288597307126?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 07:16:17 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-generalize/operationStatuses/08587388288597307126?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvV5Pp3k+y2cf/ZL/ByCIe+QWAAAA + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['141'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 07:16:48 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmGeneralize/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-generalize?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR8Xs + o0cf3W3Wk2ZaF6u2qJbN3Z3J7vmn+w92t3cn5zvb+7NZtp3l03vb08nDvQd75zsP7z/cuVvnTbWu + p/nndbVeNXenZfEmb9pXF7//Ty4+z5d5nZXFD/K7q7q6LGZ53dz9opjWVVOdt+NX+mZzd5avyup6 + kS/b5m72g3WdE5TtlsBsu2+2LxfbFxbgR6OPltkiJ5xv3Z5QWOV1W+TNR49+8UdtvliVWZs/L5Zv + 8fe6LgjYvG1XzaO7gkQzezstxpOymoynVZ2Pr4rlrLpqxsu8vWten1dNe/ekzunXn/xCXhMUxj/d + VEvqdVotW8LmJ2noRFPqYne8g/8++iWEUVbTGFr6Chj8/hkhd55N2+Z5Nc0wA/i0vV5hlK/bulhe + ELzLrFzjgw/DFL1ns0WxfJk1zVVV0+S7rvIpgdQOTbuvmrwWgrt20sKhtJ6sl+2aX1m3cxp0IcN4 + w+2H31sZHPDmZVaU2aQoi/b6dd6eBYh1X4y8cFNfy2qZ47XZsnmRLfJnVf1yPSmL6dnLTW95b9y2 + g/IWc3hFHLtu0Pom0oa8TC9UzdOieQuENr1WNTNqVSyyC++lr8Dpw++AsYivLuezpq1qevNiv6lX + zduf/kUNTdMAk6H1Xa+3MX0gPX55fp7Xm/r7irnmdV5fUjt+hWekmdOfG147yYjSxGClvPP69/pq + U+vd/fHO/nh/+/mb19L+pmk8WdPoF9LWyu5wcwhY06L5qi4u6Y+z1fFsRoLZHJe34YSn18QBxZQB + YPTTb+z9m1iEiU3s3+OwDpybCEazwa81eH1Du9dttpxl9ez3P97j5s38KVHu98qvX2btfNOLd+fV + Ir8rOubumN67Cy1T1dTf7Pd/m1+zHNHHBOon5ZVhWNxUuPt4Oq0I5E1kIn7WFwJx6AO6kU65/9IJ + WYesILLfpn/vvVf5bE1kXE6vb+rP0vv5K2Z9svAksHZaX9b5efFuE4BdMlb47+7evnv/JnRfc6se + T10WdbvOyhd5S/r+7ddBYvfTPpybkPnJF6dvbkDlJiryrNFbi2qGP8+W0zqHk0HqhyQFvg00BL1D + 5G7R4vV6Os3JFZjR922xIBbPFiv6fG9n99PtnfvbOw/f7Dx4tPvpo/1PxwcH+/cP7u//FDWdrWuV + 9Y9evrn3xe54996Dvb2D/df0HSndOidFQ1/DLH60/+lD8hbyh9sPsvv59v5u9mD74afTB9v53qe7 + O+cH0+zB9CG9xtjB8/ro0fd+MRuaZkWvEYCIJ0btaUL4d5BE3vE/odfEv8Ho0dxoJzRdrsvy+7+E + /qOB5Kt8OcuXU3a3CIh80HxJQ6O//l/jbf4kMUDIGyEFCM0bQHgvCCMSv3VhgiL/rxnyC2j1ED83 + hK875gjQXzL6f+2sQ5uKIg20eYi/G+PXJcqtugGZ/l9DmMg0ulF9XTJEgP6/SiB+8osQOTeArzvi + LkQMt1q3qzU1fvSLyY7IHxaakw7X1Um1oCb5XTVUX2TTOTkKxLshZMM97kXSPjBpd8kA4+cZxZ81 + DAUGSlNx6/e1Y/2T3o6Y0d7Lr4Xf7yrfq1NEWMdFgSjzS37J/wPECv/4fRAAAA== + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['1300'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 07:16:47 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmGeneralize/providers/Microsoft.Compute/virtualMachines/vm-generalize/powerOff?api-version=2015-06-15 + response: + body: {string: ''} + headers: + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Compute/locations/westus/operations/55f013c4-5d3f-4870-a894-0558b7469ca0?api-version=2015-06-15'] + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:16:49 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Compute/locations/westus/operations/55f013c4-5d3f-4870-a894-0558b7469ca0?monitor=true&api-version=2015-06-15'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/55f013c4-5d3f-4870-a894-0558b7469ca0?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UfVKq+ztqiWZ7OPHqUf3b9/vrN7b7q/fX9273x7/+DBznZ28HB/e+f+/YPJg/1PH06znY9G/GbT + ZnX7pljkeG9vZ/dTarS98/DNzoNHu58+2n84vvfg4YP7n977ZGfn0Y55KV/OBl+5/+n40093d/Yf + fhq8Qv206wZvvF5Pp3k+y2cf/cbJL/l/AHybgIS/AAAA + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 07:17:19 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmGeneralize/providers/Microsoft.Compute/virtualMachines/vm-generalize/generalize?api-version=2015-06-15 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:17:20 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmGeneralize?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:17:20 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:17:35 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:17:50 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:18:05 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:18:21 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:18:36 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:18:51 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:19:07 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:19:21 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:19:37 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:19:52 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:20:07 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:20:23 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:20:38 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:20:54 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:21:08 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:21:24 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:21:39 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:21:54 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:22:10 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:22:25 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:22:41 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:22:55 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:23:11 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:23:26 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:23:41 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUdFTkVSQUxJWkUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 07:23:57 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_image_list_offers.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_image_list_offers.yaml new file mode 100644 index 00000000000..177045d2c86 --- /dev/null +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_image_list_offers.yaml @@ -0,0 +1,36 @@ +interactions: +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/Ir73Gydp + +ovxT5p+VFbTrC2q5UeP0o+u8qZdNx+N9Ktltsjx8VeT9bJd794f7+y/Xmar1bVtUczw/d3X60kz + rYsV4DR3dya755/uP9jd3p2c72zvz2bZdpZP721PJw/3Huyd7zy8/3Dn7su6uixmed3c/aKY1lVT + nbfjk2qxWrf53eeKUnNXELr7cj0pi2aO1ifZsloW06y8e1y3xXk2bd9cr/Lm7k9+cbbILvK7X56f + o1kfZWD8SxjvDxn502r6Nq9tu//vjF8RB95fkwp1VZbF8kLA2Tb/L6dAiDRw/pqjf53Xl0Q/8+X/ + y4et2ALZrzne319I9vufVHVum/y/fNQBzkD5Gxj776+CY1r+f4gEBnVg/kt+4+T7/w+0FbQ39wUA + AA== + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 05:15:25 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_image_list_publishers.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_image_list_publishers.yaml new file mode 100644 index 00000000000..05544031816 --- /dev/null +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_image_list_publishers.yaml @@ -0,0 +1,171 @@ +interactions: +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/Ir73iz8q + q2nWFtXyo0cfXeVNu24+Gn20zBY5/b2/ajL6q5jR73dfryfNtC5WaNvc3Znsnn+6/2B3e3dyvrO9 + P5tl21k+vbc9nTzce7B3vvPw/sOduy/r6rKY5XVz94tiWldNdd6OT6rFat3md59rt81d6fXuy/Wk + LJo5WnO/v2S0GberrJ7d+/Q+ffLDx8/0fQOOD4qmKtf4Eh/+0NH0u78B02x3Z5m3V1X9Fh/+0DH1 + u78J00nxi9YV/f3DR1J6vgm/6TQvS3z3c4Gi7fwGLI8J6rLABz90HE3Xt8NwfDyp3laX4yfZ9O16 + RV//XOHbQeSW2Gvrn0O0FYPb4btHn/xcYbp3Wxw7M/FziHEHkxvwz6ZtkS1//0XW1sU7+viHjnaI + wC2wvcy3l9llcSFtfo4wDpG4FdY5ffdzhi06vwnLWbbYBljyI3L6+IePaYDAzdi22c+NxZWeb8Sv + mvwcUREd3wa737+lT+mznxsUpfcb8ayzbVIN0zl99nOAp+39Rjwvs2WbU8OfEzRN57fFcvsqn8Ar + a/Dlzx2+Hho3YZ4T/FXx9udGomznt8VyGypikjU/t+g6LG7Cu1g0xXJZXUqDnwucQwxuxLeZZmVe + b0+z6TzfnlbLtq7K7dmsaraz5Wx7XZfbdX5VF22xvNim934OxvNeGN403rc0pT838yI934RfSaOk + sP7858aauN5vxDOv27K6KKb02c8Bnrb3G/A8RsvnaDk+fdfmywbNfg4wjuJxA+5ZeZFP6qx4x9qH + Pv+hY93B4EZ8y1lxUbRZuT2p88uivabvfg5w7mFxI95tXl//3ERs2vXNGBZZTX8XPwcIFtTzTfgt + s5L07/Tnhklt5zdieVGRf/RzgiL3fBN+q+Ii/7nxc6TnG/FbUfYxr7O2+rnhRb//W+BatFWx/Lmx + T673m/HM323b3PjPDa4+BjfjWzRt/XOj2U3fN+NY58vZz40yMn3fjONlfl3V04I++7nA0vR+M54/ + IL+VPvi5QJK7vgnDGtp1NqFPfvgomr5vxhF//Vzgd7NE13V2/ftb+f85wTLA4CZ8mxWZAPr7h4+n + 9HwL/H5ufEnuuIOdNCN0fOwoEbfMLvLZ9rSs1jP68ucG1w4aN2HetuslefO/P7ee5NmCvvvhI97H + 4ia813W2qmqKR+izHz6+rveb8Sx+0XZz3bT5Ah//XKDqIXATtpf5ivyrn5ssien7RhwLXomzY/o5 + wbWDw004X1EWbU1///AxlZ5vwu/dVfZz43xyxzdh94P1z42Uo98bcDv+wbrOX70Zv6HP6dMfOo5B + /zfgSuOp8+Z6OT1fc6Ls5wDdLgo3YMyje1NVZbPbXq9+ToL4Lgrvh/Huzg5993ONNLB4P7z36I2f + e7yBxQ14Tyi5Pil+TkTPdH0Dhk/giE/Xs2zMoyPQy2U+bQvkUI8vcjJ4Pwe434zUDaOaGAA2wPg5 + GEUfiRuxbuY/J1G3dHwDdk+Kln77OUldmK5vwHBS/CC7+DlBUHu+GT/yyd/e+/TnRHt5vd+EJ60I + vp3kNWXdfi7wdL3fiOc6pyHRdz8naJrOb8JyMZ22i3FLH9OHP3w8ve5vwrRaL2dl3jQX+c+NGvL7 + vxHXd2hJH/wcoCld34QhraEum3lW59tkhn8u8AwQuBFb+m6W//7TarGgZIe0w/c/B2jTl31MbsT/ + uv058cCl45uwa5or+uuHjxz6vQm39Ww2h7OIz374GLreb8Tzoi74g58DJKXrmzC8ouWLfHlRLH9u + ONHr/gZMT7JlBdH6OUlcuM5vwHKa1ZQe+jkxRabrGzFs8+l8WZXVRZHj858DRAMMbsSX4JUibj8n + yFIL7f4mTGf444ePIXV7E2Z5TZFo9XOy3GP7vgnHeT59K/nqnwssXe+3xtOkqn9O0TVI3Iz1+TbA + X5FvRR//XGDsIXADtifUePykqtqmpWWh8XeL5ay6ajixQo1+6LhvQueGkdCw66u8/DkxWrbvm3As + VtSSuYk+/OGj6XV/I6b1tMynPyf5Etv3zTjmzd4uffBzgSJ3fSOGzfSH7aEofug4ip2PXUvrgPT3 + zwH5uOeb8CuLqeZ6fi5wdL3fiCct/G9P63XR5DV9/HOAqo/AbbCd5OQO/lxhyp3fFsttSuiTzqpp + aNs/nS/fUtKCWv3cIR7D51ZjqcrWWeWfsxEEWNwO74pygz93+KL32+A5rWrKC/5c4Sm93wbPvM7o + k58bLNH3LXHc/UXZD/aump8b69DF4TY4z6t183MnV9L7bfAsi+Vb+ujnBk3u/AYsT9DwOTUcv86n + 5Hf/5Bf03Q8d3QgWt8X79IsT99LPJeoBIl8H+/EbakVt/t8xBMHmhnEwm6Ef+uiHjrbr/EYs1xRg + kgf6c4Kk9n0TjtWMsmHt/OdGqdnOb4Hl8vLnxkHXrm/E8GJZUe6GPvk5QFH7vhHHed4Ulz9HU619 + 34jjYnGZrcufG8m2nd+M5SpbXuOv7WZe1T9X2HaQuBlrWsxsf47ESPu+AceTanlO0eXPAYba863w + YyP1Ol821c8hqj4SN2A9JTjUkFTEzwG2rvObsbzE4gKtef3coGl6vxHPelbg758DHLnnm/Gj9MG2 + XZS73l5d/hxpqBgiN2B/Qi99+Zr+/qGjqz3fgB8NqsXK8Xbxc8SmrvsbMV1P55OMQsafEzxN5zdh + Wecz+u6SPvnhI2n6vgnHhhblKCz5uUBRu74Bw1lW5j8n+EnHN2K3LPKyqcoxL7K9qaqy+TlZUYkj + 8nWwX1FG9v8tAwAuX3MMe9Tk/zWD2Pu6o7hHTf5fM4p7N43iabZszKLz+Hi1om9+6Mj3cLgFznvB + Cz9HSIdI3ALre8ELP0dYh0jcgDWZpCyjcO7nAFfT9S0wnGZNW/6cuBZe7zfg+ZRazqqL8fEF+aH0 + 8Q8d1RCBG7DFuPJ3q3xWoEGxnNJXP3SM+0jcAuvi7Zo+8HH9oeGKrm+BYZldU3D/c4SjdH4bLIsJ + rUhxg58rVB0Gt8C3abOfk+y27fs2OK6XWEanD39u0NTub8I0P8+mbfX7X5TVJCt/f/rih49tB4Ub + MS5Lt8j/c4Kvj8AtsP39beOfI2wdAjdiu7zOypI++DnAU7q+EcN6lk1/TtaY6RXu+iYMLxpeUqRP + fvgomr5vwrGaviXL8HOBofR8M34NJZxW2/zhzwWStvsbMS0n17P8Mi+rFY3r5wTZAIMb8V3kD+nP + nwM00fGN2C2ry2y1ntBHPwcYms5vwrKulj834s0d34TdejnL8PcPHz3p+Sb8aOWwrbNpPq7X74qf + k+ioi8INGOdZc93mdV20Vf1zsogZInATtqQLsPJBn/zwETV934TjRZ03+PuHj6H0fBN+xc9Jxgbd + 3ozZNv2/uiJV/3ODoe3+JkxLhErTslrP6MMfPqZe97fBtJhOqp+TmNLr/UY882lW/xxRU7q+EcPz + 4hct8/aqqt/i458DPH0EbsS2+kVryjrQJz8HiGrfN+G4PK/I6l/8nKz5us5vwpI8z4L+/OFjyB3f + hN0vWheUX6qL9YI+/OHj6HV/A6anr0/f0F8/dBS531vgNn5WlPlrhJhF+3PiCfWRuAHrvCH++DlA + lPu9Cbd1XbG39HOBn+n7Jhwvq6at82yxjZT8zwWiAQI3Yfsuo3VR+vuHj6b0fCN+Rbt9Qb/js58D + HG3vN+JJerUt6PefEzRN5zdgeX5/25r6nwM8/e5vwpQ0FhmA2cXPCUG93m/Es87nJG/0yc8Bltr3 + TTiW+TtynACXU9o/F6h2ULgJ4+piXtXL7ea6afMFvvjhY9xB4UaM62aaU67p5wRV7ftmHNuCBJA+ + +bnAUfq+BY7XEoP+HGGpvd+E5xX9/sPH76qPF9oQLorXxTaWMt1i281IfuNIdlG4gZIX+SIr22q7 + yc6Jh39OmLOLwg0Yfy7Nx6+p+Yu8HVO35Bi2P0ktfuioD+LyNccwPv4BVsP+XzQSxeim8RTtt2kd + 4ucCb+n5BvwuirbMfk7w055vwo8ChhYGjz764aNoO78Zy3zZ/KKfk3jF9n0DjvOsuCwafPdzgKTr + /EYsy2pSiKn7OcHTdX8jpss1/fVzgCL1exNu+VWZt+32Kpu+RbL35wLNDgo3YVxQin9ekHUu12iC + r374OPeQuAlr8suqpQSOPxf4et3fhOnq58R4otsbMPv2y9OxyQGOj1erspCmT3NyeqhLavlDR/tG + nG4Y03y9yJZldVH8nCTavN5vwLPIsiUFkvTBDx1J0/WNGC5EG/+coKh934TjJJs02/nPiTWwfd+E + 4yK7oDh3Wi0W66VyM77+4SMcReRG7H9OBAnd3ogZpTgvf04WHk3XN2G4nNb5rJjQ0tXPjRT5/d+I + 63mFBbasLrKfEz81ROAW2NYL+nb6czP/Xve3x3RbVNrPLb6KxG2xrpbMPQSEvvy5w9tD4xaY01pX + 9nOSNXKd34hlXVySM/NzgqN0fSOGbf5zElRLx7fBriwu8iWFOWVG/5btz5FkxRC5CftftKZP6O8f + PrrS8034NXMaysV6u6yy2fYkoz+meb2dzX5uXIFhbG4aB81NUeGDHz7S2vUNGP50Pqve0Z8/dPyk + 4xuxK7OGjAZ98nOAoPZ9I47tMn/Hn/wc4Kh934TjeV1d0J8/fAS545uwK9o2rydF+/tDmV2Q9UK7 + nwtso4jcgP3bLPtBsfw5oa7p+kYMG4oWmrfXvz+S7j8nePoI3IRtvljRIsucPvnhI2r6vhHHFb74 + OcGQe74Jv6osaZ2K3Cz67IePo+v9BjzLnxP8qNeb8CrySV7Lv/TpDx9D7ln+vQ2uAEyf/JzgicY3 + 40h6NWtvnSX7ZnHUvm/CkZw749vRpz98Wvr934Ar4JRv6MPxm5qS0tzR+Gmer0zimpr+0AeA7zYj + dcOokLbezpZZeU1uFz7/oQ+hg8Et8F2u8mpFCuXnCFnT/c2YNsXFz4nBMl3fjGFbryky/LlBUfq+ + EcfqLcnmzwmG3PNN+K3fEUD6+4ePn/R8A36U/aeY9OckX2q6vhHDJTXMlyRYPyciHfR/I66rehvO + 6rIiBi5yfPVzgHAXiRuxpuz67OckCjFd34hh05DrSjPBVmCbvvk5QLWDw404X1IcWFbkP9CHPwfo + uu5vwPSL6fF5no9Pl7NVRUG2dQ1+DrAeQuXrjWDcUrt71Oz/LeNQhG4YzSLPlkVFf//Q0daeb8Rv + VmQ/yJfFz40+dr3fiOei+UU/N8InPd+I33JW/JwkerXnm/Frs3JZEdPShz8XSNrub8S0qZoVvfVz + xJG29xvxbEktNzDO9OHPAaKu+5swPS9KovvPBZLS8w34WZj00Q8dRdv6JiwXpiEtTOHjHzqmIQK3 + xrbeXtXVbD1t8e3PIdIeHjfg7no4/sG6zsfHq1VZSGu0+qGPwbWO4POeY3mSTd+uV2OkcajRz/lQ + fHTecyRPi+xiWWEFD41+zkfio/OeIzl91+bLhtqizc/5QDxsvvY4ZEL/XzUYQek9R/Qqn1aXeX39 + Oq8viylZkv8XDKmH03uOycQP1OLnfCwWl685hvEZrePWFEVT0//XDMYh9b6jopUMM7vCrv9vGFUP + qfcc1XeL5ay6ap5lk7qYCoT/FwwrgtX7jevk+I38crqcY01n9kW1LNqqpkQJvfNzPb5N2H1j42Sq + /b96rIzhrcerfdNXP4dD0ta3x/oU2mZVF01+Ulbr2diNnlr/HA5kA17fwNhEZP9fOkBB7taj/Lwq + KRns+SrU6OdwXJ9XZQedW4/k26up9kXfbhjCz/YQPDzeB/eXFI3QVz+3iDMSt8b6y9dvTryZ+jlF + voPL1xyDCM//iwYiCN16NC+rK4I2z8ufY6fUw+Nr4D4++eIptfh/Bf6My9cZw2ldV/UJOQUXP8f6 + aACnrzOms2VDmez/1/CWxefrjYUsKAKl//cMRhH6kNGQvihzSo/XP8ch9mbUvs4IX2bZa2ry/44x + MTJfaxR1flnkV9Tq/yUDUXy+zlhe0XxmTU7zSibq/y0DCpD6OqNyXPr/liE5jL7eeIgQ/+8ZCiHz + dUcx3qFG/+8ZB6HztUeyS43+XzSS3a89kj1q8/+egex9rXF8tbqos1kOANTy/x2j8XH6WmNqp/zu + /2vGo/h8nbF8d3FOLf7fMQ7g8jXHsM8E+H/RQAShrzma+9Tk/zUjuf91R/HqzRfU6P814wA6tx7J + 619UYhkur8dfZMvsIpsUJS8AkWvKypDe+Tkc2I3Yfd1xkiu0/H/X2ASj24/numnzxQm9k9f0/c/l + OHxMbo3/TxbNOitft+tZUdH3P4f4B5h8Lfxl7WZ8+ua7b+psmj8viCDLvMbs0vI2vf3/ktHdgOeH + jP1Vvqja/Gk+Wf8cr9ncgNs3NMbxdxp6///FAxUEv95olR8IxfOiJJn+f88wu5h9I+MTQ/L/2kEK + el9vpPzq/3tGxujceiTfLZaz6qoR3hbWPl6tBMjP6Zg2Ifbeo5P3n+bN27ZaUcP/F4wrROl9R8RU + MT1Tu5/7AYUY3XY8/NbroqUZnlbkpf3cZvL62Nx2HE+KH7zJyrfQKqQxfy7HEGJyW/yfXtMnxbQ5 + /r3py5875D00GHN9h9CRlwg5ahDF/POX9OXPPeaExvti/uL4J+nbn3vUgcdtcf/29aQuZidltZ69 + bquaAitq9HM3hAg6tx3J63lW5y+rgsLCn8sReGjcGvOfeK5S/nOKuMXitnj73gp9/XOHeoDIbbFX + c6dj/rlEP8Tka+F/2jSUUSiyEi3/XzISD6evNaZvvzx5mU3fUrP/lwzIIPS1RhO6if+vGVOI1g0j + WxSzy6LBdz8H+LvOb8SS0jVlXhbL9Tv69OcAUa//W+H6+0vbnzNctf+bcK0on5xN6IMfPpra9Y0Y + vn2Xbbf5dL6syuqiyPHdzwGyPSxuxPuyyBcZXqcPfw4Qdt3fhGlTrUip09josx8+oq73G/D84vWX + 1PINtRyfvqO0LfQGvv6hoxxH5AbsF02dIYJtslVDWprSW/jyh457DI2bMG+X59XPSU5be74Jv8vV + dsMrMPjwh4+k1/1NmL6jN35O3Grt+Sb8rren1YL+/uHjJz3fgB/9KGpyPumTHzqGtu8bcWzWy4L+ + /jnAkHu+Cb/p5OcGO/R7E255m61+Thxp7flm/C4ySqD+3CDIXd+MYfGL6M+fC/yo45uxu6qLnxOn + 2HR9I4ZrgNym5vn1z9FEBxjciO/VdlNcLLOWbDp9/HOAro/Ajdi+a8tiUfycZPNc5zdjyX/+XGBI + Hd+E3UWxfFcsp/TJDx9B0/dNOJJbucqrVZln7VVV/5yke3o43IRzNct/mrzinxvjaDu/Ccv1u/zn + xIGUjm/Arjo/J6pPy2LVrGmhjr74oePZReEmjBf5RbYN6FcZ6a+fC4RDDG7Cd3Wf/vjhI0nd3ohZ + vpzm5c+Jb277vgFHhO3PKXvzc6I8Xec3YInRLPLs58QPtn3fAsdlPlmXmQl9f46QDZG4BdYtuQH0 + yc8Jstz3DTh+ieTtrTTRN42h9nwDflV9njUtUqEuFfpzQc4IGjdiXtAUzH5Okt2275twbArApA9+ + +Chq1zdhuG6NtP1cIOl6vwHPVVZWWdlWFEfB/cM3P3RsezjciPOyqrNFRsHftP05cfM6GNyML+WS + s+3zosw1B0pf/lwg3UPjJsyrYtkusral5ZGfC4y97m/EtG6zMqunc3Jnpy2++TlAt4PDTTjX+ayY + 4svi54aL/f5vg+s7fPdzhSh3fjOWTUurebSe/3ODpun9RjyLBclgW1Ou8uKaPv85wDXA4Db4UuM8 + +7nRXF73N2Ja0Vpds03GhD78OcDUdX8zpudFk/9coSl934zjRV42q4w++rlAUju/Ccv28ve/qKv1 + z43Q285vwPLlerXK2+fZBJ/90NH0er81nuM39BV98XOIrKBwA8ard2V28fs3V0WDD3/o2Prd34Dp + L1pnJUVgPwdIas834PcT1Opaif5zgKTf/e0xHe/Rxz+XuBIC74HtPfr45xTbezdhC165bi7WWT2j + D3/ouPrd34xpQ81+TnIVtu8bcKyz5ZReoA9+6Ciarm/A8FU++3b2cyLw2vMN+JH3z5Hg9kVZTbKf + k9R5F4UbMS7zSyJ+vl1mPyfMGSJwI7aLqqUXsnpJzPJzgq2PwI3YXlblGl9uZ0vSFG0xxbc/B0hH + 8LgB91fFxbx9PSVT/LygpUL64oeOdheFW2P83WI5q66a13l9SZP0c4p5iMoNI6gLajTJf05Mme37 + Bhxfabs3Jk//c5ITiGBxA94U7b7NW3TAq7I/Bzh3MLgVvr+/bf5zhrBD4SaMf06CWur1BryajNLf + 9OcPHTXp+EbsypZScdO39NHPAYam8xux/DmZXHR7E2bQspTIpk9++OiZvm+D4yRrfk6k2HV+E5Z5 + dkEpVvrgh4+jdn0zhrRiMSmrnxN3xOv9RjyXTUXmqb6gz34O8LS934hnfVl59vuHiSP3fBN+czI7 + WAOkj374ZLSd3wbLZl6ct8s8r7OfHrfUgL7+ucG4h8jN2F+Wxc+N9dGub8IQznS2WuGjHz6OtvMb + sVwsMlpOXeZNsfy5sUYhBjfiu8zPf27cIun5Rvyq5vefZW32Ns9XFDr9nCAaonAjxtC8Pze6Sru+ + AcPXtNi/t//uAX3yQ0fR9n0Djs0yW1E8V/zciJDt/EYsi9XetJr93My27fwmLKuMvHv6+4ePovR8 + I35kqjJ88HOAoHR9I4bznyP6Ub834lZmlPugpUf67OcAQ9v7LfCsrygPhs9+TvDU3m/Cc5VN8+ma + EnX02Q8fT9f7zXheVJOCPvi5QJK7vhFDap3f+znJY9q+b8SxXC9/btxe6fkm/H5RSTa9rX9uwjPb + +U1YInmUtdX2qsza86pebGfNdraN8K6Y/tzI0WaMbjOepqXX6LOfG9yl95vxZKVGn/xcYCl934Dj + 6zajv1/lq6pux0+L7GJZNVh54qV9avZDR3wzQjeMpmnzvJzTsgN99EPH3HV+I5YVBVflz43SMH3f + jGO9oDRFXv4csa/r/haY0nL6mvTGzxGi2vuNeNYUpZa0RPpzgqbp/DZYrpttwvDnCk3p/SY818vL + Ir/aBmhe9/q5wLaLww04v/7q9Sn99UPHk/u9CbfrRbZs85+TgN72fUscxz9xTB/+nKGJ7m+LKZnh + i2L5c7LC0MPhtjhzQvrnEmFG4AZsG22Mtrv08Q8d2xCBG7A1Q4MPs7tDn//Q0e1g8B74fkof/5yi + ++n7YPtzkzYNEHgPbA/o459TbA/eB9uH9PHPKbYPb8K2uV5Oz9e0JLCcFBdYFND4klr80BEfxOWG + MbTZpMyzNX3wQ0fZdH0jhlOKyOjvnwMEuecb8Svp86+L3gehh45vxK6+KD7AwH4Ietzzjfhd5stZ + RR/8HEyvdH0Thvl0PisuC8gWffrDR9Pv/0Zcy3yV/dxMt3Z9I4ZLiD198HOAoXR9M4Zt0f6cpEtM + 1zdgCOM0fpLVdTZdz7Lx8Q/WdU7wl0vyD4lR2uvjCwJE7X/oA7glZrcZ3+f5Iivbavw6O89f5O2Y + UCJJaH+Smv3cDGsQoduM5tsvx8er1dP8nDRO/nPiIMTQuA3mL77TeennCvceIrfB/k1Nbbmz8dM8 + X73GchqxIbX6uRnEED4fMJY9avb/qsHsfcho7lGz/1eN5t5tRrPb586fo2FEMLkF/ntjE/jYX06X + s1VVLFtChv7id3+OhnQ75G4xynv2fftLBNDP0SjvWZzsLxHkbjHKffu+/SUC6OdolLdD7hajvG/f + t79EAP0cjfJ2yN0wynZeLN9OqnfomfP9PweD6eFwE87VapY3b+mDHz6q2vWNGNbrhofyc4Kj6fwm + LOts2Vxm6/LnxIv3er8RTzIxCwCnz34O8LS934DngG2nBj90pIdQ+XojGEPd/Nx4gBsRuv1oXlY1 + JbIIC6hFavFzOZAQlxvG0DbZ9gpgpttNXl8WtCb/c4B9BIub8L5e5Q3FsPTJDx9b0/cNOK4neT0t + q/WMPvqhI+k6vwnLJYEnk/NzgaN2fTsMt6dVvaJPf67QlP5vwrX5uUGRur0Bs8tJ9XOimbjfm3DL + pwQJINmv+LnAMsTgRnzzbEF//hygiY5vwq6YFc2qWP7cENJ2fgssf7D4OXG56CXu+kYMa2IK+vvn + AEHu+Wb82nVWXlX1W3z6c4Gl6/9GXLHy8/s3VblGC3zzc4BvB4ebcF6063ryc8Oh2vUNGP5kVS/y + tqbl3Z8DHF3nt8WS3erTdz8nZqiPxK2xtr+9QUi5IvuwbE+X0/qa8aY3fg4HY3+L43bDGC/bnxsb + Qd3egNl3j59u/+QXr1/zbNHHH4bj18AxROBmbPeOz8ZPi+xiWTVtMW3ktZ8bvKOo3GIEp5fEPN9e + T/ov/xyNYxihG0ZDPlzW5j8nMY3p+mYM86uqPN/Omwl9+nOBpuv/Rlzb6fx8XQI43qNvfg7w7eBw + E875pMmXTb6drRZZUa5+bpDuIXET1gtS4cu8pE9++Miavm/CEe7enKZgm/JL82VVVhc/JynIKB43 + 4n71g4z+/DlAFh3fgN27fFJkZTbBRz90DF3nN2F5XiwpRVosf06cTq/3m/BcrCil/nOBInd8E3b1 + z0lgiW5vwowWJBb5LGt/TgTF6/0GPK/zsqyuiB3oox86mq7zm7Cs1vV2M69W29WyRFbk5wLZLg43 + 4PwDmoFlW+CTHzqutu8bcVz+nKTVud+bcKuqBXPwzwV+pu9f8v3/B/zHxXz1bAEA + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 05:19:43 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_image_list_skus.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_image_list_skus.yaml new file mode 100644 index 00000000000..5b2eb1fbeab --- /dev/null +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_image_list_skus.yaml @@ -0,0 +1,41 @@ +interactions: +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + 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?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/Ir73Gydp + +ovxT5p+VFbTrC2q5UeP0o+u8qZdNx+N9Ktltsjx8e7eeGd/vLf9/M1r+10xwzd3X68nzbQuVoDQ + 3N2Z7J5/uv9gd3t3cr6zvT+bZdtZPr23PZ083Huwd77z8P7Dnbsv6+qymOV1c/eLYlpXTXXejk+q + xWrd5nefKzLNXUHl7sv1pCyaOVqfZMtqWUyz8u5x3Rbn2bR9c73Km7s/+cXZIrvI7355fo5mX03W + y3b9Oq8v8/ru67cEw0cf2P8SHsN7j/8eAzDf/X9u/II+sP+a499nAOa7/8+NX9AH9l9z/Pe3nx6f + Pf99GIxp8f85KviDwBi+Ni0AwHz3/0EqAH1g/3XGv7tjP/3/1sgJceD9/mPeJ6JtT/I2s1/9f2ng + Dnsg//VGP95hljHf/X9t+Io+sP+a499lAOa7/8+NX9AH9l9z/OI+mO/+Pzd+QR/Yf83xi/tgvvv/ + 3PgFfWD/Nce/7xlO0+L/c1TwB4ExfG1aAID57v+DVAD6wP7rjJ+MqPn0/1sjJ8SB99cbs9hP89X/ + 1wYu2AP5rzl6Fhv73f/nhi/oA/v3H/99Ehn76f+XRs6IA++vN2bhGfPV/9cGLtgD+a85emEZ893/ + 54Yv6AP7rzN+UpXm0/9vjZwQB95fb8zbWbma/3+V5S36wP5rjp9lxnz1/7nhM/ZA/muOXkTGfPf/ + ueEL+sD+/cf/KVSGsI/57v9L4/fQB/Zfc/zMP+ar/88Nn7EH8l9v9JQgYQbi0MC0+P8aEYJBYAxf + mxYAYL77/yAVgD6w/yW/cfL9/wdG6IOy7RoAAA== + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 05:25:03 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_image_show.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_image_show.yaml new file mode 100644 index 00000000000..0f78aa3f50f --- /dev/null +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_image_show.yaml @@ -0,0 +1,35 @@ +interactions: +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + 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/14.04.2-LTS/versions/14.04.201503090?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UerulrldVvkzUePUv6IPqyap0Xz9myRXeTuU3xOTbO2WF68vm7afEHfffS8WK7ffSQtfslIfn40 + y9rMQgDg730f38j3H5XVlIBUS/r8o6u8adfNR/LFMlugv49298c7++O9nd37O/d2Hu7ot8UM3919 + vZ4007pYAUJzd2eye/7p/oPd7d3J+c72/myWbWf59N72dPJw78He+c7D+w937r6sq8tiltfN3S+K + aV011Xk7PqkWq3Wb332uyDR3BZW7L9eTsmjmaH2SLatlMc3Ku8dEofNs2r65XuXN3Z/8ggd298vz + czT7arJetuvXeX2Z13dfvyUYOoDt529e3/1JasLw9UM7qt84+SX/D2qKw++DAQAA + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 05:40:38 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_list_sizes.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_list_sizes.yaml new file mode 100644 index 00000000000..9a59ef0e073 --- /dev/null +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_list_sizes.yaml @@ -0,0 +1,1009 @@ +interactions: +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmListSizes?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['113'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 06:35:49 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-failure-cause: [gateway] + status: {code: 404, message: Not Found} +- request: + body: !!binary | + eyJsb2NhdGlvbiI6ICJ3ZXN0dXMifQ== + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['22'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmListSizes?api-version=2015-11-01 + response: + body: {string: '{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmListSizes","name":"cliTestRg_VmListSizes","location":"westus","properties":{"provisioningState":"Succeeded"}}'} + headers: + Cache-Control: [no-cache] + Content-Length: ['195'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 06:35:50 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] + status: {code: 201, message: Created} +- request: + body: !!binary | + eyJwcm9wZXJ0aWVzIjogeyJ0ZW1wbGF0ZUxpbmsiOiB7InVyaSI6ICJodHRwczovL2F6dXJlc2Rr + Y2kuYmxvYi5jb3JlLndpbmRvd3MubmV0L3RlbXBsYXRlaG9zdC9DcmVhdGVWTS9henVyZWRlcGxv + eS5qc29uIn0sICJtb2RlIjogIkluY3JlbWVudGFsIiwgInBhcmFtZXRlcnMiOiB7InZpcnR1YWxO + ZXR3b3JrSXBBZGRyZXNzUHJlZml4IjogeyJ2YWx1ZSI6ICIxMC4wLjAuMC8xNiJ9LCAib3NPZmZl + ciI6IHsidmFsdWUiOiAiVWJ1bnR1U2VydmVyIn0sICJzdG9yYWdlUmVkdW5kYW5jeVR5cGUiOiB7 + InZhbHVlIjogIlN0YW5kYXJkX0xSUyJ9LCAidmlydHVhbE5ldHdvcmtUeXBlIjogeyJ2YWx1ZSI6 + ICJuZXcifSwgImF1dGhlbnRpY2F0aW9uVHlwZSI6IHsidmFsdWUiOiAicGFzc3dvcmQifSwgInN0 + b3JhZ2VDb250YWluZXJOYW1lIjogeyJ2YWx1ZSI6ICJ2aGRzIn0sICJvc1ZlcnNpb24iOiB7InZh + bHVlIjogImxhdGVzdCJ9LCAic3RvcmFnZUFjY291bnRUeXBlIjogeyJ2YWx1ZSI6ICJuZXcifSwg + InNpemUiOiB7InZhbHVlIjogIlN0YW5kYXJkX0EyIn0sICJhZG1pblBhc3N3b3JkIjogeyJ2YWx1 + ZSI6ICJ0ZXN0UGFzc3dvcmQwIn0sICJwdWJsaWNJcEFkZHJlc3NUeXBlIjogeyJ2YWx1ZSI6ICJu + b25lIn0sICJwcml2YXRlSXBBZGRyZXNzQWxsb2NhdGlvbiI6IHsidmFsdWUiOiAiRHluYW1pYyJ9 + LCAicHVibGljSXBBZGRyZXNzQWxsb2NhdGlvbiI6IHsidmFsdWUiOiAiRHluYW1pYyJ9LCAib3NQ + dWJsaXNoZXIiOiB7InZhbHVlIjogIkNhbm9uaWNhbCJ9LCAiX2FydGlmYWN0c0xvY2F0aW9uIjog + eyJ2YWx1ZSI6ICJodHRwczovL2F6dXJlc2RrY2kuYmxvYi5jb3JlLndpbmRvd3MubmV0L3RlbXBs + YXRlaG9zdC9DcmVhdGVWTSJ9LCAiYWRtaW5Vc2VybmFtZSI6IHsidmFsdWUiOiAidWJ1bnR1In0s + ICJuYW1lIjogeyJ2YWx1ZSI6ICJ2bS1zaG93In0sICJvc0Rpc2tOYW1lIjogeyJ2YWx1ZSI6ICJv + c2Rpc2tpbWFnZSJ9LCAic3VibmV0SXBBZGRyZXNzUHJlZml4IjogeyJ2YWx1ZSI6ICIxMC4wLjAu + MC8yNCJ9LCAiYXZhaWxhYmlsaXR5U2V0VHlwZSI6IHsidmFsdWUiOiAibm9uZSJ9LCAibG9jYXRp + b24iOiB7InZhbHVlIjogIndlc3R1cyJ9LCAib3NUeXBlIjogeyJ2YWx1ZSI6ICJDdXN0b20ifSwg + Im9zU0tVIjogeyJ2YWx1ZSI6ICIxNC4wNC40LUxUUyJ9fX19 + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['1176'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-list-sizes?api-version=2015-11-01 + response: + body: {string: '{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-list-sizes","name":"azurecli-test-deployment-vm-list-sizes","properties":{"templateLink":{"uri":"https://azuresdkci.blob.core.windows.net/templatehost/CreateVM/azuredeploy.json","contentVersion":"1.0.0.0"},"parameters":{"_artifactsLocation":{"type":"String","value":"https://azuresdkci.blob.core.windows.net/templatehost/CreateVM"},"adminPassword":{"type":"SecureString"},"adminUsername":{"type":"String","value":"ubuntu"},"authenticationType":{"type":"String","value":"password"},"availabilitySetId":{"type":"String","value":""},"availabilitySetType":{"type":"String","value":"none"},"dnsNameForPublicIP":{"type":"String","value":""},"dnsNameType":{"type":"String","value":"none"},"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"vm-show"},"osDiskName":{"type":"String","value":"osdiskimage"},"osDiskUri":{"type":"String","value":"http://vhdstorageu47fs25lwwgcm.blob.core.windows.net/vhds/osdiskimage.vhd"},"osOffer":{"type":"String","value":"UbuntuServer"},"osPublisher":{"type":"String","value":"Canonical"},"osSKU":{"type":"String","value":"14.04.4-LTS"},"osType":{"type":"String","value":"Custom"},"osVersion":{"type":"String","value":"latest"},"privateIpAddressAllocation":{"type":"String","value":"Dynamic"},"publicIpAddressAllocation":{"type":"String","value":"Dynamic"},"publicIpAddressName":{"type":"String","value":"PublicIPvm-show"},"publicIpAddressType":{"type":"String","value":"none"},"size":{"type":"String","value":"Standard_A2"},"sshDestKeyPath":{"type":"String","value":"/home/ubuntu/.ssh/authorized_keys"},"sshKeyValue":{"type":"String","value":""},"storageAccountName":{"type":"String","value":"vhdstorageu47fs25lwwgcm"},"storageAccountType":{"type":"String","value":"new"},"storageContainerName":{"type":"String","value":"vhds"},"storageRedundancyType":{"type":"String","value":"Standard_LRS"},"subnetIpAddressPrefix":{"type":"String","value":"10.0.0.0/24"},"subnetName":{"type":"String","value":"Subnetvm-show"},"virtualNetworkIpAddressPrefix":{"type":"String","value":"10.0.0.0/16"},"virtualNetworkName":{"type":"String","value":"VNETvm-show"},"virtualNetworkType":{"type":"String","value":"new"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2016-05-09T06:35:51.7058732Z","duration":"PT0.1590844S","correlationId":"5e0aadac-ada9-4b74-8dbf-e17747bc0692","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/VNetvm-show","resourceType":"Microsoft.Resources/deployments","resourceName":"VNetvm-show"}],"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/NicIpvm-show","resourceType":"Microsoft.Resources/deployments","resourceName":"NicIpvm-show"},{"dependsOn":[{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/vhdstorageu47fs25lwwgcmvm-show","resourceType":"Microsoft.Resources/deployments","resourceName":"vhdstorageu47fs25lwwgcmvm-show"},{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/NicIpvm-show","resourceType":"Microsoft.Resources/deployments","resourceName":"NicIpvm-show"}],"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/VMvm-show","resourceType":"Microsoft.Resources/deployments","resourceName":"VMvm-show"}]}}'} + headers: + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-list-sizes/operationStatuses/08587388311339309658?api-version=2015-11-01'] + Cache-Control: [no-cache] + Content-Length: ['3846'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 06:35:51 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-list-sizes/operationStatuses/08587388311339309658?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 06:36:22 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-list-sizes/operationStatuses/08587388311339309658?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 06:36:52 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-list-sizes/operationStatuses/08587388311339309658?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 06:37:22 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-list-sizes/operationStatuses/08587388311339309658?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 06:37:53 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-list-sizes/operationStatuses/08587388311339309658?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 06:38:22 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-list-sizes/operationStatuses/08587388311339309658?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvV5Pp3k+y2cf/ZL/ByCIe+QWAAAA + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['141'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 06:38:53 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmListSizes/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-list-sizes?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR8Xs + o0cf3W3Wk2ZaF6u2qJbN3Z3J7vmn+w92t3cn5zvb+7NZtp3l03vb08nDvQd75zsP7z/cuVvnTbWu + p/nndbVeNXenZfEmb9pXF7//Ty6eF037uvhB3txd1dVlMcvr5u4XxbSumuq8Hb/SF5u7s3xVVteL + fNk2d7MfrOucgGy3BGXbfbN9udguCd52A4AfjT5aZoucUL51e0JhlddtQX88+sUftfliVWZt/rxY + vsXf67ogYPO2XTWP7goSzezttBhPymoynlZ1Pr4qlrPqqhkv8/aueX1eNe3dkzqnX3/yC3lNUBj/ + dFMtqddptWwJm5+koRNJqYvd8Q7+++iXEEZZTWNo6Stg8PtnhNx5Nm2b59U0wwTg0/Z6hVG+buti + eUHwLrNyjQ8+DFP0ns0WxfJl1jRXVU1z77rKpwRSOzTtvmryWgju2kkLh9J6sl62a35l3c5p0IUM + 4w23H35vZXDAm5dZUWaToiza69d5exYg1n0x8sJNfS2rZY7XZsvmRbbIn1X1y/WkLKZnLze95b1x + 2w7KW8zhFXHsukHrm0hLvNzMqys0rZqnRfMWqGx6oWpm1KpYZBeMjbz0FXh8+B2wFHHU5XzWtFVN + b673H5w3e/fLq6uL6WKAvdD6rtfbmD6QHr88P8/rTf19xfzyOq8vqR2/wnPRzOnPDa+dZERjYq1S + 3nn9e321qfXu/nhnf7y//fzNa2l/0wSerGn0C2lrpXa4OUSradF8VReX9MfZ6ng2I5Fsjsvb8MDT + a5r7YsoAMPrpN/b+TSzCxCbG93irA+EmUtE8MHdBw25q97rNlrOsnv3+x3vcvJk/JZr9Xvn1y6yd + b3rx7rxa5HdFr9wd03t3oVmqmvqb/f5v82uWHfqYQP2kvDIMi5sKXx9PpxWBvIlAxMn6QiAIfUA3 + 0iln6upLJ2QRsmKZ17fp33vvVT5bExmX0+ub+rP0fv6KmZ6MOomqndaXdX5evNsEYJcMFP67u7fv + 3r8J3dfcyuOmy6Ju11n5Im9Ju7/9Ot3vftqHcxMaP/ni9M0gEjdRjmeK3lpUM/x5tpzWOZwJUjYk + HfBhoA/oHSJxixav19NpTiZ/Rt+3xYLYOlus6PO9nd1Pt3fub+88fLPz6aN7B4/2Ph3fe/iAnKn7 + P0VNZ+taJfujl2/2vri3Pz64v3Nw/+DBa/qSdGydk16h72H/Prqf72TZLJtu0z8Pt/cnD/a3D2aT + 8+1898GD/QeT6c6nD/foNUYPLtZHj773i9miNKtsCiQjLhe1p7ng30ETecf/hF4TRwbDR3OjjNB0 + uS7L7/8S+o9Gkq/y5SxfTtmvIiDyQfMljY3++n+LV/mTxACGK8KhE343vOy9IMxHPOaggQj/bxnl + Cyhvg5jD+usOMwD3S0b/b51b6ElRkYGeNoi7YX1dOtzQASjz/xZaBFPmBvJ1Rx6A+38Tp//kFwYr + h/PXHaSDhRFW63a1pmaPfjHZAfnDwnFs7zo5qRbUJL+rhuaLbDon405caWAa7nCvkPaAMbpL5hI/ + zyhCrCnwo5d+8gui+C3e1M70T3ovMHq9114L995VLla3hXCMMzbR4Zf8kv8HlWFkNxIQAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['1307'] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 06:38:53 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmListSizes/providers/Microsoft.Compute/virtualMachines/vm-show/vmSizes?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UeXWbnOP3qUfg9/pSl/iOejZbbA5x+9brPlLKtnv//xzkcj9+16McnrL89PqjpvqNmu+6pqnhbN + 29fFD/Kz5RdP8N3O/oP79/dcC3qlWtfTvNNub2f/YMe1WuSLqr7W7x58euB9k717mrUZXj+p1suW + vt+VL3+JNto0jN2f5WE82P10cBi7Dx56ACLj2JMvbzOOvQ3j8Dr52uPYvXewtz80kHv3D/a9r/oD + 2ZcvbzOQexsG4nXytQey93D3YHAgmC3vq/5ADuTL2wzk/oaBeGh+7YFsnJHd/Xv3PvW+64/kPaZk + f8NIPHJ97ZF8uvvw/t7XH8nup/LtbYby6Yah/Kxz197Bpw88EJGhvAd7Pdgwkp/1Sbn/4N6+R67I + SG6elCdZU0z/P25HdAw/20Zkf+fhp0Nj+HAjooP42bYgn+7uD0rGhxsQHcTPtvXY3ds7GGanD7Ye + OoqfbYW7t3//wTBDfZMK9+nu73+5ibG+Cem4v7u3MzSYGxnrRulwQ9nbPBQP0a89lN0dMulDY7mR + vW4UEjeWe5vH4tHsa4+FFe/QWG5mshtlxQ1mf/NgPKJ97cGwBh4azM12/X0k5v7m0ex6ZPvawznY + fTgsMzcb93vvITW7N2gAD9mvPZyNYnMzq72H3OzeoAQ8un3t0WwUnJt57T0EZ/cGNfCzLjk3s9r7 + SM7uDYrgZ190dnf3Pz3wqBYZ0HvJzg26wPfPv/aAmKM8QOGAIDz+l/0B7e/It78EP77/Gye/5P8B + tM+Gm0sSAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Mon, 09 May 2016 06:38:54 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmListSizes?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:38:54 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:39:09 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:39:24 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:39:40 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:39:56 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:40:11 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:40:26 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:40:41 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:40:57 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:41:12 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:41:27 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:41:42 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:41:58 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:42:13 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:42:28 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:42:43 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:42:59 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:43:14 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:43:30 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:43:45 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:44:00 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:44:15 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:44:30 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:44:46 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:45:00 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:45:17 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTUxJU1RTSVpFUy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Mon, 09 May 2016 06:45:31 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_show.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_show.yaml new file mode 100644 index 00000000000..1e2a3c976d4 --- /dev/null +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_show.yaml @@ -0,0 +1,848 @@ +interactions: +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmShow?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['108'] + Content-Type: [application/json; charset=utf-8] + Date: ['Tue, 10 May 2016 00:18:51 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-failure-cause: [gateway] + status: {code: 404, message: Not Found} +- request: + body: !!binary | + eyJsb2NhdGlvbiI6ICJ3ZXN0dXMifQ== + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['22'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmShow?api-version=2015-11-01 + response: + body: {string: '{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmShow","name":"cliTestRg_VmShow","location":"westus","properties":{"provisioningState":"Succeeded"}}'} + headers: + Cache-Control: [no-cache] + Content-Length: ['185'] + Content-Type: [application/json; charset=utf-8] + Date: ['Tue, 10 May 2016 00:18:51 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} +- request: + body: !!binary | + eyJwcm9wZXJ0aWVzIjogeyJtb2RlIjogIkluY3JlbWVudGFsIiwgInBhcmFtZXRlcnMiOiB7Im9z + UHVibGlzaGVyIjogeyJ2YWx1ZSI6ICJDYW5vbmljYWwifSwgInN0b3JhZ2VSZWR1bmRhbmN5VHlw + ZSI6IHsidmFsdWUiOiAiU3RhbmRhcmRfTFJTIn0sICJvc1R5cGUiOiB7InZhbHVlIjogIkN1c3Rv + bSJ9LCAib3NEaXNrTmFtZSI6IHsidmFsdWUiOiAib3NkaXNraW1hZ2UifSwgInZpcnR1YWxOZXR3 + b3JrVHlwZSI6IHsidmFsdWUiOiAibmV3In0sICJhdXRoZW50aWNhdGlvblR5cGUiOiB7InZhbHVl + IjogInBhc3N3b3JkIn0sICJuYW1lIjogeyJ2YWx1ZSI6ICJ2bS1zaG93In0sICJhZG1pblBhc3N3 + b3JkIjogeyJ2YWx1ZSI6ICJ0ZXN0UGFzc3dvcmQwIn0sICJ2aXJ0dWFsTmV0d29ya0lwQWRkcmVz + c1ByZWZpeCI6IHsidmFsdWUiOiAiMTAuMC4wLjAvMTYifSwgInB1YmxpY0lwQWRkcmVzc1R5cGUi + OiB7InZhbHVlIjogIm5vbmUifSwgIm9zVmVyc2lvbiI6IHsidmFsdWUiOiAibGF0ZXN0In0sICJv + c1NLVSI6IHsidmFsdWUiOiAiMTQuMDQuNC1MVFMifSwgImF2YWlsYWJpbGl0eVNldFR5cGUiOiB7 + InZhbHVlIjogIm5vbmUifSwgIl9hcnRpZmFjdHNMb2NhdGlvbiI6IHsidmFsdWUiOiAiaHR0cHM6 + Ly9henVyZXNka2NpLmJsb2IuY29yZS53aW5kb3dzLm5ldC90ZW1wbGF0ZWhvc3QvQ3JlYXRlVk0i + fSwgInByaXZhdGVJcEFkZHJlc3NBbGxvY2F0aW9uIjogeyJ2YWx1ZSI6ICJEeW5hbWljIn0sICJv + c09mZmVyIjogeyJ2YWx1ZSI6ICJVYnVudHVTZXJ2ZXIifSwgInN0b3JhZ2VBY2NvdW50VHlwZSI6 + IHsidmFsdWUiOiAibmV3In0sICJzdG9yYWdlQ29udGFpbmVyTmFtZSI6IHsidmFsdWUiOiAidmhk + cyJ9LCAicHVibGljSXBBZGRyZXNzQWxsb2NhdGlvbiI6IHsidmFsdWUiOiAiRHluYW1pYyJ9LCAi + c3VibmV0SXBBZGRyZXNzUHJlZml4IjogeyJ2YWx1ZSI6ICIxMC4wLjAuMC8yNCJ9LCAibG9jYXRp + b24iOiB7InZhbHVlIjogIndlc3R1cyJ9LCAiYWRtaW5Vc2VybmFtZSI6IHsidmFsdWUiOiAidWJ1 + bnR1In0sICJzaXplIjogeyJ2YWx1ZSI6ICJTdGFuZGFyZF9BMiJ9fSwgInRlbXBsYXRlTGluayI6 + IHsidXJpIjogImh0dHBzOi8vYXp1cmVzZGtjaS5ibG9iLmNvcmUud2luZG93cy5uZXQvdGVtcGxh + dGVob3N0L0NyZWF0ZVZNL2F6dXJlZGVwbG95Lmpzb24ifX19 + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['1176'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-show?api-version=2015-11-01 + response: + body: {string: '{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-show","name":"azurecli-test-deployment-vm-show","properties":{"templateLink":{"uri":"https://azuresdkci.blob.core.windows.net/templatehost/CreateVM/azuredeploy.json","contentVersion":"1.0.0.0"},"parameters":{"_artifactsLocation":{"type":"String","value":"https://azuresdkci.blob.core.windows.net/templatehost/CreateVM"},"adminPassword":{"type":"SecureString"},"adminUsername":{"type":"String","value":"ubuntu"},"authenticationType":{"type":"String","value":"password"},"availabilitySetId":{"type":"String","value":""},"availabilitySetType":{"type":"String","value":"none"},"dnsNameForPublicIP":{"type":"String","value":""},"dnsNameType":{"type":"String","value":"none"},"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"vm-show"},"osDiskName":{"type":"String","value":"osdiskimage"},"osDiskUri":{"type":"String","value":"http://vhdstorageu47fs25lwwgcm.blob.core.windows.net/vhds/osdiskimage.vhd"},"osOffer":{"type":"String","value":"UbuntuServer"},"osPublisher":{"type":"String","value":"Canonical"},"osSKU":{"type":"String","value":"14.04.4-LTS"},"osType":{"type":"String","value":"Custom"},"osVersion":{"type":"String","value":"latest"},"privateIpAddressAllocation":{"type":"String","value":"Dynamic"},"publicIpAddressAllocation":{"type":"String","value":"Dynamic"},"publicIpAddressName":{"type":"String","value":"PublicIPvm-show"},"publicIpAddressType":{"type":"String","value":"none"},"size":{"type":"String","value":"Standard_A2"},"sshDestKeyPath":{"type":"String","value":"/home/ubuntu/.ssh/authorized_keys"},"sshKeyValue":{"type":"String","value":""},"storageAccountName":{"type":"String","value":"vhdstorageu47fs25lwwgcm"},"storageAccountType":{"type":"String","value":"new"},"storageContainerName":{"type":"String","value":"vhds"},"storageRedundancyType":{"type":"String","value":"Standard_LRS"},"subnetIpAddressPrefix":{"type":"String","value":"10.0.0.0/24"},"subnetName":{"type":"String","value":"Subnetvm-show"},"virtualNetworkIpAddressPrefix":{"type":"String","value":"10.0.0.0/16"},"virtualNetworkName":{"type":"String","value":"VNETvm-show"},"virtualNetworkType":{"type":"String","value":"new"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2016-05-10T00:18:53.4692153Z","duration":"PT0.169578S","correlationId":"23230738-17fd-4cb0-b0de-07129272edbe","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/VNetvm-show","resourceType":"Microsoft.Resources/deployments","resourceName":"VNetvm-show"}],"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/NicIpvm-show","resourceType":"Microsoft.Resources/deployments","resourceName":"NicIpvm-show"},{"dependsOn":[{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/vhdstorageu47fs25lwwgcmvm-show","resourceType":"Microsoft.Resources/deployments","resourceName":"vhdstorageu47fs25lwwgcmvm-show"},{"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/NicIpvm-show","resourceType":"Microsoft.Resources/deployments","resourceName":"NicIpvm-show"}],"id":"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/VMvm-show","resourceType":"Microsoft.Resources/deployments","resourceName":"VMvm-show"}]}}'} + headers: + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-show/operationStatuses/08587387673521781450?api-version=2015-11-01'] + Cache-Control: [no-cache] + Content-Length: ['3803'] + Content-Type: [application/json; charset=utf-8] + Date: ['Tue, 10 May 2016 00:18:53 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-show/operationStatuses/08587387673521781450?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Tue, 10 May 2016 00:19:23 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-show/operationStatuses/08587387673521781450?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Tue, 10 May 2016 00:19:53 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-show/operationStatuses/08587387673521781450?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Tue, 10 May 2016 00:20:23 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-show/operationStatuses/08587387673521781450?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Tue, 10 May 2016 00:20:53 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-show/operationStatuses/08587387673521781450?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvVovl8Xy4qNf8v8Aicy9SRQAAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['140'] + Content-Type: [application/json; charset=utf-8] + Date: ['Tue, 10 May 2016 00:21:24 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-show/operationStatuses/08587387673521781450?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR02b + tevmo0cfvV5Pp3k+y2cf/ZL/ByCIe+QWAAAA + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['141'] + Content-Type: [application/json; charset=utf-8] + Date: ['Tue, 10 May 2016 00:21:54 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 vmcreationclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmShow/providers/Microsoft.Resources/deployments/azurecli-test-deployment-vm-show?api-version=2015-11-01 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR8Xs + o0cf3W3Wk2ZaF6u2qJbN3Z3J7vmn+w92t3cn5zvb+7NZtp3l03vb08nDvQd75zsP7z/cuVvnTbWu + p/nndbVeNXenZfEmb9pXF7//Ty5ez6uru6u6uixmed3c/aKY1lVTnbfjV/pOc3eWr8rqepEv2+Zu + 9oN1ndP72y0B2HbfbF8uthsC9dHoo2W2yAnPW7Skbld53RZ589GjX/xRmy9WZdbmz4vlW/y9rgsC + M2/bVfPornTczN5Oi/GkrCbjaVXn46tiOauumvEyb++a1+dV0949qXP69Se/kNek8/FPN9WSep1W + y5bw+EkaLlGQutgd7+C/j34JYZTVhH1LXwGD3z8j5M6zads8r6YZ6I1P2+sVxve6rYvlBcG7zMo1 + PvgwTNF7NlsUy5dZ01xVNU216yqfEkjt0LT7qslrIbVrJy0cSuvJetmu+ZV1O6dBFzKMN9x++L2V + wQFvXmZFmU2KsmivX+ftWYBY98XICzf1tayWOV6bLZsX2SJ/VtUv15OymJ693PSW98ZtOyhvMYdX + xKvrBq1vIq3hYmpaNU+L5i1Q2fRC1cyoVbHILhgbeekr8PjwO2Ap4qjL+axpq5reXO8/OG/27pdX + VxfTxQB7ofVdr7cxfSA9fnl+nteb+vuK+eV1Xl9SO36F56KZ058bXjvJiMbEWqW88/r3+mpT6939 + 8c7+eH/7+ZvX0v6mCTxZ0+gX0tZK7XBziFbTovmqLi7pj7PV8WxGItkcl7fhgafXNPfFlAFg9NNv + 7P2bWISJTYzv8VYHwk2konlg7mqKH9Cfw+1et9lyltWz3/94j5s386dEs98rv36ZtfNNL96dV4v8 + ruiVu2N67y40S1VTf7Pf/21+zbJDHxOon5RXhmFxU+Hr4+m0IpA3EYg4WV8IBKEP6EY65UxdfemE + LEJWLPP6Nv17773KZ2si43J6fVN/lt7PXzHTkw0nUbXT+rLOz4t3mwDskoHCf3f39t37N6H7mlt5 + 3HRZ1O06K1/kLWn3t1+n+91P+3BuQuMnX5y+GUTiJsrxTNFbi2qGP8+W0zqHG0HKhqQDfgv0Ab1D + JG7R4vV6Os3J5M/o+7ZYEFtnixV9vrez++n2zv3t3Z03OzuP9nYf3b83/nTn/sHuwcFPUdPZulbJ + /ujlm3tf7Izv7Xy6e7B7/zV9Ryq2zkmt0Ncwfx/t3du7t/Pg3sH27oPz2fb+dLKzPdmZ5ds7D3b3 + 4HXls0lOrzF28Ko+evS9X8wGpVllU+AY8bKoPU0F/w6SyDv+J/Sa+DEYPZobXYSmy3VZfv+X0H80 + kHyVL2f5cspuFQGRD5ovaWj01/8LfMifpKk3/BCOmlC74WXvBWE74i4HDeP/f8EAX0BjG5wcwl93 + hAG4XzL6f+GMQi+KSgz0ssHZjejrkuCGDkCU/xeQIZgoN4avO+gA3P9LWPsnvzAIOXS/7vgcLAyu + WrerNTV79ItJ28sfFo7jc9fJSbWgJvldNSdfZNM5mXDiRQPT8IR7hTQFTM5dMor4eUZxYE3hHb30 + k18QsW/xpnamf9J7gWnrvfZaePau8q46J4RjnJ2JDr/kl/w/3yMKoecPAAA= + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Length: ['1298'] + Content-Type: [application/json; charset=utf-8] + Date: ['Tue, 10 May 2016 00:21:54 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestRg_VmShow/providers/Microsoft.Compute/virtualMachines/vm-show?api-version=2015-06-15&$expand=instanceView + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UerulrldVvkzUePUv6IPrxcnM3oz492Dya755P8/vbs/sHB9v7e9NPtyfn5/na2f//Tg093ptPs + YOejkb40z+rZVVbnL+vqvChzel/B0XeXi9fFD/DRR6/bbDmjlr//8d5H8vUvMQCatqqzi+j7xYK+ + eJWf53W+nAZf0Zer9aQsmnle0+cfnWTLallMs9Lgheej6pxexddfTdbLdv06ry/pb79F83aN73f3 + xzv74/3t529eB19T86aolmhSZm3etIq8Q58aVc3TonlLbXzsqubN9Qoof/S8WK7fBVCX2YK/qZoZ + vXi52G7m1VXQYlrn1N2Xq1Y7f1ZXizMQI2h1Ocd0eb3SZ+u6oM8+mrft6tHdu9RCybvef3De7N0v + r64upovxpKwm42lV5+OrYjmrrprxMm+59V1Biik/pg/sgP0hUz/TbDovlhfo61Wezb5bF21u27qW + H82yNgN5wGff+758bL4mAsRmfVotVus2r18omXoE+iibLYrlV01eG0queX69FiWIflItz4uLdZ0p + GW0X1IAGmU3K/GXWNFdVPTtet/N82RIHadvzrGxy094gTO81Oc1NGx0NkZBAvfWGZD46W9JwzrMp + pO17v/ijgqbto7vNetJM64LnuLm7QyL36f6D3e3dyfnO9v5slm1n+fTe9nTycO/B3vnOw/sPd+7W + eVOt62n+eV2tV83daVm8IZ58dfH7/+TiNVHoLkn1ZTEjnr37RTGtq6Y6b8cvBIW7PVTu/uQXL4qp + Ie4v+b4dB0MB29P8ktzSvBKFX6+n0zyf5TND5I+KZUNCPc1/ssivqIUlLs3X8QXR0v/MffqThB2B + pi8/+u4xiwZ/vL033hnv7hvgeEgxZO26Ac3S77mPUx8qHuKXGaNIhA/xvtt0kTbPR2V+mZd46Wx5 + XvW+JeZYldk1gKzR/Udg8etes0XeNCQmaPD5miaCR5IWTVqvl0AiJZ2XZoQCzTH9tcyv0qnPks24 + B7IthKH3dnY/3d65v72782Zn59He7qN7B5/QLzs7Vsbw/BL3x/c9SB/l79p8CUp8mzAoieIE0rAr + vWWbYqAimeaTDnVvVlXUZmieOrDwfJ25orc2zhZ9T7iF8+WDTzdBHqD3zqPdnfH9BzsH9x7sR+hO + NPT/tJT1PnfzMUCfgDbvT5dNNPl69Biixe6j/Z3xzv1P790/+LRHC8dLgyOqrvIamOR3VSw63b7X + QH7yCyNcPhLmV50I/lswY12b/tCU7YmYrruXRd2us/ILNpKkagPBsUIVftqqv3AjNG1fVtZYfXRF + mBGB5Is2uwCtdDoMDY01/ckAGFOR6PVL/h8UK17mFwoAAA== + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Tue, 10 May 2016 00:21:55 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliTestRg_VmShow?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:21:56 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:22:11 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:22:26 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:22:42 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:22:56 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:23:13 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:23:27 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:23:43 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:23:59 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:24:13 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:24:29 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:24:43 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:25:00 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:25:14 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:25:30 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:25:45 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:26:00 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:26:15 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:26:30 GMT'] + Expires: ['-1'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01'] + Pragma: [no-cache] + Retry-After: ['15'] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 resourcemanagementclient/2015-11-01 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUUkc6NUZWTVNIT1ctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-11-01 + response: + body: {string: ''} + headers: + Cache-Control: [no-cache] + Content-Length: ['0'] + Date: ['Tue, 10 May 2016 00:26:46 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + status: {code: 200, message: OK} +version: 1 diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_size_list.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_size_list.yaml new file mode 100644 index 00000000000..2f13e6c5784 --- /dev/null +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/recordings/test_vm_size_list.yaml @@ -0,0 +1,50 @@ +interactions: +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 requests/2.9.1 msrest/0.2.0 msrest_azure/0.2.1 computemanagementclient/2015-06-15 + Azure-SDK-For-Python AZURECLI_0.0.32] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2015-06-15 + response: + body: + string: !!binary | + H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl + VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xb5yk + 6UeXWbnOP3qUfg9/pSl/iOejZbbA5x+9brPlLKtnv//xzkcj9+16McnrL89PqjpvqNmu+6pqnhbN + 29fFD/Kz5RdP8N3O/oP79/dcC3qlWtfTvNNub2f/YMe1WuSLqr7W7x58euB9k717mrUZXj+p1suW + vt+VL3+JNto0jN2f5WE82P10cBi7Dx56ACLj2JMvbzOOvQ3j8Dr52uPYvXewtz80kHv3D/a9r/oD + 2ZcvbzOQexsG4nXytQey93D3YHAgmC3vq/5ADuTL2wzk/oaBeGh+7YFsnJHd/Xv3PvW+64/kPaZk + f8NIPHJ97ZF8uvvw/t7XH8nup/LtbYby6Yah/Kxz197Bpw88EJGhvAd7Pdgwkp/1Sbn/4N6+R67I + SG6elCdZU0z/P25HdAw/20Zkf+fhp0Nj+HAjooP42bYgn+7uD0rGhxsQHcTPtvXY3ds7GGanD7Ye + OoqfbYW7t3//wTBDfZMK9+nu73+5ibG+Cem4v7u3MzSYGxnrRulwQ9nbPBQP0a89lN0dMulDY7mR + vW4UEjeWe5vH4tHsa4+FFe/QWG5mshtlxQ1mf/NgPKJ97cGwBh4azM12/X0k5v7m0ex6ZPvawznY + fTgsMzcb93vvITW7N2gAD9mvPZyNYnMzq72H3OzeoAQ8un3t0WwUnJt57T0EZ/cGNfCzLjk3s9r7 + SM7uDYrgZ190dnf3Pz3wqBYZ0HvJzg26wPfPv/aAmKM8QOGAIDz+l/0B7e/It7cZ0OufbU+5YyP9 + oXyTrsDrjbPivvra42C6u1bBQDpj7A/kPfTZ659th5m5y7UKBtIdZH8k76HLXv9sO81dXeWPpDvK + /kjeR4+93t0kJl4/X3ssXXz9sdw8K+/DX7ubJMUj59ceyodNy/sw2O4mWfkmOKxnPfyxdMfZH8v7 + sdgmcflGDOXe3sN7DzxAwWh6Q+0P570M5abBuK++9lh+aCHmhnF4WH7tcexucpS/SbuySVQ8an3t + gWz0kW/WYO8h9pvkxCPX1x7JRv/4ZgX2PkK/u0lMvG6+9lh2N7HXzbPyHvz1s25WNjLYzdPyHgz2 + s25WNnLYN2tWfvatyg8x/Pr8Z1tc7j28t+cTJRjLzTx2e3H5/GZpofc+YCQPDj7dv+c1C0ZyM4vd + Xlo+/9kWlt37D4jyPrr+UG7BYO8hLp//rEvLvV3K9O/5CPuj6Xlo/dG8j7hsWvD2meNrj+ZTWl3d + v+8j7I9m//7BAx9IZDSfvofIbExVeN187dF0xcIfC7HgNyf8G5MVHgZfeyQ9qfCH0h1mfyjvIf0b + 0xUeBl97KD2R8IfSG2d/LO8j/RszFt+I+PdEwh9Nb6j90byP9L/+WRf/h7sP7u/4rOSPpjfU/mje + Q/qPDzYMxuOArz2Wew93w2jLH8vNIvMebHb8cMNQvhEu2ziWb1Zmjnd3NozG6+ZnZzDf7MTsbrIw + /++aGfz4/m+c/JL/B68cNMsmKgAA + headers: + Cache-Control: [no-cache] + Content-Encoding: [gzip] + Content-Type: [application/json; charset=utf-8] + Date: ['Sat, 07 May 2016 19:20:03 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Vary: [Accept-Encoding] + status: {code: 200, message: OK} +version: 1