diff --git a/src/azure-cli-core/azure/cli/core/_profile.py b/src/azure-cli-core/azure/cli/core/_profile.py index 45a9a9089d7..12b57c3cce0 100644 --- a/src/azure-cli-core/azure/cli/core/_profile.py +++ b/src/azure-cli-core/azure/cli/core/_profile.py @@ -34,7 +34,12 @@ _IS_DEFAULT_SUBSCRIPTION = 'isDefault' _SUBSCRIPTION_ID = 'id' _SUBSCRIPTION_NAME = 'name' +# Tenant of the token which is used to list the subscription _TENANT_ID = 'tenantId' +# Home tenant of the subscription, which maps to tenantId in 'Subscriptions - List REST API' +# https://docs.microsoft.com/en-us/rest/api/resources/subscriptions/list +_HOME_TENANT_ID = 'homeTenantId' +_MANAGED_BY_TENANTS = 'managedByTenants' _USER_ENTITY = 'user' _USER_NAME = 'name' _CLOUD_SHELL_ID = 'cloudShellID' @@ -248,7 +253,7 @@ def _normalize_properties(self, user, subscriptions, is_service_principal, cert_ except (UnicodeEncodeError, UnicodeDecodeError): # mainly for Python 2.7 with ascii as the default encoding display_name = re.sub(r'[^\x00-\x7f]', lambda x: '?', display_name) - consolidated.append({ + subscription_dict = { _SUBSCRIPTION_ID: s.id.rpartition('/')[2], _SUBSCRIPTION_NAME: display_name, _STATE: s.state.value, @@ -259,7 +264,15 @@ def _normalize_properties(self, user, subscriptions, is_service_principal, cert_ _IS_DEFAULT_SUBSCRIPTION: False, _TENANT_ID: s.tenant_id, _ENVIRONMENT_NAME: self.cli_ctx.cloud.name - }) + } + # for Subscriptions - List REST API 2019-06-01's subscription account + if subscription_dict[_SUBSCRIPTION_NAME] != _TENANT_LEVEL_ACCOUNT_NAME: + if hasattr(s, 'home_tenant_id'): + subscription_dict[_HOME_TENANT_ID] = s.home_tenant_id + if hasattr(s, 'managed_by_tenants'): + subscription_dict[_MANAGED_BY_TENANTS] = [{_TENANT_ID: t.tenant_id} for t in s.managed_by_tenants] + + consolidated.append(subscription_dict) if cert_sn_issuer_auth: consolidated[-1][_USER_ENTITY][_SERVICE_PRINCIPAL_CERT_SN_ISSUER_AUTH] = True @@ -866,7 +879,21 @@ def _find_using_common_tenant(self, access_token, resource): subscriptions = self._find_using_specific_tenant( tenant_id, temp_credentials[_ACCESS_TOKEN]) - all_subscriptions.extend(subscriptions) + + # When a subscription can be listed by multiple tenants, only the first appearance is retained + for sub_to_add in subscriptions: + add_sub = True + for sub_to_compare in all_subscriptions: + if sub_to_add.subscription_id == sub_to_compare.subscription_id: + logger.warning("Subscription %s '%s' can be accessed from tenants %s(default) and %s. " + "To select a specific tenant when accessing this subscription, " + "please include --tenant in 'az login'.", + sub_to_add.subscription_id, sub_to_add.display_name, + sub_to_compare.tenant_id, sub_to_add.tenant_id) + add_sub = False + break + if add_sub: + all_subscriptions.append(sub_to_add) return all_subscriptions @@ -878,6 +905,9 @@ def _find_using_specific_tenant(self, tenant, access_token): subscriptions = client.subscriptions.list() all_subscriptions = [] for s in subscriptions: + # map tenantId from REST API to homeTenantId + if hasattr(s, "tenant_id"): + setattr(s, 'home_tenant_id', s.tenant_id) setattr(s, 'tenant_id', tenant) all_subscriptions.append(s) self.tenants.append(tenant) diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index 29b75894678..ab290a6d3ef 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -136,7 +136,7 @@ def default_api_version(self): ResourceType.MGMT_RESOURCE_LOCKS: '2016-09-01', ResourceType.MGMT_RESOURCE_POLICY: '2019-09-01', ResourceType.MGMT_RESOURCE_RESOURCES: '2019-07-01', - ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS: '2016-06-01', + ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS: '2019-06-01', ResourceType.MGMT_NETWORK_DNS: '2018-05-01', ResourceType.MGMT_KEYVAULT: '2018-02-14', ResourceType.MGMT_AUTHORIZATION: SDKProfile('2018-09-01-preview', { diff --git a/src/azure-cli-core/azure/cli/core/tests/test_profile.py b/src/azure-cli-core/azure/cli/core/tests/test_profile.py index ace6f490aa6..0dba7cd77d6 100644 --- a/src/azure-cli-core/azure/cli/core/tests/test_profile.py +++ b/src/azure-cli-core/azure/cli/core/tests/test_profile.py @@ -15,7 +15,7 @@ from adal import AdalError from azure.mgmt.resource.subscriptions.models import \ - (SubscriptionState, Subscription, SubscriptionPolicies, SpendingLimit) + (SubscriptionState, Subscription, SubscriptionPolicies, SpendingLimit, ManagedByTenant) from azure.cli.core._profile import (Profile, CredsCache, SubscriptionFinder, ServicePrincipalAuth, _AUTH_CTX_FACTORY) @@ -33,10 +33,48 @@ def setUpClass(cls): cls.id1 = 'subscriptions/1' cls.display_name1 = 'foo account' cls.state1 = SubscriptionState.enabled + cls.managed_by_tenants = [ManagedByTenantStub('00000003-0000-0000-0000-000000000000'), + ManagedByTenantStub('00000004-0000-0000-0000-000000000000')] + # Dummy Subscription from SDK azure.mgmt.resource.subscriptions.v2019_06_01.operations._subscriptions_operations.SubscriptionsOperations.list + # tenant_id denotes home tenant + # Must be deepcopied before used as mock_arm_client.subscriptions.list.return_value + cls.subscription1_raw = SubscriptionStub(cls.id1, + cls.display_name1, + cls.state1, + tenant_id=cls.tenant_id, + managed_by_tenants=cls.managed_by_tenants) + # Dummy result of azure.cli.core._profile.SubscriptionFinder._find_using_specific_tenant + # home_tenant_id is mapped from tenant_id + # tenant_id denotes token tenant cls.subscription1 = SubscriptionStub(cls.id1, cls.display_name1, cls.state1, - cls.tenant_id) + tenant_id=cls.tenant_id, + managed_by_tenants=cls.managed_by_tenants, + home_tenant_id=cls.tenant_id) + # Dummy result of azure.cli.core._profile.Profile._normalize_properties + cls.subscription1_normalized = { + 'environmentName': 'AzureCloud', + 'id': '1', + 'name': cls.display_name1, + 'state': cls.state1.value, + 'user': { + 'name': cls.user1, + 'type': 'user' + }, + 'isDefault': False, + 'tenantId': cls.tenant_id, + 'homeTenantId': cls.tenant_id, + 'managedByTenants': [ + { + "tenantId": "00000003-0000-0000-0000-000000000000" + }, + { + "tenantId": "00000004-0000-0000-0000-000000000000" + } + ], + } + cls.raw_token1 = 'some...secrets' cls.token_entry1 = { "_clientId": "04b07795-8ddb-461a-bbee-02f9e1bf7b46", @@ -56,10 +94,29 @@ def setUpClass(cls): cls.id2 = 'subscriptions/2' cls.display_name2 = 'bar account' cls.state2 = SubscriptionState.past_due + cls.subscription2_raw = SubscriptionStub(cls.id2, + cls.display_name2, + cls.state2, + tenant_id=cls.tenant_id) cls.subscription2 = SubscriptionStub(cls.id2, cls.display_name2, cls.state2, - cls.tenant_id) + tenant_id=cls.tenant_id, + home_tenant_id=cls.tenant_id) + cls.subscription2_normalized = { + 'environmentName': 'AzureCloud', + 'id': '2', + 'name': cls.display_name2, + 'state': cls.state2.value, + 'user': { + 'name': cls.user2, + 'type': 'user' + }, + 'isDefault': False, + 'tenantId': cls.tenant_id, + 'homeTenantId': cls.tenant_id, + 'managedByTenants': [], + } cls.test_msi_tenant = '54826b22-38d6-4fb2-bad9-b7b93a3e9c5a' cls.test_msi_access_token = ('eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlZXVkljMVdEMVRrc2JiMzAxc2FzTTVrT3E1' 'USIsImtpZCI6IlZXVkljMVdEMVRrc2JiMzAxc2FzTTVrT3E1USJ9.eyJhdWQiOiJodHRwczovL21hbmF' @@ -91,18 +148,7 @@ def test_normalize(self): consolidated = profile._normalize_properties(self.user1, [self.subscription1], False) - expected = { - 'environmentName': 'AzureCloud', - 'id': '1', - 'name': self.display_name1, - 'state': self.state1.value, - 'user': { - 'name': self.user1, - 'type': 'user' - }, - 'isDefault': False, - 'tenantId': self.tenant_id - } + expected = self.subscription1_normalized self.assertEqual(expected, consolidated[0]) # verify serialization works self.assertIsNotNone(json.dumps(consolidated[0])) @@ -112,7 +158,7 @@ def test_normalize_with_unicode_in_subscription_name(self): storage_mock = {'subscriptions': None} test_display_name = 'sub' + chr(255) polished_display_name = 'sub?' - test_subscription = SubscriptionStub('sub1', + test_subscription = SubscriptionStub('subscriptions/sub1', test_display_name, SubscriptionState.enabled, 'tenant1') @@ -127,7 +173,7 @@ def test_normalize_with_none_subscription_name(self): storage_mock = {'subscriptions': None} test_display_name = None polished_display_name = '' - test_subscription = SubscriptionStub('sub1', + test_subscription = SubscriptionStub('subscriptions/sub1', test_display_name, SubscriptionState.enabled, 'tenant1') @@ -150,18 +196,9 @@ def test_update_add_two_different_subscriptions(self): self.assertEqual(len(storage_mock['subscriptions']), 1) subscription1 = storage_mock['subscriptions'][0] - self.assertEqual(subscription1, { - 'environmentName': 'AzureCloud', - 'id': '1', - 'name': self.display_name1, - 'state': self.state1.value, - 'user': { - 'name': self.user1, - 'type': 'user' - }, - 'isDefault': True, - 'tenantId': self.tenant_id - }) + subscription1_is_default = deepcopy(self.subscription1_normalized) + subscription1_is_default['isDefault'] = True + self.assertEqual(subscription1, subscription1_is_default) # add the second and verify consolidated = profile._normalize_properties(self.user2, @@ -171,18 +208,9 @@ def test_update_add_two_different_subscriptions(self): self.assertEqual(len(storage_mock['subscriptions']), 2) subscription2 = storage_mock['subscriptions'][1] - self.assertEqual(subscription2, { - 'environmentName': 'AzureCloud', - 'id': '2', - 'name': self.display_name2, - 'state': self.state2.value, - 'user': { - 'name': self.user2, - 'type': 'user' - }, - 'isDefault': True, - 'tenantId': self.tenant_id - }) + subscription2_is_default = deepcopy(self.subscription2_normalized) + subscription2_is_default['isDefault'] = True + self.assertEqual(subscription2, subscription2_is_default) # verify the old one stays, but no longer active self.assertEqual(storage_mock['subscriptions'][0]['name'], @@ -293,7 +321,7 @@ def test_get_auth_info_for_logged_in_service_principal(self, mock_auth_context): cli = DummyCli() mock_auth_context.acquire_token_with_client_credentials.return_value = self.token_entry1 mock_arm_client = mock.MagicMock() - mock_arm_client.subscriptions.list.return_value = [self.subscription1] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) storage_mock = {'subscriptions': []} @@ -362,7 +390,7 @@ def test_create_account_with_subscriptions_allow_no_subscriptions_thru_service_p mock_auth_context.acquire_token_with_client_credentials.return_value = self.token_entry1 cli = DummyCli() mock_arm_client = mock.MagicMock() - mock_arm_client.subscriptions.list.return_value = [self.subscription1] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) storage_mock = {'subscriptions': []} @@ -931,7 +959,7 @@ def test_find_subscriptions_thru_username_password(self, mock_auth_context): mock_auth_context.acquire_token.return_value = self.token_entry1 mock_arm_client = mock.MagicMock() mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)] - mock_arm_client.subscriptions.list.return_value = [self.subscription1] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) mgmt_resource = 'https://management.core.windows.net/' # action @@ -996,7 +1024,7 @@ def test_find_subscriptions_in_vm_with_msi_system_assigned(self, mock_get_client class ClientStub: def __init__(self, *args, **kwargs): self.subscriptions = mock.MagicMock() - self.subscriptions.list.return_value = [TestProfile.subscription1] + self.subscriptions.list.return_value = [deepcopy(TestProfile.subscription1_raw)] self.config = mock.MagicMock() self._client = mock.MagicMock() @@ -1072,7 +1100,7 @@ def test_find_subscriptions_in_vm_with_msi_user_assigned_with_client_id(self, mo class ClientStub: def __init__(self, *args, **kwargs): self.subscriptions = mock.MagicMock() - self.subscriptions.list.return_value = [TestProfile.subscription1] + self.subscriptions.list.return_value = [deepcopy(TestProfile.subscription1_raw)] self.config = mock.MagicMock() self._client = mock.MagicMock() @@ -1159,7 +1187,7 @@ def test_find_subscriptions_in_vm_with_msi_user_assigned_with_res_id(self, mock_ class ClientStub: def __init__(self, *args, **kwargs): self.subscriptions = mock.MagicMock() - self.subscriptions.list.return_value = [TestProfile.subscription1] + self.subscriptions.list.return_value = [deepcopy(TestProfile.subscription1_raw)] self.config = mock.MagicMock() self._client = mock.MagicMock() @@ -1205,7 +1233,7 @@ def test_acquire_token(self, resource, username, password, client_id): mock_acquire_token.return_value = self.token_entry1 mock_arm_client = mock.MagicMock() mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)] - mock_arm_client.subscriptions.list.return_value = [self.subscription1] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] cli.cloud.endpoints.active_directory = TEST_ADFS_AUTH_URL finder = SubscriptionFinder(cli, _AUTH_CTX_FACTORY, None, lambda _: mock_arm_client) mgmt_resource = 'https://management.core.windows.net/' @@ -1242,7 +1270,7 @@ def just_raise(ex): mock_arm_client = mock.MagicMock() mock_arm_client.tenants.list.side_effect = lambda: just_raise( ValueError("'tenants.list' should not occur")) - mock_arm_client.subscriptions.list.return_value = [self.subscription1] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) # action subs = finder.find_from_user_account(self.user1, 'bar', self.tenant_id, 'http://someresource') @@ -1258,7 +1286,7 @@ def test_find_subscriptions_through_device_code_flow(self, mock_auth_context): mock_auth_context.acquire_token_with_device_code.return_value = self.token_entry1 mock_arm_client = mock.MagicMock() mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)] - mock_arm_client.subscriptions.list.return_value = [self.subscription1] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) mgmt_resource = 'https://management.core.windows.net/' # action @@ -1280,7 +1308,7 @@ def test_find_subscriptions_through_authorization_code_flow(self, _get_authoriza cli = DummyCli() mock_arm_client = mock.MagicMock() mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)] - mock_arm_client.subscriptions.list.return_value = [self.subscription1] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] token_cache = adal.TokenCache() finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, token_cache, lambda _: mock_arm_client) _get_authorization_code_mock.return_value = { @@ -1314,7 +1342,7 @@ def just_raise(ex): mock_arm_client = mock.MagicMock() mock_arm_client.tenants.list.side_effect = lambda: just_raise( ValueError("'tenants.list' should not occur")) - mock_arm_client.subscriptions.list.return_value = [self.subscription1] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) # action subs = finder.find_through_interactive_flow(self.tenant_id, 'http://someresource') @@ -1327,7 +1355,7 @@ def test_find_subscriptions_from_service_principal_id(self, mock_auth_context): cli = DummyCli() mock_auth_context.acquire_token_with_client_credentials.return_value = self.token_entry1 mock_arm_client = mock.MagicMock() - mock_arm_client.subscriptions.list.return_value = [self.subscription1] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) mgmt_resource = 'https://management.core.windows.net/' # action @@ -1346,7 +1374,7 @@ def test_find_subscriptions_from_service_principal_using_cert(self, mock_auth_co cli = DummyCli() mock_auth_context.acquire_token_with_client_certificate.return_value = self.token_entry1 mock_arm_client = mock.MagicMock() - mock_arm_client.subscriptions.list.return_value = [self.subscription1] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) mgmt_resource = 'https://management.core.windows.net/' @@ -1369,7 +1397,7 @@ def test_find_subscriptions_from_service_principal_using_cert_sn_issuer(self, mo cli = DummyCli() mock_auth_context.acquire_token_with_client_certificate.return_value = self.token_entry1 mock_arm_client = mock.MagicMock() - mock_arm_client.subscriptions.list.return_value = [self.subscription1] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) mgmt_resource = 'https://management.core.windows.net/' @@ -1402,7 +1430,7 @@ def test_refresh_accounts_one_user_account(self, mock_auth_context): mock_auth_context.acquire_token.return_value = self.token_entry1 mock_arm_client = mock.MagicMock() mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)] - mock_arm_client.subscriptions.list.return_value = deepcopy([self.subscription1, self.subscription2]) + mock_arm_client.subscriptions.list.return_value = deepcopy([self.subscription1_raw, self.subscription2_raw]) finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) # action profile.refresh_accounts(finder) @@ -1742,6 +1770,51 @@ def test_detect_adfs_authority_url(self): r = profile.auth_ctx_factory(cli, 'common', None) self.assertEqual(r.authority.url, aad_url + '/common') + @mock.patch('adal.AuthenticationContext', autospec=True) + @mock.patch('azure.cli.core._profile._get_authorization_code', autospec=True) + def test_find_using_common_tenant(self, _get_authorization_code_mock, mock_auth_context): + """When a subscription can be listed by multiple tenants, only the first appearance is retained + """ + import adal + cli = DummyCli() + mock_arm_client = mock.MagicMock() + tenant2 = "00000002-0000-0000-0000-000000000000" + mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id), TenantStub(tenant2)] + + # same subscription but listed from another tenant + subscription2_raw = SubscriptionStub(self.id1, self.display_name1, self.state1, self.tenant_id) + mock_arm_client.subscriptions.list.side_effect = [[deepcopy(self.subscription1_raw)], [subscription2_raw]] + + mgmt_resource = 'https://management.core.windows.net/' + token_cache = adal.TokenCache() + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, token_cache, lambda _: mock_arm_client) + all_subscriptions = finder._find_using_common_tenant(access_token="token1", resource=mgmt_resource) + + self.assertEqual(len(all_subscriptions), 1) + self.assertEqual(all_subscriptions[0].tenant_id, self.tenant_id) + + @mock.patch('adal.AuthenticationContext', autospec=True) + @mock.patch('azure.cli.core._profile._get_authorization_code', autospec=True) + def test_find_using_specific_tenant(self, _get_authorization_code_mock, mock_auth_context): + """ Test tenant_id -> home_tenant_id mapping and token tenant attachment + """ + import adal + cli = DummyCli() + mock_arm_client = mock.MagicMock() + token_tenant = "00000001-0000-0000-0000-000000000000" + home_tenant = "00000002-0000-0000-0000-000000000000" + + subscription_raw = SubscriptionStub(self.id1, self.display_name1, self.state1, tenant_id=home_tenant) + mock_arm_client.subscriptions.list.return_value = [subscription_raw] + + token_cache = adal.TokenCache() + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, token_cache, lambda _: mock_arm_client) + all_subscriptions = finder._find_using_specific_tenant(tenant=token_tenant, access_token="token1") + + self.assertEqual(len(all_subscriptions), 1) + self.assertEqual(all_subscriptions[0].tenant_id, token_tenant) + self.assertEqual(all_subscriptions[0].home_tenant_id, home_tenant) + class FileHandleStub(object): # pylint: disable=too-few-public-methods @@ -1757,14 +1830,27 @@ def __exit__(self, _2, _3, _4): class SubscriptionStub(Subscription): # pylint: disable=too-few-public-methods - def __init__(self, id, display_name, state, tenant_id): # pylint: disable=redefined-builtin + def __init__(self, id, display_name, state, tenant_id, managed_by_tenants=[], home_tenant_id=None): # pylint: disable=redefined-builtin policies = SubscriptionPolicies() policies.spending_limit = SpendingLimit.current_period_off policies.quota_id = 'some quota' super(SubscriptionStub, self).__init__(subscription_policies=policies, authorization_source='some_authorization_source') self.id = id + self.subscription_id = id.split('/')[1] self.display_name = display_name self.state = state + # for a SDK Subscription, tenant_id means home tenant id + # for a _find_using_specific_tenant Subscription, tenant_id means token tenant id + self.tenant_id = tenant_id + self.managed_by_tenants = managed_by_tenants + # if home_tenant_id is None, this denotes a Subscription from SDK + if home_tenant_id: + self.home_tenant_id = home_tenant_id + + +class ManagedByTenantStub(ManagedByTenant): # pylint: disable=too-few-public-methods + + def __init__(self, tenant_id): # pylint: disable=redefined-builtin self.tenant_id = tenant_id diff --git a/src/azure-cli-core/azure/cli/core/tests/test_profile_v2016_06_01.py b/src/azure-cli-core/azure/cli/core/tests/test_profile_v2016_06_01.py new file mode 100644 index 00000000000..cfac9037668 --- /dev/null +++ b/src/azure-cli-core/azure/cli/core/tests/test_profile_v2016_06_01.py @@ -0,0 +1,1744 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +# pylint: disable=protected-access +import json +import os +import sys +import unittest +import mock +import re + +from copy import deepcopy + +from adal import AdalError +from azure.mgmt.resource.subscriptions.v2016_06_01.models import \ + (SubscriptionState, Subscription, SubscriptionPolicies, SpendingLimit) + +from azure.cli.core._profile import (Profile, CredsCache, SubscriptionFinder, + ServicePrincipalAuth, _AUTH_CTX_FACTORY) +from azure.cli.core.mock import DummyCli + +from knack.util import CLIError + + +class TestProfile(unittest.TestCase): + + @classmethod + def setUpClass(cls): + cls.tenant_id = 'microsoft.com' + cls.user1 = 'foo@foo.com' + cls.id1 = 'subscriptions/1' + cls.display_name1 = 'foo account' + cls.state1 = SubscriptionState.enabled + # Dummy Subscription from SDK azure.mgmt.resource.subscriptions.v2016_06_01.operations._subscriptions_operations.SubscriptionsOperations.list + # tenant_id shouldn't be set as tenantId isn't returned by REST API + # Must be deepcopied before used as mock_arm_client.subscriptions.list.return_value + cls.subscription1_raw = SubscriptionStub(cls.id1, + cls.display_name1, + cls.state1) + # Dummy result of azure.cli.core._profile.SubscriptionFinder._find_using_specific_tenant + # tenant_id denotes token tenant + cls.subscription1 = SubscriptionStub(cls.id1, + cls.display_name1, + cls.state1, + cls.tenant_id) + # Dummy result of azure.cli.core._profile.Profile._normalize_properties + cls.subscription1_normalized = { + 'environmentName': 'AzureCloud', + 'id': '1', + 'name': cls.display_name1, + 'state': cls.state1.value, + 'user': { + 'name': cls.user1, + 'type': 'user' + }, + 'isDefault': False, + 'tenantId': cls.tenant_id + } + + cls.raw_token1 = 'some...secrets' + cls.token_entry1 = { + "_clientId": "04b07795-8ddb-461a-bbee-02f9e1bf7b46", + "resource": "https://management.core.windows.net/", + "tokenType": "Bearer", + "expiresOn": "2016-03-31T04:26:56.610Z", + "expiresIn": 3599, + "identityProvider": "live.com", + "_authority": "https://login.microsoftonline.com/common", + "isMRRT": True, + "refreshToken": "faked123", + "accessToken": cls.raw_token1, + "userId": cls.user1 + } + + cls.user2 = 'bar@bar.com' + cls.id2 = 'subscriptions/2' + cls.display_name2 = 'bar account' + cls.state2 = SubscriptionState.past_due + cls.subscription2_raw = SubscriptionStub(cls.id2, + cls.display_name2, + cls.state2) + cls.subscription2 = SubscriptionStub(cls.id2, + cls.display_name2, + cls.state2, + cls.tenant_id) + cls.subscription2_normalized = { + 'environmentName': 'AzureCloud', + 'id': '2', + 'name': cls.display_name2, + 'state': cls.state2.value, + 'user': { + 'name': cls.user2, + 'type': 'user' + }, + 'isDefault': False, + 'tenantId': cls.tenant_id + } + cls.test_msi_tenant = '54826b22-38d6-4fb2-bad9-b7b93a3e9c5a' + cls.test_msi_access_token = ('eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlZXVkljMVdEMVRrc2JiMzAxc2FzTTVrT3E1' + 'USIsImtpZCI6IlZXVkljMVdEMVRrc2JiMzAxc2FzTTVrT3E1USJ9.eyJhdWQiOiJodHRwczovL21hbmF' + 'nZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC81NDg' + 'yNmIyMi0zOGQ2LTRmYjItYmFkOS1iN2I5M2EzZTljNWEvIiwiaWF0IjoxNTAzMzU0ODc2LCJuYmYiOjE' + '1MDMzNTQ4NzYsImV4cCI6MTUwMzM1ODc3NiwiYWNyIjoiMSIsImFpbyI6IkFTUUEyLzhFQUFBQTFGL1k' + '0VVR3bFI1Y091QXJxc1J0OU5UVVc2MGlsUHZna0daUC8xczVtdzg9IiwiYW1yIjpbInB3ZCJdLCJhcHB' + 'pZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImV' + 'fZXhwIjoyNjI4MDAsImZhbWlseV9uYW1lIjoic2RrIiwiZ2l2ZW5fbmFtZSI6ImFkbWluMyIsImdyb3V' + 'wcyI6WyJlNGJiMGI1Ni0xMDE0LTQwZjgtODhhYi0zZDhhOGNiMGUwODYiLCI4YTliMTYxNy1mYzhkLTR' + 'hYTktYTQyZi05OTg2OGQzMTQ2OTkiLCI1NDgwMzkxNy00YzcxLTRkNmMtOGJkZi1iYmQ5MzEwMTBmOGM' + 'iXSwiaXBhZGRyIjoiMTY3LjIyMC4xLjIzNCIsIm5hbWUiOiJhZG1pbjMiLCJvaWQiOiJlN2UxNThkMy0' + '3Y2RjLTQ3Y2QtODgyNS01ODU5ZDdhYjJiNTUiLCJwdWlkIjoiMTAwMzNGRkY5NUQ0NEU4NCIsInNjcCI' + '6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6ImhRenl3b3FTLUEtRzAySTl6ZE5TRmtGd3R2MGVwZ2l' + 'WY1Vsdm1PZEZHaFEiLCJ0aWQiOiI1NDgyNmIyMi0zOGQ2LTRmYjItYmFkOS1iN2I5M2EzZTljNWEiLCJ' + '1bmlxdWVfbmFtZSI6ImFkbWluM0BBenVyZVNES1RlYW0ub25taWNyb3NvZnQuY29tIiwidXBuIjoiYWR' + 'taW4zQEF6dXJlU0RLVGVhbS5vbm1pY3Jvc29mdC5jb20iLCJ1dGkiOiJuUEROYm04UFkwYUdELWhNeWx' + 'rVEFBIiwidmVyIjoiMS4wIiwid2lkcyI6WyI2MmU5MDM5NC02OWY1LTQyMzctOTE5MC0wMTIxNzcxNDV' + 'lMTAiXX0.Pg4cq0MuP1uGhY_h51ZZdyUYjGDUFgTW2EfIV4DaWT9RU7GIK_Fq9VGBTTbFZA0pZrrmP-z' + '7DlN9-U0A0nEYDoXzXvo-ACTkm9_TakfADd36YlYB5aLna-yO0B7rk5W9ANelkzUQgRfidSHtCmV6i4V' + 'e-lOym1sH5iOcxfIjXF0Tp2y0f3zM7qCq8Cp1ZxEwz6xYIgByoxjErNXrOME5Ld1WizcsaWxTXpwxJn_' + 'Q8U2g9kXHrbYFeY2gJxF_hnfLvNKxUKUBnftmyYxZwKi0GDS0BvdJnJnsqSRSpxUx__Ra9QJkG1IaDzj' + 'ZcSZPHK45T6ohK9Hk9ktZo0crVl7Tmw') + + def test_normalize(self): + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + consolidated = profile._normalize_properties(self.user1, + [self.subscription1], + False) + expected = self.subscription1_normalized + self.assertEqual(expected, consolidated[0]) + # verify serialization works + self.assertIsNotNone(json.dumps(consolidated[0])) + + def test_normalize_with_unicode_in_subscription_name(self): + cli = DummyCli() + storage_mock = {'subscriptions': None} + test_display_name = 'sub' + chr(255) + polished_display_name = 'sub?' + test_subscription = SubscriptionStub('subscriptions/sub1', + test_display_name, + SubscriptionState.enabled, + 'tenant1') + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + consolidated = profile._normalize_properties(self.user1, + [test_subscription], + False) + self.assertTrue(consolidated[0]['name'] in [polished_display_name, test_display_name]) + + def test_normalize_with_none_subscription_name(self): + cli = DummyCli() + storage_mock = {'subscriptions': None} + test_display_name = None + polished_display_name = '' + test_subscription = SubscriptionStub('subscriptions/sub1', + test_display_name, + SubscriptionState.enabled, + 'tenant1') + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + consolidated = profile._normalize_properties(self.user1, + [test_subscription], + False) + self.assertTrue(consolidated[0]['name'] == polished_display_name) + + def test_update_add_two_different_subscriptions(self): + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + + # add the first and verify + consolidated = profile._normalize_properties(self.user1, + [self.subscription1], + False) + profile._set_subscriptions(consolidated) + + self.assertEqual(len(storage_mock['subscriptions']), 1) + subscription1 = storage_mock['subscriptions'][0] + subscription1_is_default = deepcopy(self.subscription1_normalized) + subscription1_is_default['isDefault'] = True + self.assertEqual(subscription1, subscription1_is_default) + + # add the second and verify + consolidated = profile._normalize_properties(self.user2, + [self.subscription2], + False) + profile._set_subscriptions(consolidated) + + self.assertEqual(len(storage_mock['subscriptions']), 2) + subscription2 = storage_mock['subscriptions'][1] + subscription2_is_default = deepcopy(self.subscription2_normalized) + subscription2_is_default['isDefault'] = True + self.assertEqual(subscription2, subscription2_is_default) + + # verify the old one stays, but no longer active + self.assertEqual(storage_mock['subscriptions'][0]['name'], + subscription1['name']) + self.assertFalse(storage_mock['subscriptions'][0]['isDefault']) + + def test_update_with_same_subscription_added_twice(self): + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + + # add one twice and verify we will have one but with new token + consolidated = profile._normalize_properties(self.user1, + [self.subscription1], + False) + profile._set_subscriptions(consolidated) + + new_subscription1 = SubscriptionStub(self.id1, + self.display_name1, + self.state1, + self.tenant_id) + consolidated = profile._normalize_properties(self.user1, + [new_subscription1], + False) + profile._set_subscriptions(consolidated) + + self.assertEqual(len(storage_mock['subscriptions']), 1) + self.assertTrue(storage_mock['subscriptions'][0]['isDefault']) + + def test_set_active_subscription(self): + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + + consolidated = profile._normalize_properties(self.user1, + [self.subscription1], + False) + profile._set_subscriptions(consolidated) + + consolidated = profile._normalize_properties(self.user2, + [self.subscription2], + False) + profile._set_subscriptions(consolidated) + + self.assertTrue(storage_mock['subscriptions'][1]['isDefault']) + + profile.set_active_subscription(storage_mock['subscriptions'][0]['id']) + self.assertFalse(storage_mock['subscriptions'][1]['isDefault']) + self.assertTrue(storage_mock['subscriptions'][0]['isDefault']) + + def test_default_active_subscription_to_non_disabled_one(self): + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + + subscriptions = profile._normalize_properties( + self.user2, [self.subscription2, self.subscription1], False) + + profile._set_subscriptions(subscriptions) + + # verify we skip the overdued subscription and default to the 2nd one in the list + self.assertEqual(storage_mock['subscriptions'][1]['name'], self.subscription1.display_name) + self.assertTrue(storage_mock['subscriptions'][1]['isDefault']) + + def test_get_subscription(self): + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + + consolidated = profile._normalize_properties(self.user1, + [self.subscription1], + False) + profile._set_subscriptions(consolidated) + + self.assertEqual(self.display_name1, profile.get_subscription()['name']) + self.assertEqual(self.display_name1, + profile.get_subscription(subscription=self.display_name1)['name']) + + sub_id = self.id1.split('/')[-1] + self.assertEqual(sub_id, profile.get_subscription()['id']) + self.assertEqual(sub_id, profile.get_subscription(subscription=sub_id)['id']) + self.assertRaises(CLIError, profile.get_subscription, "random_id") + + def test_get_auth_info_fail_on_user_account(self): + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + + consolidated = profile._normalize_properties(self.user1, + [self.subscription1], + False) + profile._set_subscriptions(consolidated) + + # testing dump of existing logged in account + self.assertRaises(CLIError, profile.get_sp_auth_info) + + @mock.patch('azure.cli.core.profiles.get_api_version', autospec=True) + def test_subscription_finder_constructor(self, get_api_mock): + cli = DummyCli() + get_api_mock.return_value = '2016-06-01' + cli.cloud.endpoints.resource_manager = 'http://foo_arm' + finder = SubscriptionFinder(cli, None, None, arm_client_factory=None) + result = finder._arm_client_factory(mock.MagicMock()) + self.assertEqual(result.config.base_url, 'http://foo_arm') + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_get_auth_info_for_logged_in_service_principal(self, mock_auth_context): + cli = DummyCli() + mock_auth_context.acquire_token_with_client_credentials.return_value = self.token_entry1 + mock_arm_client = mock.MagicMock() + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + + storage_mock = {'subscriptions': []} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + profile._management_resource_uri = 'https://management.core.windows.net/' + profile.find_subscriptions_on_login(False, '1234', 'my-secret', True, self.tenant_id, use_device_code=False, + allow_no_subscriptions=False, subscription_finder=finder) + # action + extended_info = profile.get_sp_auth_info() + # assert + self.assertEqual(self.id1.split('/')[-1], extended_info['subscriptionId']) + self.assertEqual('1234', extended_info['clientId']) + self.assertEqual('my-secret', extended_info['clientSecret']) + self.assertEqual('https://login.microsoftonline.com', extended_info['activeDirectoryEndpointUrl']) + self.assertEqual('https://management.azure.com/', extended_info['resourceManagerEndpointUrl']) + + def test_get_auth_info_for_newly_created_service_principal(self): + cli = DummyCli() + storage_mock = {'subscriptions': []} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + consolidated = profile._normalize_properties(self.user1, [self.subscription1], False) + profile._set_subscriptions(consolidated) + # action + extended_info = profile.get_sp_auth_info(name='1234', cert_file='/tmp/123.pem') + # assert + self.assertEqual(self.id1.split('/')[-1], extended_info['subscriptionId']) + self.assertEqual(self.tenant_id, extended_info['tenantId']) + self.assertEqual('1234', extended_info['clientId']) + self.assertEqual('/tmp/123.pem', extended_info['clientCertificate']) + self.assertIsNone(extended_info.get('clientSecret', None)) + self.assertEqual('https://login.microsoftonline.com', extended_info['activeDirectoryEndpointUrl']) + self.assertEqual('https://management.azure.com/', extended_info['resourceManagerEndpointUrl']) + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_create_account_without_subscriptions_thru_service_principal(self, mock_auth_context): + mock_auth_context.acquire_token_with_client_credentials.return_value = self.token_entry1 + cli = DummyCli() + mock_arm_client = mock.MagicMock() + mock_arm_client.subscriptions.list.return_value = [] + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + + storage_mock = {'subscriptions': []} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + profile._management_resource_uri = 'https://management.core.windows.net/' + + # action + result = profile.find_subscriptions_on_login(False, + '1234', + 'my-secret', + True, + self.tenant_id, + use_device_code=False, + allow_no_subscriptions=True, + subscription_finder=finder) + # assert + self.assertEqual(1, len(result)) + self.assertEqual(result[0]['id'], self.tenant_id) + self.assertEqual(result[0]['state'], 'Enabled') + self.assertEqual(result[0]['tenantId'], self.tenant_id) + self.assertEqual(result[0]['name'], 'N/A(tenant level account)') + self.assertTrue(profile.is_tenant_level_account()) + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_create_account_with_subscriptions_allow_no_subscriptions_thru_service_principal(self, mock_auth_context): + """test subscription is returned even with --allow-no-subscriptions. """ + mock_auth_context.acquire_token_with_client_credentials.return_value = self.token_entry1 + cli = DummyCli() + mock_arm_client = mock.MagicMock() + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + + storage_mock = {'subscriptions': []} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + profile._management_resource_uri = 'https://management.core.windows.net/' + + # action + result = profile.find_subscriptions_on_login(False, + '1234', + 'my-secret', + True, + self.tenant_id, + use_device_code=False, + allow_no_subscriptions=True, + subscription_finder=finder) + # assert + self.assertEqual(1, len(result)) + self.assertEqual(result[0]['id'], self.id1.split('/')[-1]) + self.assertEqual(result[0]['state'], 'Enabled') + self.assertEqual(result[0]['tenantId'], self.tenant_id) + self.assertEqual(result[0]['name'], self.display_name1) + self.assertFalse(profile.is_tenant_level_account()) + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_create_account_without_subscriptions_thru_common_tenant(self, mock_auth_context): + mock_auth_context.acquire_token.return_value = self.token_entry1 + mock_auth_context.acquire_token_with_username_password.return_value = self.token_entry1 + cli = DummyCli() + tenant_object = mock.MagicMock() + tenant_object.id = "foo-bar" + tenant_object.tenant_id = self.tenant_id + mock_arm_client = mock.MagicMock() + mock_arm_client.subscriptions.list.return_value = [] + mock_arm_client.tenants.list.return_value = (x for x in [tenant_object]) + + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + + storage_mock = {'subscriptions': []} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + profile._management_resource_uri = 'https://management.core.windows.net/' + + # action + result = profile.find_subscriptions_on_login(False, + '1234', + 'my-secret', + False, + None, + use_device_code=False, + allow_no_subscriptions=True, + subscription_finder=finder) + + # assert + self.assertEqual(1, len(result)) + self.assertEqual(result[0]['id'], self.tenant_id) + self.assertEqual(result[0]['state'], 'Enabled') + self.assertEqual(result[0]['tenantId'], self.tenant_id) + self.assertEqual(result[0]['name'], 'N/A(tenant level account)') + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_create_account_without_subscriptions_without_tenant(self, mock_auth_context): + cli = DummyCli() + finder = mock.MagicMock() + finder.find_through_interactive_flow.return_value = [] + storage_mock = {'subscriptions': []} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + + # action + result = profile.find_subscriptions_on_login(True, + '1234', + 'my-secret', + False, + None, + use_device_code=False, + allow_no_subscriptions=True, + subscription_finder=finder) + + # assert + self.assertTrue(0 == len(result)) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + def test_get_current_account_user(self, mock_read_cred_file): + cli = DummyCli() + # setup + mock_read_cred_file.return_value = [TestProfile.token_entry1] + + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + consolidated = profile._normalize_properties(self.user1, + [self.subscription1], + False) + profile._set_subscriptions(consolidated) + # action + user = profile.get_current_account_user() + + # verify + self.assertEqual(user, self.user1) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', return_value=None) + def test_create_token_cache(self, mock_read_file): + cli = DummyCli() + mock_read_file.return_value = [] + profile = Profile(cli_ctx=cli, use_global_creds_cache=False, async_persist=False) + cache = profile._creds_cache.adal_token_cache + self.assertFalse(cache.read_items()) + self.assertTrue(mock_read_file.called) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + def test_load_cached_tokens(self, mock_read_file): + cli = DummyCli() + mock_read_file.return_value = [TestProfile.token_entry1] + profile = Profile(cli_ctx=cli, use_global_creds_cache=False, async_persist=False) + cache = profile._creds_cache.adal_token_cache + matched = cache.find({ + "_authority": "https://login.microsoftonline.com/common", + "_clientId": "04b07795-8ddb-461a-bbee-02f9e1bf7b46", + "userId": self.user1 + }) + self.assertEqual(len(matched), 1) + self.assertEqual(matched[0]['accessToken'], self.raw_token1) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('azure.cli.core._profile.CredsCache.retrieve_token_for_user', autospec=True) + def test_get_login_credentials(self, mock_get_token, mock_read_cred_file): + cli = DummyCli() + some_token_type = 'Bearer' + mock_read_cred_file.return_value = [TestProfile.token_entry1] + mock_get_token.return_value = (some_token_type, TestProfile.raw_token1) + # setup + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + test_subscription_id = '12345678-1bf0-4dda-aec3-cb9272f09590' + test_tenant_id = '12345678-38d6-4fb2-bad9-b7b93a3e1234' + test_subscription = SubscriptionStub('/subscriptions/{}'.format(test_subscription_id), + 'MSI-DEV-INC', self.state1, '12345678-38d6-4fb2-bad9-b7b93a3e1234') + consolidated = profile._normalize_properties(self.user1, + [test_subscription], + False) + profile._set_subscriptions(consolidated) + # action + cred, subscription_id, _ = profile.get_login_credentials() + + # verify + self.assertEqual(subscription_id, test_subscription_id) + + # verify the cred._tokenRetriever is a working lambda + token_type, token = cred._token_retriever() + self.assertEqual(token, self.raw_token1) + self.assertEqual(some_token_type, token_type) + mock_get_token.assert_called_once_with(mock.ANY, self.user1, test_tenant_id, + 'https://management.core.windows.net/') + self.assertEqual(mock_get_token.call_count, 1) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('azure.cli.core._profile.CredsCache.retrieve_token_for_user', autospec=True) + def test_get_login_credentials_aux_subscriptions(self, mock_get_token, mock_read_cred_file): + cli = DummyCli() + raw_token2 = 'some...secrets2' + token_entry2 = { + "resource": "https://management.core.windows.net/", + "tokenType": "Bearer", + "_authority": "https://login.microsoftonline.com/common", + "accessToken": raw_token2, + } + some_token_type = 'Bearer' + mock_read_cred_file.return_value = [TestProfile.token_entry1, token_entry2] + mock_get_token.side_effect = [(some_token_type, TestProfile.raw_token1), (some_token_type, raw_token2)] + # setup + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + test_subscription_id = '12345678-1bf0-4dda-aec3-cb9272f09590' + test_subscription_id2 = '12345678-1bf0-4dda-aec3-cb9272f09591' + test_tenant_id = '12345678-38d6-4fb2-bad9-b7b93a3e1234' + test_tenant_id2 = '12345678-38d6-4fb2-bad9-b7b93a3e4321' + test_subscription = SubscriptionStub('/subscriptions/{}'.format(test_subscription_id), + 'MSI-DEV-INC', self.state1, test_tenant_id) + test_subscription2 = SubscriptionStub('/subscriptions/{}'.format(test_subscription_id2), + 'MSI-DEV-INC2', self.state1, test_tenant_id2) + consolidated = profile._normalize_properties(self.user1, + [test_subscription, test_subscription2], + False) + profile._set_subscriptions(consolidated) + # action + cred, subscription_id, _ = profile.get_login_credentials(subscription_id=test_subscription_id, + aux_subscriptions=[test_subscription_id2]) + + # verify + self.assertEqual(subscription_id, test_subscription_id) + + # verify the cred._tokenRetriever is a working lambda + token_type, token = cred._token_retriever() + self.assertEqual(token, self.raw_token1) + self.assertEqual(some_token_type, token_type) + + token2 = cred._external_tenant_token_retriever() + self.assertEqual(len(token2), 1) + self.assertEqual(token2[0][1], raw_token2) + + self.assertEqual(mock_get_token.call_count, 2) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('msrestazure.azure_active_directory.MSIAuthentication', autospec=True) + def test_get_login_credentials_msi_system_assigned(self, mock_msi_auth, mock_read_cred_file): + mock_read_cred_file.return_value = [] + + # setup an existing msi subscription + profile = Profile(cli_ctx=DummyCli(), storage={'subscriptions': None}, use_global_creds_cache=False, + async_persist=False) + test_subscription_id = '12345678-1bf0-4dda-aec3-cb9272f09590' + test_tenant_id = '12345678-38d6-4fb2-bad9-b7b93a3e1234' + test_user = 'systemAssignedIdentity' + msi_subscription = SubscriptionStub('/subscriptions/' + test_subscription_id, 'MSI', self.state1, test_tenant_id) + consolidated = profile._normalize_properties(test_user, + [msi_subscription], + True) + profile._set_subscriptions(consolidated) + + mock_msi_auth.side_effect = MSRestAzureAuthStub + + # action + cred, subscription_id, _ = profile.get_login_credentials() + + # assert + self.assertEqual(subscription_id, test_subscription_id) + + # sniff test the msi_auth object + cred.set_token() + cred.token + self.assertTrue(cred.set_token_invoked_count) + self.assertTrue(cred.token_read_count) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('msrestazure.azure_active_directory.MSIAuthentication', autospec=True) + def test_get_login_credentials_msi_user_assigned_with_client_id(self, mock_msi_auth, mock_read_cred_file): + mock_read_cred_file.return_value = [] + + # setup an existing msi subscription + profile = Profile(cli_ctx=DummyCli(), storage={'subscriptions': None}, use_global_creds_cache=False, + async_persist=False) + test_subscription_id = '12345678-1bf0-4dda-aec3-cb9272f09590' + test_tenant_id = '12345678-38d6-4fb2-bad9-b7b93a3e1234' + test_user = 'userAssignedIdentity' + test_client_id = '12345678-38d6-4fb2-bad9-b7b93a3e8888' + msi_subscription = SubscriptionStub('/subscriptions/' + test_subscription_id, 'MSIClient-{}'.format(test_client_id), self.state1, test_tenant_id) + consolidated = profile._normalize_properties(test_user, [msi_subscription], True) + profile._set_subscriptions(consolidated, secondary_key_name='name') + + mock_msi_auth.side_effect = MSRestAzureAuthStub + + # action + cred, subscription_id, _ = profile.get_login_credentials() + + # assert + self.assertEqual(subscription_id, test_subscription_id) + + # sniff test the msi_auth object + cred.set_token() + cred.token + self.assertTrue(cred.set_token_invoked_count) + self.assertTrue(cred.token_read_count) + self.assertTrue(cred.client_id, test_client_id) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('msrestazure.azure_active_directory.MSIAuthentication', autospec=True) + def test_get_login_credentials_msi_user_assigned_with_object_id(self, mock_msi_auth, mock_read_cred_file): + mock_read_cred_file.return_value = [] + + # setup an existing msi subscription + profile = Profile(cli_ctx=DummyCli(), storage={'subscriptions': None}, use_global_creds_cache=False, + async_persist=False) + test_subscription_id = '12345678-1bf0-4dda-aec3-cb9272f09590' + test_object_id = '12345678-38d6-4fb2-bad9-b7b93a3e9999' + msi_subscription = SubscriptionStub('/subscriptions/12345678-1bf0-4dda-aec3-cb9272f09590', + 'MSIObject-{}'.format(test_object_id), + self.state1, '12345678-38d6-4fb2-bad9-b7b93a3e1234') + consolidated = profile._normalize_properties('userAssignedIdentity', [msi_subscription], True) + profile._set_subscriptions(consolidated, secondary_key_name='name') + + mock_msi_auth.side_effect = MSRestAzureAuthStub + + # action + cred, subscription_id, _ = profile.get_login_credentials() + + # assert + self.assertEqual(subscription_id, test_subscription_id) + + # sniff test the msi_auth object + cred.set_token() + cred.token + self.assertTrue(cred.set_token_invoked_count) + self.assertTrue(cred.token_read_count) + self.assertTrue(cred.object_id, test_object_id) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('msrestazure.azure_active_directory.MSIAuthentication', autospec=True) + def test_get_login_credentials_msi_user_assigned_with_res_id(self, mock_msi_auth, mock_read_cred_file): + mock_read_cred_file.return_value = [] + + # setup an existing msi subscription + profile = Profile(cli_ctx=DummyCli(), storage={'subscriptions': None}, use_global_creds_cache=False, + async_persist=False) + test_subscription_id = '12345678-1bf0-4dda-aec3-cb9272f09590' + test_res_id = ('/subscriptions/{}/resourceGroups/r1/providers/Microsoft.ManagedIdentity/' + 'userAssignedIdentities/id1').format(test_subscription_id) + msi_subscription = SubscriptionStub('/subscriptions/{}'.format(test_subscription_id), + 'MSIResource-{}'.format(test_res_id), + self.state1, '12345678-38d6-4fb2-bad9-b7b93a3e1234') + consolidated = profile._normalize_properties('userAssignedIdentity', [msi_subscription], True) + profile._set_subscriptions(consolidated, secondary_key_name='name') + + mock_msi_auth.side_effect = MSRestAzureAuthStub + + # action + cred, subscription_id, _ = profile.get_login_credentials() + + # assert + self.assertEqual(subscription_id, test_subscription_id) + + # sniff test the msi_auth object + cred.set_token() + cred.token + self.assertTrue(cred.set_token_invoked_count) + self.assertTrue(cred.token_read_count) + self.assertTrue(cred.msi_res_id, test_res_id) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('azure.cli.core._profile.CredsCache.retrieve_token_for_user', autospec=True) + def test_get_raw_token(self, mock_get_token, mock_read_cred_file): + cli = DummyCli() + some_token_type = 'Bearer' + mock_read_cred_file.return_value = [TestProfile.token_entry1] + mock_get_token.return_value = (some_token_type, TestProfile.raw_token1, + TestProfile.token_entry1) + # setup + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + consolidated = profile._normalize_properties(self.user1, + [self.subscription1], + False) + profile._set_subscriptions(consolidated) + # action + creds, sub, tenant = profile.get_raw_token(resource='https://foo') + + # verify + self.assertEqual(creds[0], self.token_entry1['tokenType']) + self.assertEqual(creds[1], self.raw_token1) + # the last in the tuple is the whole token entry which has several fields + self.assertEqual(creds[2]['expiresOn'], self.token_entry1['expiresOn']) + mock_get_token.assert_called_once_with(mock.ANY, self.user1, self.tenant_id, + 'https://foo') + self.assertEqual(mock_get_token.call_count, 1) + self.assertEqual(sub, '1') + self.assertEqual(tenant, self.tenant_id) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('azure.cli.core._profile.CredsCache.retrieve_token_for_service_principal', autospec=True) + def test_get_raw_token_for_sp(self, mock_get_token, mock_read_cred_file): + cli = DummyCli() + some_token_type = 'Bearer' + mock_read_cred_file.return_value = [TestProfile.token_entry1] + mock_get_token.return_value = (some_token_type, TestProfile.raw_token1, + TestProfile.token_entry1) + # setup + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + consolidated = profile._normalize_properties('sp1', + [self.subscription1], + True) + profile._set_subscriptions(consolidated) + # action + creds, sub, tenant = profile.get_raw_token(resource='https://foo') + + # verify + self.assertEqual(creds[0], self.token_entry1['tokenType']) + self.assertEqual(creds[1], self.raw_token1) + # the last in the tuple is the whole token entry which has several fields + self.assertEqual(creds[2]['expiresOn'], self.token_entry1['expiresOn']) + mock_get_token.assert_called_once_with(mock.ANY, 'sp1', 'https://foo', self.tenant_id) + self.assertEqual(mock_get_token.call_count, 1) + self.assertEqual(sub, '1') + self.assertEqual(tenant, self.tenant_id) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('msrestazure.azure_active_directory.MSIAuthentication', autospec=True) + def test_get_raw_token_msi_system_assigned(self, mock_msi_auth, mock_read_cred_file): + mock_read_cred_file.return_value = [] + + # setup an existing msi subscription + profile = Profile(cli_ctx=DummyCli(), storage={'subscriptions': None}, use_global_creds_cache=False, + async_persist=False) + test_subscription_id = '12345678-1bf0-4dda-aec3-cb9272f09590' + test_tenant_id = '12345678-38d6-4fb2-bad9-b7b93a3e1234' + test_user = 'systemAssignedIdentity' + msi_subscription = SubscriptionStub('/subscriptions/' + test_subscription_id, + 'MSI', self.state1, test_tenant_id) + consolidated = profile._normalize_properties(test_user, + [msi_subscription], + True) + profile._set_subscriptions(consolidated) + + mock_msi_auth.side_effect = MSRestAzureAuthStub + + # action + cred, subscription_id, _ = profile.get_raw_token(resource='http://test_resource') + + # assert + self.assertEqual(subscription_id, test_subscription_id) + self.assertEqual(cred[0], 'Bearer') + self.assertEqual(cred[1], TestProfile.test_msi_access_token) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('azure.cli.core._profile.CredsCache.retrieve_token_for_user', autospec=True) + def test_get_login_credentials_for_graph_client(self, mock_get_token, mock_read_cred_file): + cli = DummyCli() + some_token_type = 'Bearer' + mock_read_cred_file.return_value = [TestProfile.token_entry1] + mock_get_token.return_value = (some_token_type, TestProfile.raw_token1) + # setup + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + consolidated = profile._normalize_properties(self.user1, [self.subscription1], + False) + profile._set_subscriptions(consolidated) + # action + cred, _, tenant_id = profile.get_login_credentials( + resource=cli.cloud.endpoints.active_directory_graph_resource_id) + _, _ = cred._token_retriever() + # verify + mock_get_token.assert_called_once_with(mock.ANY, self.user1, self.tenant_id, + 'https://graph.windows.net/') + self.assertEqual(tenant_id, self.tenant_id) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('azure.cli.core._profile.CredsCache.retrieve_token_for_user', autospec=True) + def test_get_login_credentials_for_data_lake_client(self, mock_get_token, mock_read_cred_file): + cli = DummyCli() + some_token_type = 'Bearer' + mock_read_cred_file.return_value = [TestProfile.token_entry1] + mock_get_token.return_value = (some_token_type, TestProfile.raw_token1) + # setup + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + consolidated = profile._normalize_properties(self.user1, [self.subscription1], + False) + profile._set_subscriptions(consolidated) + # action + cred, _, tenant_id = profile.get_login_credentials( + resource=cli.cloud.endpoints.active_directory_data_lake_resource_id) + _, _ = cred._token_retriever() + # verify + mock_get_token.assert_called_once_with(mock.ANY, self.user1, self.tenant_id, + 'https://datalake.azure.net/') + self.assertEqual(tenant_id, self.tenant_id) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('azure.cli.core._profile.CredsCache.persist_cached_creds', autospec=True) + def test_logout(self, mock_persist_creds, mock_read_cred_file): + cli = DummyCli() + # setup + mock_read_cred_file.return_value = [TestProfile.token_entry1] + + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + consolidated = profile._normalize_properties(self.user1, + [self.subscription1], + False) + profile._set_subscriptions(consolidated) + self.assertEqual(1, len(storage_mock['subscriptions'])) + # action + profile.logout(self.user1) + + # verify + self.assertEqual(0, len(storage_mock['subscriptions'])) + self.assertEqual(mock_read_cred_file.call_count, 1) + self.assertEqual(mock_persist_creds.call_count, 1) + + @mock.patch('azure.cli.core._profile._delete_file', autospec=True) + def test_logout_all(self, mock_delete_cred_file): + cli = DummyCli() + # setup + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + consolidated = profile._normalize_properties(self.user1, + [self.subscription1], + False) + consolidated2 = profile._normalize_properties(self.user2, + [self.subscription2], + False) + profile._set_subscriptions(consolidated + consolidated2) + + self.assertEqual(2, len(storage_mock['subscriptions'])) + # action + profile.logout_all() + + # verify + self.assertEqual([], storage_mock['subscriptions']) + self.assertEqual(mock_delete_cred_file.call_count, 1) + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_find_subscriptions_thru_username_password(self, mock_auth_context): + cli = DummyCli() + mock_auth_context.acquire_token_with_username_password.return_value = self.token_entry1 + mock_auth_context.acquire_token.return_value = self.token_entry1 + mock_arm_client = mock.MagicMock() + mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + mgmt_resource = 'https://management.core.windows.net/' + # action + subs = finder.find_from_user_account(self.user1, 'bar', None, mgmt_resource) + + # assert + self.assertEqual([self.subscription1], subs) + mock_auth_context.acquire_token_with_username_password.assert_called_once_with( + mgmt_resource, self.user1, 'bar', mock.ANY) + mock_auth_context.acquire_token.assert_called_once_with( + mgmt_resource, self.user1, mock.ANY) + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_find_subscriptions_thru_username_non_password(self, mock_auth_context): + cli = DummyCli() + mock_auth_context.acquire_token_with_username_password.return_value = None + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: None) + # action + subs = finder.find_from_user_account(self.user1, 'bar', None, 'http://goo-resource') + + # assert + self.assertEqual([], subs) + + @mock.patch('msrestazure.azure_active_directory.MSIAuthentication', autospec=True) + @mock.patch('azure.cli.core.profiles._shared.get_client_class', autospec=True) + @mock.patch('azure.cli.core._profile._get_cloud_console_token_endpoint', autospec=True) + @mock.patch('azure.cli.core._profile.SubscriptionFinder', autospec=True) + def test_find_subscriptions_in_cloud_console(self, mock_subscription_finder, mock_get_token_endpoint, + mock_get_client_class, mock_msi_auth): + + class SubscriptionFinderStub: + def find_from_raw_token(self, tenant, token): + # make sure the tenant and token args match 'TestProfile.test_msi_access_token' + if token != TestProfile.test_msi_access_token or tenant != '54826b22-38d6-4fb2-bad9-b7b93a3e9c5a': + raise AssertionError('find_from_raw_token was not invoked with expected tenant or token') + return [TestProfile.subscription1] + + mock_subscription_finder.return_value = SubscriptionFinderStub() + + mock_get_token_endpoint.return_value = "http://great_endpoint" + mock_msi_auth.return_value = MSRestAzureAuthStub() + + profile = Profile(cli_ctx=DummyCli(), storage={'subscriptions': None}, use_global_creds_cache=False, + async_persist=False) + + # action + subscriptions = profile.find_subscriptions_in_cloud_console() + + # assert + self.assertEqual(len(subscriptions), 1) + s = subscriptions[0] + self.assertEqual(s['user']['name'], 'admin3@AzureSDKTeam.onmicrosoft.com') + self.assertEqual(s['user']['cloudShellID'], True) + self.assertEqual(s['user']['type'], 'user') + self.assertEqual(s['name'], self.display_name1) + self.assertEqual(s['id'], self.id1.split('/')[-1]) + + @mock.patch('requests.get', autospec=True) + @mock.patch('azure.cli.core.profiles._shared.get_client_class', autospec=True) + def test_find_subscriptions_in_vm_with_msi_system_assigned(self, mock_get_client_class, mock_get): + + class ClientStub: + def __init__(self, *args, **kwargs): + self.subscriptions = mock.MagicMock() + self.subscriptions.list.return_value = [deepcopy(TestProfile.subscription1_raw)] + self.config = mock.MagicMock() + self._client = mock.MagicMock() + + mock_get_client_class.return_value = ClientStub + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + + test_token_entry = { + 'token_type': 'Bearer', + 'access_token': TestProfile.test_msi_access_token + } + encoded_test_token = json.dumps(test_token_entry).encode() + good_response = mock.MagicMock() + good_response.status_code = 200 + good_response.content = encoded_test_token + mock_get.return_value = good_response + + subscriptions = profile.find_subscriptions_in_vm_with_msi() + + # assert + self.assertEqual(len(subscriptions), 1) + s = subscriptions[0] + self.assertEqual(s['user']['name'], 'systemAssignedIdentity') + self.assertEqual(s['user']['type'], 'servicePrincipal') + self.assertEqual(s['user']['assignedIdentityInfo'], 'MSI') + self.assertEqual(s['name'], self.display_name1) + self.assertEqual(s['id'], self.id1.split('/')[-1]) + self.assertEqual(s['tenantId'], '54826b22-38d6-4fb2-bad9-b7b93a3e9c5a') + + @mock.patch('requests.get', autospec=True) + @mock.patch('azure.cli.core.profiles._shared.get_client_class', autospec=True) + def test_find_subscriptions_in_vm_with_msi_no_subscriptions(self, mock_get_client_class, mock_get): + + class ClientStub: + def __init__(self, *args, **kwargs): + self.subscriptions = mock.MagicMock() + self.subscriptions.list.return_value = [] + self.config = mock.MagicMock() + self._client = mock.MagicMock() + + mock_get_client_class.return_value = ClientStub + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + + test_token_entry = { + 'token_type': 'Bearer', + 'access_token': TestProfile.test_msi_access_token + } + encoded_test_token = json.dumps(test_token_entry).encode() + good_response = mock.MagicMock() + good_response.status_code = 200 + good_response.content = encoded_test_token + mock_get.return_value = good_response + + subscriptions = profile.find_subscriptions_in_vm_with_msi(allow_no_subscriptions=True) + + # assert + self.assertEqual(len(subscriptions), 1) + s = subscriptions[0] + self.assertEqual(s['user']['name'], 'systemAssignedIdentity') + self.assertEqual(s['user']['type'], 'servicePrincipal') + self.assertEqual(s['user']['assignedIdentityInfo'], 'MSI') + self.assertEqual(s['name'], 'N/A(tenant level account)') + self.assertEqual(s['id'], self.test_msi_tenant) + self.assertEqual(s['tenantId'], self.test_msi_tenant) + + @mock.patch('requests.get', autospec=True) + @mock.patch('azure.cli.core.profiles._shared.get_client_class', autospec=True) + def test_find_subscriptions_in_vm_with_msi_user_assigned_with_client_id(self, mock_get_client_class, mock_get): + + class ClientStub: + def __init__(self, *args, **kwargs): + self.subscriptions = mock.MagicMock() + self.subscriptions.list.return_value = [deepcopy(TestProfile.subscription1_raw)] + self.config = mock.MagicMock() + self._client = mock.MagicMock() + + mock_get_client_class.return_value = ClientStub + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + + test_token_entry = { + 'token_type': 'Bearer', + 'access_token': TestProfile.test_msi_access_token + } + test_client_id = '54826b22-38d6-4fb2-bad9-b7b93a3e9999' + encoded_test_token = json.dumps(test_token_entry).encode() + good_response = mock.MagicMock() + good_response.status_code = 200 + good_response.content = encoded_test_token + mock_get.return_value = good_response + + subscriptions = profile.find_subscriptions_in_vm_with_msi(identity_id=test_client_id) + + # assert + self.assertEqual(len(subscriptions), 1) + s = subscriptions[0] + self.assertEqual(s['user']['name'], 'userAssignedIdentity') + self.assertEqual(s['user']['type'], 'servicePrincipal') + self.assertEqual(s['name'], self.display_name1) + self.assertEqual(s['user']['assignedIdentityInfo'], 'MSIClient-{}'.format(test_client_id)) + self.assertEqual(s['id'], self.id1.split('/')[-1]) + self.assertEqual(s['tenantId'], '54826b22-38d6-4fb2-bad9-b7b93a3e9c5a') + + @mock.patch('msrestazure.azure_active_directory.MSIAuthentication', autospec=True) + @mock.patch('azure.cli.core.profiles._shared.get_client_class', autospec=True) + @mock.patch('azure.cli.core._profile.SubscriptionFinder', autospec=True) + def test_find_subscriptions_in_vm_with_msi_user_assigned_with_object_id(self, mock_subscription_finder, mock_get_client_class, + mock_msi_auth): + from requests import HTTPError + + class SubscriptionFinderStub: + def find_from_raw_token(self, tenant, token): + # make sure the tenant and token args match 'TestProfile.test_msi_access_token' + if token != TestProfile.test_msi_access_token or tenant != '54826b22-38d6-4fb2-bad9-b7b93a3e9c5a': + raise AssertionError('find_from_raw_token was not invoked with expected tenant or token') + return [TestProfile.subscription1] + + class AuthStub: + def __init__(self, **kwargs): + self.token = None + self.client_id = kwargs.get('client_id') + self.object_id = kwargs.get('object_id') + # since msrestazure 0.4.34, set_token in init + self.set_token() + + def set_token(self): + # here we will reject the 1st sniffing of trying with client_id and then acccept the 2nd + if self.object_id: + self.token = { + 'token_type': 'Bearer', + 'access_token': TestProfile.test_msi_access_token + } + else: + mock_obj = mock.MagicMock() + mock_obj.status, mock_obj.reason = 400, 'Bad Request' + raise HTTPError(response=mock_obj) + + profile = Profile(cli_ctx=DummyCli(), storage={'subscriptions': None}, use_global_creds_cache=False, + async_persist=False) + + mock_subscription_finder.return_value = SubscriptionFinderStub() + + mock_msi_auth.side_effect = AuthStub + test_object_id = '54826b22-38d6-4fb2-bad9-b7b93a3e9999' + + # action + subscriptions = profile.find_subscriptions_in_vm_with_msi(identity_id=test_object_id) + + # assert + self.assertEqual(subscriptions[0]['user']['assignedIdentityInfo'], 'MSIObject-{}'.format(test_object_id)) + + @mock.patch('requests.get', autospec=True) + @mock.patch('azure.cli.core.profiles._shared.get_client_class', autospec=True) + def test_find_subscriptions_in_vm_with_msi_user_assigned_with_res_id(self, mock_get_client_class, mock_get): + + class ClientStub: + def __init__(self, *args, **kwargs): + self.subscriptions = mock.MagicMock() + self.subscriptions.list.return_value = [deepcopy(TestProfile.subscription1_raw)] + self.config = mock.MagicMock() + self._client = mock.MagicMock() + + mock_get_client_class.return_value = ClientStub + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + + test_token_entry = { + 'token_type': 'Bearer', + 'access_token': TestProfile.test_msi_access_token + } + test_res_id = ('/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/g1/' + 'providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1') + + encoded_test_token = json.dumps(test_token_entry).encode() + good_response = mock.MagicMock() + good_response.status_code = 200 + good_response.content = encoded_test_token + mock_get.return_value = good_response + + subscriptions = profile.find_subscriptions_in_vm_with_msi(identity_id=test_res_id) + + # assert + self.assertEqual(subscriptions[0]['user']['assignedIdentityInfo'], 'MSIResource-{}'.format(test_res_id)) + + @mock.patch('adal.AuthenticationContext.acquire_token_with_username_password', autospec=True) + @mock.patch('adal.AuthenticationContext.acquire_token', autospec=True) + def test_find_subscriptions_thru_username_password_adfs(self, mock_acquire_token, + mock_acquire_token_username_password): + cli = DummyCli() + TEST_ADFS_AUTH_URL = 'https://adfs.local.azurestack.external/adfs' + + def test_acquire_token(self, resource, username, password, client_id): + global acquire_token_invoked + acquire_token_invoked = True + if (self.authority.url == TEST_ADFS_AUTH_URL and self.authority.is_adfs_authority): + return TestProfile.token_entry1 + else: + raise ValueError('AuthContext was not initialized correctly for ADFS') + + mock_acquire_token_username_password.side_effect = test_acquire_token + mock_acquire_token.return_value = self.token_entry1 + mock_arm_client = mock.MagicMock() + mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] + cli.cloud.endpoints.active_directory = TEST_ADFS_AUTH_URL + finder = SubscriptionFinder(cli, _AUTH_CTX_FACTORY, None, lambda _: mock_arm_client) + mgmt_resource = 'https://management.core.windows.net/' + # action + subs = finder.find_from_user_account(self.user1, 'bar', None, mgmt_resource) + + # assert + self.assertEqual([self.subscription1], subs) + self.assertTrue(acquire_token_invoked) + + @mock.patch('adal.AuthenticationContext', autospec=True) + @mock.patch('azure.cli.core._profile.logger', autospec=True) + def test_find_subscriptions_thru_username_password_with_account_disabled(self, mock_logger, mock_auth_context): + cli = DummyCli() + mock_auth_context.acquire_token_with_username_password.return_value = self.token_entry1 + mock_auth_context.acquire_token.side_effect = AdalError('Account is disabled') + mock_arm_client = mock.MagicMock() + mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)] + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + mgmt_resource = 'https://management.core.windows.net/' + # action + subs = finder.find_from_user_account(self.user1, 'bar', None, mgmt_resource) + + # assert + self.assertEqual([], subs) + mock_logger.warning.assert_called_once_with(mock.ANY, mock.ANY, mock.ANY) + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_find_subscriptions_from_particular_tenent(self, mock_auth_context): + def just_raise(ex): + raise ex + + cli = DummyCli() + mock_arm_client = mock.MagicMock() + mock_arm_client.tenants.list.side_effect = lambda: just_raise( + ValueError("'tenants.list' should not occur")) + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + # action + subs = finder.find_from_user_account(self.user1, 'bar', self.tenant_id, 'http://someresource') + + # assert + self.assertEqual([self.subscription1], subs) + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_find_subscriptions_through_device_code_flow(self, mock_auth_context): + cli = DummyCli() + test_nonsense_code = {'message': 'magic code for you'} + mock_auth_context.acquire_user_code.return_value = test_nonsense_code + mock_auth_context.acquire_token_with_device_code.return_value = self.token_entry1 + mock_arm_client = mock.MagicMock() + mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + mgmt_resource = 'https://management.core.windows.net/' + # action + subs = finder.find_through_interactive_flow(None, mgmt_resource) + + # assert + self.assertEqual([self.subscription1], subs) + mock_auth_context.acquire_user_code.assert_called_once_with( + mgmt_resource, mock.ANY) + mock_auth_context.acquire_token_with_device_code.assert_called_once_with( + mgmt_resource, test_nonsense_code, mock.ANY) + mock_auth_context.acquire_token.assert_called_once_with( + mgmt_resource, self.user1, mock.ANY) + + @mock.patch('adal.AuthenticationContext', autospec=True) + @mock.patch('azure.cli.core._profile._get_authorization_code', autospec=True) + def test_find_subscriptions_through_authorization_code_flow(self, _get_authorization_code_mock, mock_auth_context): + import adal + cli = DummyCli() + mock_arm_client = mock.MagicMock() + mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)] + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] + token_cache = adal.TokenCache() + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, token_cache, lambda _: mock_arm_client) + _get_authorization_code_mock.return_value = { + 'code': 'code1', + 'reply_url': 'http://localhost:8888' + } + mgmt_resource = 'https://management.core.windows.net/' + temp_token_cache = mock.MagicMock() + type(mock_auth_context).cache = temp_token_cache + temp_token_cache.read_items.return_value = [] + mock_auth_context.acquire_token_with_authorization_code.return_value = self.token_entry1 + + # action + subs = finder.find_through_authorization_code_flow(None, mgmt_resource, 'https:/some_aad_point/common') + + # assert + self.assertEqual([self.subscription1], subs) + mock_auth_context.acquire_token.assert_called_once_with(mgmt_resource, self.user1, mock.ANY) + mock_auth_context.acquire_token_with_authorization_code.assert_called_once_with('code1', + 'http://localhost:8888', + mgmt_resource, mock.ANY, + None) + _get_authorization_code_mock.assert_called_once_with(mgmt_resource, 'https:/some_aad_point/common') + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_find_subscriptions_interactive_from_particular_tenent(self, mock_auth_context): + def just_raise(ex): + raise ex + + cli = DummyCli() + mock_arm_client = mock.MagicMock() + mock_arm_client.tenants.list.side_effect = lambda: just_raise( + ValueError("'tenants.list' should not occur")) + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + # action + subs = finder.find_through_interactive_flow(self.tenant_id, 'http://someresource') + + # assert + self.assertEqual([self.subscription1], subs) + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_find_subscriptions_from_service_principal_id(self, mock_auth_context): + cli = DummyCli() + mock_auth_context.acquire_token_with_client_credentials.return_value = self.token_entry1 + mock_arm_client = mock.MagicMock() + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + mgmt_resource = 'https://management.core.windows.net/' + # action + subs = finder.find_from_service_principal_id('my app', ServicePrincipalAuth('my secret'), + self.tenant_id, mgmt_resource) + + # assert + self.assertEqual([self.subscription1], subs) + mock_arm_client.tenants.list.assert_not_called() + mock_auth_context.acquire_token.assert_not_called() + mock_auth_context.acquire_token_with_client_credentials.assert_called_once_with( + mgmt_resource, 'my app', 'my secret') + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_find_subscriptions_from_service_principal_using_cert(self, mock_auth_context): + cli = DummyCli() + mock_auth_context.acquire_token_with_client_certificate.return_value = self.token_entry1 + mock_arm_client = mock.MagicMock() + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + mgmt_resource = 'https://management.core.windows.net/' + + curr_dir = os.path.dirname(os.path.realpath(__file__)) + test_cert_file = os.path.join(curr_dir, 'sp_cert.pem') + + # action + subs = finder.find_from_service_principal_id('my app', ServicePrincipalAuth(test_cert_file), + self.tenant_id, mgmt_resource) + + # assert + self.assertEqual([self.subscription1], subs) + mock_arm_client.tenants.list.assert_not_called() + mock_auth_context.acquire_token.assert_not_called() + mock_auth_context.acquire_token_with_client_certificate.assert_called_once_with( + mgmt_resource, 'my app', mock.ANY, mock.ANY, None) + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_find_subscriptions_from_service_principal_using_cert_sn_issuer(self, mock_auth_context): + cli = DummyCli() + mock_auth_context.acquire_token_with_client_certificate.return_value = self.token_entry1 + mock_arm_client = mock.MagicMock() + mock_arm_client.subscriptions.list.return_value = [deepcopy(self.subscription1_raw)] + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + mgmt_resource = 'https://management.core.windows.net/' + + curr_dir = os.path.dirname(os.path.realpath(__file__)) + test_cert_file = os.path.join(curr_dir, 'sp_cert.pem') + with open(test_cert_file) as cert_file: + cert_file_string = cert_file.read() + match = re.search(r'\-+BEGIN CERTIFICATE.+\-+(?P[^-]+)\-+END CERTIFICATE.+\-+', + cert_file_string, re.I) + public_certificate = match.group('public').strip() + # action + subs = finder.find_from_service_principal_id('my app', ServicePrincipalAuth(test_cert_file, use_cert_sn_issuer=True), + self.tenant_id, mgmt_resource) + + # assert + self.assertEqual([self.subscription1], subs) + mock_arm_client.tenants.list.assert_not_called() + mock_auth_context.acquire_token.assert_not_called() + mock_auth_context.acquire_token_with_client_certificate.assert_called_once_with( + mgmt_resource, 'my app', mock.ANY, mock.ANY, public_certificate) + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_refresh_accounts_one_user_account(self, mock_auth_context): + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + consolidated = profile._normalize_properties(self.user1, deepcopy([self.subscription1]), False) + profile._set_subscriptions(consolidated) + mock_auth_context.acquire_token_with_username_password.return_value = self.token_entry1 + mock_auth_context.acquire_token.return_value = self.token_entry1 + mock_arm_client = mock.MagicMock() + mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)] + mock_arm_client.subscriptions.list.return_value = deepcopy([self.subscription1_raw, self.subscription2_raw]) + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + # action + profile.refresh_accounts(finder) + + # assert + result = storage_mock['subscriptions'] + self.assertEqual(2, len(result)) + self.assertEqual(self.id1.split('/')[-1], result[0]['id']) + self.assertEqual(self.id2.split('/')[-1], result[1]['id']) + self.assertTrue(result[0]['isDefault']) + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_refresh_accounts_one_user_account_one_sp_account(self, mock_auth_context): + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + sp_subscription1 = SubscriptionStub('sp-sub/3', 'foo-subname', self.state1, 'foo_tenant.onmicrosoft.com') + consolidated = profile._normalize_properties(self.user1, deepcopy([self.subscription1]), False) + consolidated += profile._normalize_properties('http://foo', [sp_subscription1], True) + profile._set_subscriptions(consolidated) + mock_auth_context.acquire_token_with_username_password.return_value = self.token_entry1 + mock_auth_context.acquire_token.return_value = self.token_entry1 + mock_auth_context.acquire_token_with_client_credentials.return_value = self.token_entry1 + mock_arm_client = mock.MagicMock() + mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)] + mock_arm_client.subscriptions.list.side_effect = deepcopy([[self.subscription1], [self.subscription2, sp_subscription1]]) + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + profile._creds_cache.retrieve_secret_of_service_principal = lambda _: 'verySecret' + profile._creds_cache.flush_to_disk = lambda _: '' + # action + profile.refresh_accounts(finder) + + # assert + result = storage_mock['subscriptions'] + self.assertEqual(3, len(result)) + self.assertEqual(self.id1.split('/')[-1], result[0]['id']) + self.assertEqual(self.id2.split('/')[-1], result[1]['id']) + self.assertEqual('3', result[2]['id']) + self.assertTrue(result[0]['isDefault']) + + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_refresh_accounts_with_nothing(self, mock_auth_context): + cli = DummyCli() + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + consolidated = profile._normalize_properties(self.user1, deepcopy([self.subscription1]), False) + profile._set_subscriptions(consolidated) + mock_auth_context.acquire_token_with_username_password.return_value = self.token_entry1 + mock_auth_context.acquire_token.return_value = self.token_entry1 + mock_arm_client = mock.MagicMock() + mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)] + mock_arm_client.subscriptions.list.return_value = [] + finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client) + # action + profile.refresh_accounts(finder) + + # assert + result = storage_mock['subscriptions'] + self.assertEqual(0, len(result)) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + def test_credscache_load_tokens_and_sp_creds_with_secret(self, mock_read_file): + cli = DummyCli() + test_sp = { + "servicePrincipalId": "myapp", + "servicePrincipalTenant": "mytenant", + "accessToken": "Secret" + } + mock_read_file.return_value = [self.token_entry1, test_sp] + + # action + creds_cache = CredsCache(cli, async_persist=False) + + # assert + token_entries = [entry for _, entry in creds_cache.load_adal_token_cache().read_items()] + self.assertEqual(token_entries, [self.token_entry1]) + self.assertEqual(creds_cache._service_principal_creds, [test_sp]) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + def test_credscache_load_tokens_and_sp_creds_with_cert(self, mock_read_file): + cli = DummyCli() + test_sp = { + "servicePrincipalId": "myapp", + "servicePrincipalTenant": "mytenant", + "certificateFile": 'junkcert.pem' + } + mock_read_file.return_value = [test_sp] + + # action + creds_cache = CredsCache(cli, async_persist=False) + creds_cache.load_adal_token_cache() + + # assert + self.assertEqual(creds_cache._service_principal_creds, [test_sp]) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + def test_credscache_retrieve_sp_secret_with_cert(self, mock_read_file): + cli = DummyCli() + test_sp = { + "servicePrincipalId": "myapp", + "servicePrincipalTenant": "mytenant", + "certificateFile": 'junkcert.pem' + } + mock_read_file.return_value = [test_sp] + + # action + creds_cache = CredsCache(cli, async_persist=False) + creds_cache.load_adal_token_cache() + + # assert + self.assertEqual(creds_cache.retrieve_secret_of_service_principal(test_sp['servicePrincipalId']), None) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('os.fdopen', autospec=True) + @mock.patch('os.open', autospec=True) + def test_credscache_add_new_sp_creds(self, _, mock_open_for_write, mock_read_file): + cli = DummyCli() + test_sp = { + "servicePrincipalId": "myapp", + "servicePrincipalTenant": "mytenant", + "accessToken": "Secret" + } + test_sp2 = { + "servicePrincipalId": "myapp2", + "servicePrincipalTenant": "mytenant2", + "accessToken": "Secret2" + } + mock_open_for_write.return_value = FileHandleStub() + mock_read_file.return_value = [self.token_entry1, test_sp] + creds_cache = CredsCache(cli, async_persist=False) + + # action + creds_cache.save_service_principal_cred(test_sp2) + + # assert + token_entries = [e for _, e in creds_cache.adal_token_cache.read_items()] # noqa: F812 + self.assertEqual(token_entries, [self.token_entry1]) + self.assertEqual(creds_cache._service_principal_creds, [test_sp, test_sp2]) + mock_open_for_write.assert_called_with(mock.ANY, 'w+') + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('os.fdopen', autospec=True) + @mock.patch('os.open', autospec=True) + def test_credscache_add_preexisting_sp_creds(self, _, mock_open_for_write, mock_read_file): + cli = DummyCli() + test_sp = { + "servicePrincipalId": "myapp", + "servicePrincipalTenant": "mytenant", + "accessToken": "Secret" + } + mock_open_for_write.return_value = FileHandleStub() + mock_read_file.return_value = [test_sp] + creds_cache = CredsCache(cli, async_persist=False) + + # action + creds_cache.save_service_principal_cred(test_sp) + + # assert + self.assertEqual(creds_cache._service_principal_creds, [test_sp]) + self.assertFalse(mock_open_for_write.called) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('os.fdopen', autospec=True) + @mock.patch('os.open', autospec=True) + def test_credscache_add_preexisting_sp_new_secret(self, _, mock_open_for_write, mock_read_file): + cli = DummyCli() + test_sp = { + "servicePrincipalId": "myapp", + "servicePrincipalTenant": "mytenant", + "accessToken": "Secret" + } + mock_open_for_write.return_value = FileHandleStub() + mock_read_file.return_value = [test_sp] + creds_cache = CredsCache(cli, async_persist=False) + + new_creds = test_sp.copy() + new_creds['accessToken'] = 'Secret2' + # action + creds_cache.save_service_principal_cred(new_creds) + + # assert + self.assertEqual(creds_cache._service_principal_creds, [new_creds]) + self.assertTrue(mock_open_for_write.called) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('os.fdopen', autospec=True) + @mock.patch('os.open', autospec=True) + def test_credscache_match_service_principal_correctly(self, _, mock_open_for_write, mock_read_file): + cli = DummyCli() + test_sp = { + "servicePrincipalId": "myapp", + "servicePrincipalTenant": "mytenant", + "accessToken": "Secret" + } + mock_open_for_write.return_value = FileHandleStub() + mock_read_file.return_value = [test_sp] + factory = mock.MagicMock() + factory.side_effect = ValueError('SP was found') + creds_cache = CredsCache(cli, factory, async_persist=False) + + # action and verify(we plant an exception to throw after the SP was found; so if the exception is thrown, + # we know the matching did go through) + self.assertRaises(ValueError, creds_cache.retrieve_token_for_service_principal, 'myapp', 'resource1', 'mytenant', False) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('os.fdopen', autospec=True) + @mock.patch('os.open', autospec=True) + def test_credscache_remove_creds(self, _, mock_open_for_write, mock_read_file): + cli = DummyCli() + test_sp = { + "servicePrincipalId": "myapp", + "servicePrincipalTenant": "mytenant", + "accessToken": "Secret" + } + mock_open_for_write.return_value = FileHandleStub() + mock_read_file.return_value = [self.token_entry1, test_sp] + creds_cache = CredsCache(cli, async_persist=False) + + # action #1, logout a user + creds_cache.remove_cached_creds(self.user1) + + # assert #1 + token_entries = [e for _, e in creds_cache.adal_token_cache.read_items()] # noqa: F812 + self.assertEqual(token_entries, []) + + # action #2 logout a service principal + creds_cache.remove_cached_creds('myapp') + + # assert #2 + self.assertEqual(creds_cache._service_principal_creds, []) + + mock_open_for_write.assert_called_with(mock.ANY, 'w+') + self.assertEqual(mock_open_for_write.call_count, 2) + + @mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True) + @mock.patch('os.fdopen', autospec=True) + @mock.patch('os.open', autospec=True) + @mock.patch('adal.AuthenticationContext', autospec=True) + def test_credscache_new_token_added_by_adal(self, mock_adal_auth_context, _, mock_open_for_write, mock_read_file): # pylint: disable=line-too-long + cli = DummyCli() + token_entry2 = { + "accessToken": "new token", + "tokenType": "Bearer", + "userId": self.user1 + } + + def acquire_token_side_effect(*args): # pylint: disable=unused-argument + creds_cache.adal_token_cache.has_state_changed = True + return token_entry2 + + def get_auth_context(_, authority, **kwargs): # pylint: disable=unused-argument + mock_adal_auth_context.cache = kwargs['cache'] + return mock_adal_auth_context + + mock_adal_auth_context.acquire_token.side_effect = acquire_token_side_effect + mock_open_for_write.return_value = FileHandleStub() + mock_read_file.return_value = [self.token_entry1] + creds_cache = CredsCache(cli, auth_ctx_factory=get_auth_context, async_persist=False) + + # action + mgmt_resource = 'https://management.core.windows.net/' + token_type, token, _ = creds_cache.retrieve_token_for_user(self.user1, self.tenant_id, + mgmt_resource) + mock_adal_auth_context.acquire_token.assert_called_once_with( + 'https://management.core.windows.net/', + self.user1, + mock.ANY) + + # assert + mock_open_for_write.assert_called_with(mock.ANY, 'w+') + self.assertEqual(token, 'new token') + self.assertEqual(token_type, token_entry2['tokenType']) + + @mock.patch('azure.cli.core._profile.get_file_json', autospec=True) + def test_credscache_good_error_on_file_corruption(self, mock_read_file): + mock_read_file.side_effect = ValueError('a bad error for you') + cli = DummyCli() + + # action + creds_cache = CredsCache(cli, async_persist=False) + + # assert + with self.assertRaises(CLIError) as context: + creds_cache.load_adal_token_cache() + + self.assertTrue(re.findall(r'bad error for you', str(context.exception))) + + def test_service_principal_auth_client_secret(self): + sp_auth = ServicePrincipalAuth('verySecret!') + result = sp_auth.get_entry_to_persist('sp_id1', 'tenant1') + self.assertEqual(result, { + 'servicePrincipalId': 'sp_id1', + 'servicePrincipalTenant': 'tenant1', + 'accessToken': 'verySecret!' + }) + + def test_service_principal_auth_client_cert(self): + curr_dir = os.path.dirname(os.path.realpath(__file__)) + test_cert_file = os.path.join(curr_dir, 'sp_cert.pem') + sp_auth = ServicePrincipalAuth(test_cert_file) + + result = sp_auth.get_entry_to_persist('sp_id1', 'tenant1') + self.assertEqual(result, { + 'servicePrincipalId': 'sp_id1', + 'servicePrincipalTenant': 'tenant1', + 'certificateFile': test_cert_file, + 'thumbprint': 'F0:6A:53:84:8B:BE:71:4A:42:90:D6:9D:33:52:79:C1:D0:10:73:FD' + }) + + def test_detect_adfs_authority_url(self): + cli = DummyCli() + adfs_url_1 = 'https://adfs.redmond.ext-u15f2402.masd.stbtest.microsoft.com/adfs/' + cli.cloud.endpoints.active_directory = adfs_url_1 + storage_mock = {'subscriptions': None} + profile = Profile(cli_ctx=cli, storage=storage_mock, use_global_creds_cache=False, async_persist=False) + + # test w/ trailing slash + r = profile.auth_ctx_factory(cli, 'common', None) + self.assertEqual(r.authority.url, adfs_url_1.rstrip('/')) + + # test w/o trailing slash + adfs_url_2 = 'https://adfs.redmond.ext-u15f2402.masd.stbtest.microsoft.com/adfs' + cli.cloud.endpoints.active_directory = adfs_url_2 + r = profile.auth_ctx_factory(cli, 'common', None) + self.assertEqual(r.authority.url, adfs_url_2) + + # test w/ regular aad + aad_url = 'https://login.microsoftonline.com' + cli.cloud.endpoints.active_directory = aad_url + r = profile.auth_ctx_factory(cli, 'common', None) + self.assertEqual(r.authority.url, aad_url + '/common') + + +class FileHandleStub(object): # pylint: disable=too-few-public-methods + + def write(self, content): + pass + + def __enter__(self): + return self + + def __exit__(self, _2, _3, _4): + pass + + +class SubscriptionStub(Subscription): # pylint: disable=too-few-public-methods + + def __init__(self, id, display_name, state, tenant_id=None): # pylint: disable=redefined-builtin + policies = SubscriptionPolicies() + policies.spending_limit = SpendingLimit.current_period_off + policies.quota_id = 'some quota' + super(SubscriptionStub, self).__init__(subscription_policies=policies, authorization_source='some_authorization_source') + self.id = id + self.subscription_id = id.split('/')[1] + self.display_name = display_name + self.state = state + # for a SDK Subscription, tenant_id isn't present + # for a _find_using_specific_tenant Subscription, tenant_id means token tenant id + if tenant_id: + self.tenant_id = tenant_id + + +class TenantStub(object): # pylint: disable=too-few-public-methods + + def __init__(self, tenant_id): + self.tenant_id = tenant_id + + +class MSRestAzureAuthStub: + def __init__(self, *args, **kwargs): + self._token = { + 'token_type': 'Bearer', + 'access_token': TestProfile.test_msi_access_token + } + self.set_token_invoked_count = 0 + self.token_read_count = 0 + self.client_id = kwargs.get('client_id') + self.object_id = kwargs.get('object_id') + self.msi_res_id = kwargs.get('msi_res_id') + + def set_token(self): + self.set_token_invoked_count += 1 + + @property + def token(self): + self.token_read_count += 1 + return self._token + + @token.setter + def token(self, value): + self._token = value + + +if __name__ == '__main__': + unittest.main() diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_auth_setting.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_auth_setting.yaml index 0a431f71941..c79c773feb4 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_auth_setting.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_auth_setting.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_be_idempotent_and_return_existing_bot_info.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_be_idempotent_and_return_existing_bot_info.yaml index 495fb61c2c3..aa5f09f1daf 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_be_idempotent_and_return_existing_bot_info.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_be_idempotent_and_return_existing_bot_info.yaml @@ -11,12 +11,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -68,7 +68,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jan 2020 23:48:20 GMT + - Wed, 05 Feb 2020 02:35:22 GMT expires: - '-1' pragma: @@ -100,8 +100,8 @@ interactions: ParameterSetName: - -k -g -n -d -e --appid -p --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: POST @@ -117,7 +117,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jan 2020 23:48:21 GMT + - Wed, 05 Feb 2020 02:35:23 GMT expires: - '-1' pragma: @@ -138,7 +138,7 @@ interactions: - request: body: '{"location": "global", "tags": {"key1": "value1"}, "sku": {"name": "F0"}, "kind": "bot", "properties": {"displayName": "cli000002", "description": "description1", - "endpoint": "https://www.google.com/api/messages", "msaAppId": "cb493b0b-af51-4cbb-a538-db6cf00a67cd"}}' + "endpoint": "https://www.google.com/api/messages", "msaAppId": "ca653127-40be-42bc-a00e-b7a27d55eb88"}}' headers: Accept: - application/json @@ -155,15 +155,15 @@ interactions: ParameterSetName: - -k -g -n -d -e --appid -p --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"2000afed-0000-0100-0000-5e28df470000\"","location":"global","sku":{"name":"F0"},"kind":"bot","tags":{"key1":"value1"},"properties":{"displayName":"cli000002","description":"description1","iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://www.google.com/api/messages","msaAppId":"cb493b0b-af51-4cbb-a538-db6cf00a67cd","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0200ca7f-0000-0100-0000-5e3a29f50000\"","location":"global","sku":{"name":"F0"},"kind":"bot","tags":{"key1":"value1"},"properties":{"displayName":"cli000002","description":"description1","iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://www.google.com/api/messages","msaAppId":"ca653127-40be-42bc-a00e-b7a27d55eb88","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -172,9 +172,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jan 2020 23:48:22 GMT + - Wed, 05 Feb 2020 02:35:34 GMT etag: - - '"2000afed-0000-0100-0000-5e28df470000"' + - '"0200ca7f-0000-0100-0000-5e3a29f50000"' expires: - '-1' pragma: @@ -184,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -202,12 +202,12 @@ interactions: ParameterSetName: - -k -g -n -d -e --appid -p --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -259,7 +259,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jan 2020 23:48:23 GMT + - Wed, 05 Feb 2020 02:35:36 GMT expires: - '-1' pragma: @@ -291,8 +291,8 @@ interactions: ParameterSetName: - -k -g -n -d -e --appid -p --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: POST @@ -308,7 +308,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jan 2020 23:48:23 GMT + - Wed, 05 Feb 2020 02:35:37 GMT expires: - '-1' pragma: @@ -340,15 +340,15 @@ interactions: ParameterSetName: - -k -g -n -d -e --appid -p --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"2000afed-0000-0100-0000-5e28df470000\"","location":"global","sku":{"name":"F0"},"kind":"bot","tags":{"key1":"value1"},"properties":{"displayName":"cli000002","description":"description1","iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://www.google.com/api/messages","msaAppId":"cb493b0b-af51-4cbb-a538-db6cf00a67cd","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0200ca7f-0000-0100-0000-5e3a29f50000\"","location":"global","sku":{"name":"F0"},"kind":"bot","tags":{"key1":"value1"},"properties":{"displayName":"cli000002","description":"description1","iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://www.google.com/api/messages","msaAppId":"ca653127-40be-42bc-a00e-b7a27d55eb88","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -357,9 +357,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jan 2020 23:48:24 GMT + - Wed, 05 Feb 2020 02:35:37 GMT etag: - - '"2000afed-0000-0100-0000-5e28df470000"' + - '"0200ca7f-0000-0100-0000-5e3a29f50000"' expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_create_registration_bot_without_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_create_registration_bot_without_endpoint.yaml index cf5fe79c02b..4f9dccedd46 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_create_registration_bot_without_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_create_registration_bot_without_endpoint.yaml @@ -61,7 +61,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_raise_error_for_empty_password_strings_for_webapp_bots.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_raise_error_for_empty_password_strings_for_webapp_bots.yaml index 57db6a07621..8d27a4f631c 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_raise_error_for_empty_password_strings_for_webapp_bots.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_raise_error_for_empty_password_strings_for_webapp_bots.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_raise_error_for_invalid_app_id_args.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_raise_error_for_invalid_app_id_args.yaml index d2d1c4663a2..d732938f2c6 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_raise_error_for_invalid_app_id_args.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_raise_error_for_invalid_app_id_args.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -154,7 +154,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -292,7 +292,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_raise_error_with_no_password_for_webapp_bots.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_raise_error_with_no_password_for_webapp_bots.yaml index 14f9a27a0f6..680c6928475 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_raise_error_with_no_password_for_webapp_bots.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_should_raise_error_with_no_password_for_webapp_bots.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_csharp_echo_webapp_bot.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_csharp_echo_webapp_bot.yaml index 9751232e3d0..4fbd95902b5 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_csharp_echo_webapp_bot.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_csharp_echo_webapp_bot.yaml @@ -61,7 +61,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_csharp_empty_webapp_for_webapp_bot.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_csharp_empty_webapp_for_webapp_bot.yaml index 0373008124f..087a58a80ca 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_csharp_empty_webapp_for_webapp_bot.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_csharp_empty_webapp_for_webapp_bot.yaml @@ -66,7 +66,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_js_echo_webapp_bot.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_js_echo_webapp_bot.yaml index f390ea98aa0..70855b26f8b 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_js_echo_webapp_bot.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_js_echo_webapp_bot.yaml @@ -61,7 +61,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_js_empty_webapp_for_webapp_bot.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_js_empty_webapp_for_webapp_bot.yaml index 49e7ff3dafa..90d53e4dec1 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_js_empty_webapp_for_webapp_bot.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_js_empty_webapp_for_webapp_bot.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_appsettings_for_v4_csharp_webapp_echo_bots_no_bot_file.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_appsettings_for_v4_csharp_webapp_echo_bots_no_bot_file.yaml index 0eafb54f91c..da8b274d60b 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_appsettings_for_v4_csharp_webapp_echo_bots_no_bot_file.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_appsettings_for_v4_csharp_webapp_echo_bots_no_bot_file.yaml @@ -61,7 +61,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_env_file_for_v4_node_webapp_echo_bots_no_bot_file.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_env_file_for_v4_node_webapp_echo_bots_no_bot_file.yaml index 00bf4be623d..46744277de3 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_env_file_for_v4_node_webapp_echo_bots_no_bot_file.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_env_file_for_v4_node_webapp_echo_bots_no_bot_file.yaml @@ -61,7 +61,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_keep_node_modules_should_not_empty_node_modules_or_install_dependencies.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_keep_node_modules_should_not_empty_node_modules_or_install_dependencies.yaml index c2a94714c93..b7438def9ae 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_keep_node_modules_should_not_empty_node_modules_or_install_dependencies.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_keep_node_modules_should_not_empty_node_modules_or_install_dependencies.yaml @@ -61,7 +61,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_publish_remove_node_iis_files_if_not_already_local.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_publish_remove_node_iis_files_if_not_already_local.yaml index 2569375e0dc..0f266f46ac1 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_publish_remove_node_iis_files_if_not_already_local.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_publish_remove_node_iis_files_if_not_already_local.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_registration_bot_create.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_registration_bot_create.yaml index 968d3cbf2ec..4143a5fe15a 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_registration_bot_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_registration_bot_create.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_should_throw_if_name_is_unavailable.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_should_throw_if_name_is_unavailable.yaml index bf46ced2d7b..e170f8c6519 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_should_throw_if_name_is_unavailable.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_should_throw_if_name_is_unavailable.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -207,7 +207,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_csharp_webapp_bot.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_csharp_webapp_bot.yaml index 3abe15e982d..e8f635dc32f 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_csharp_webapp_bot.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_csharp_webapp_bot.yaml @@ -61,7 +61,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_js_webapp_bot.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_js_webapp_bot.yaml index 3ddff2a0626..33a887fbed6 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_js_webapp_bot.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_js_webapp_bot.yaml @@ -61,7 +61,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_update_directline.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_update_directline.yaml index e47dffbc61e..5e759db2954 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_update_directline.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_update_directline.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_update_should_update_bot_properties.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_update_should_update_bot_properties.yaml index 875b43ba454..10872a4b25b 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_update_should_update_bot_properties.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_update_should_update_bot_properties.yaml @@ -61,7 +61,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_create_v4_webapp_bot_should_succeed_with_ending_hyphen.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_create_v4_webapp_bot_should_succeed_with_ending_hyphen.yaml index 7891b84e82b..23b3f46a323 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_create_v4_webapp_bot_should_succeed_with_ending_hyphen.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_create_v4_webapp_bot_should_succeed_with_ending_hyphen.yaml @@ -61,7 +61,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_directline_channel.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_directline_channel.yaml index 173b1a0b382..04bb20ac056 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_directline_channel.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_directline_channel.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_msteams_channel.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_msteams_channel.yaml index 4548323a575..ca61e505839 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_msteams_channel.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_msteams_channel.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_prepare_publish_should_raise_cli_error_for_v4_bots.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_prepare_publish_should_raise_cli_error_for_v4_bots.yaml index 66f02d4552e..0d4cee0a7c1 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_prepare_publish_should_raise_cli_error_for_v4_bots.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_prepare_publish_should_raise_cli_error_for_v4_bots.yaml @@ -66,7 +66,7 @@ interactions: subscriptionclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East Asia","longitude":"114.188","latitude":"22.267"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia","name":"southeastasia","displayName":"Southeast diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_prepare_publish_with_registration_bot_should_raise_error.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_prepare_publish_with_registration_bot_should_raise_error.yaml index 196e5ae9f4b..7ea35bec5a8 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_prepare_publish_with_registration_bot_should_raise_error.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_prepare_publish_with_registration_bot_should_raise_error.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_skype_channel.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_skype_channel.yaml index e88423d24a2..c9a7a57914c 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_skype_channel.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_skype_channel.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_webapp_bot.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_webapp_bot.yaml index ac97689743a..2634d873db8 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_webapp_bot.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_webapp_bot.yaml @@ -40,7 +40,7 @@ interactions: msrest_azure/0.4.34 subscriptionclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.46] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East Asia","longitude":"114.188","latitude":"22.267"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia","name":"southeastasia","displayName":"Southeast diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_webchat_channel.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_webchat_channel.yaml index 2e2f186d5fd..8f058244846 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_webchat_channel.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_webchat_channel.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_file_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_file_mgmt.yaml index b4657bcf360..c581952ee79 100644 --- a/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_file_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_file_mgmt.yaml @@ -17,18 +17,18 @@ interactions: ParameterSetName: - -g -n -l --disable-encryption User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 response: body: - string: '{"properties":{"encryptionState":"Disabled","provisioningState":"Creating","state":null,"endpoint":null,"accountId":"c72f8318-0cf3-4439-aa8e-86da7f8708a5"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"encryptionState":"Disabled","provisioningState":"Creating","state":null,"endpoint":null,"accountId":"5d3f15dc-61dc-40f2-b121-53171a49e2b7"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/c72f8318-0cf3-4439-aa8e-86da7f8708a5_0?api-version=2016-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/5d3f15dc-61dc-40f2-b121-53171a49e2b7_0?api-version=2016-11-01 cache-control: - no-cache content-length: @@ -36,7 +36,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Oct 2019 01:46:08 GMT + - Tue, 21 Jan 2020 08:37:30 GMT expires: - '-1' location: @@ -52,7 +52,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -72,10 +72,10 @@ interactions: ParameterSetName: - -g -n -l --disable-encryption User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/c72f8318-0cf3-4439-aa8e-86da7f8708a5_0?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/5d3f15dc-61dc-40f2-b121-53171a49e2b7_0?api-version=2016-11-01 response: body: string: '{"status":"InProgress"}' @@ -87,7 +87,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Oct 2019 01:46:19 GMT + - Tue, 21 Jan 2020 08:37:42 GMT expires: - '-1' pragma: @@ -123,10 +123,10 @@ interactions: ParameterSetName: - -g -n -l --disable-encryption User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/c72f8318-0cf3-4439-aa8e-86da7f8708a5_0?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/5d3f15dc-61dc-40f2-b121-53171a49e2b7_0?api-version=2016-11-01 response: body: string: '{"status":"Succeeded"}' @@ -138,7 +138,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Oct 2019 01:46:51 GMT + - Tue, 21 Jan 2020 08:38:13 GMT expires: - '-1' pragma: @@ -174,22 +174,22 @@ interactions: ParameterSetName: - -g -n -l --disable-encryption User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 response: body: - string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Disabled","encryptionConfig":{},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"c72f8318-0cf3-4439-aa8e-86da7f8708a5","creationTime":"2019-10-23T01:46:08.069291Z","lastModifiedTime":"2019-10-23T01:46:08.069291Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Disabled","encryptionConfig":{},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"5d3f15dc-61dc-40f2-b121-53171a49e2b7","creationTime":"2020-01-21T08:37:30.3078784Z","lastModifiedTime":"2020-01-21T08:37:30.3078784Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' headers: cache-control: - no-cache content-length: - - '941' + - '943' content-type: - application/json date: - - Wed, 23 Oct 2019 01:46:52 GMT + - Tue, 21 Jan 2020 08:38:15 GMT expires: - '-1' pragma: @@ -227,24 +227,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 response: body: - string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Disabled","encryptionConfig":{},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"c72f8318-0cf3-4439-aa8e-86da7f8708a5","creationTime":"2019-10-23T01:46:08.069291Z","lastModifiedTime":"2019-10-23T01:46:08.069291Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Disabled","encryptionConfig":{},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"5d3f15dc-61dc-40f2-b121-53171a49e2b7","creationTime":"2020-01-21T08:37:30.3078784Z","lastModifiedTime":"2020-01-21T08:37:30.3078784Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' headers: cache-control: - no-cache content-length: - - '941' + - '943' content-type: - application/json date: - - Wed, 23 Oct 2019 01:46:55 GMT + - Tue, 21 Jan 2020 08:38:17 GMT expires: - '-1' pragma: @@ -276,13 +276,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01 [b58b7fd2-e587-4738-9f01-ce6a5072bac7][2019-10-22T18:46:59.5247275-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01 [ddddbe22-fb4f-4a45-8c61-2035b832ba19][2020-01-21T00:38:19.8413567-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -291,7 +291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:46:58 GMT + - Tue, 21 Jan 2020 08:38:19 GMT expires: - '-1' pragma: @@ -319,7 +319,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=MKDIRS&api-version=2018-09-01 response: @@ -333,7 +333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:46:59 GMT + - Tue, 21 Jan 2020 08:38:19 GMT expires: - '-1' pragma: @@ -359,12 +359,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1571795219866,"modificationTime":1571795219866,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1579595900167,"modificationTime":1579595900167,"replication":0,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -373,7 +373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:01 GMT + - Tue, 21 Jan 2020 08:38:21 GMT expires: - '-1' pragma: @@ -399,13 +399,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01/adltestfile01 [c58e2955-ad84-48b8-bd7c-a3f3e9e12366][2019-10-22T18:47:03.2298479-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01/adltestfile01 [175610a7-1db5-45bf-bb24-9aaf13c00f02][2020-01-21T00:38:22.9479116-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -414,7 +414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:02 GMT + - Tue, 21 Jan 2020 08:38:22 GMT expires: - '-1' pragma: @@ -440,13 +440,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01/adltestfile01 [d78d0ab2-51d4-41c9-a674-048b6f1fad09][2019-10-22T18:47:03.5736054-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01/adltestfile01 [e57406eb-66b6-457a-b6d7-a5647bef3b75][2020-01-21T00:38:23.2447907-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -455,7 +455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:02 GMT + - Tue, 21 Jan 2020 08:38:22 GMT expires: - '-1' pragma: @@ -483,7 +483,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -497,7 +497,7 @@ interactions: contentlength: - '0' date: - - Wed, 23 Oct 2019 01:47:03 GMT + - Tue, 21 Jan 2020 08:38:23 GMT expires: - '-1' location: @@ -527,7 +527,7 @@ interactions: Content-Length: - '6' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -539,7 +539,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:03 GMT + - Tue, 21 Jan 2020 08:38:23 GMT expires: - '-1' pragma: @@ -565,12 +565,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -579,7 +579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:05 GMT + - Tue, 21 Jan 2020 08:38:24 GMT expires: - '-1' pragma: @@ -605,12 +605,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -619,7 +619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:06 GMT + - Tue, 21 Jan 2020 08:38:26 GMT expires: - '-1' pragma: @@ -647,7 +647,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfsext/adltestfolder01/adltestfile01?OP=SETEXPIRY&api-version=2018-09-01&expiryOption=Absolute&expireTime=1896091200000 response: @@ -659,7 +659,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:07 GMT + - Tue, 21 Jan 2020 08:38:26 GMT expires: - '-1' pragma: @@ -683,12 +683,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":1896091200000,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":1896091200000,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -697,7 +697,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:08 GMT + - Tue, 21 Jan 2020 08:38:28 GMT expires: - '-1' pragma: @@ -723,12 +723,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":1896091200000,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":1896091200000,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -737,7 +737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:10 GMT + - Tue, 21 Jan 2020 08:38:29 GMT expires: - '-1' pragma: @@ -765,7 +765,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfsext/adltestfolder01/adltestfile01?OP=SETEXPIRY&api-version=2018-09-01&expiryOption=NeverExpire response: @@ -777,7 +777,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:11 GMT + - Tue, 21 Jan 2020 08:38:29 GMT expires: - '-1' pragma: @@ -801,12 +801,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -815,7 +815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:12 GMT + - Tue, 21 Jan 2020 08:38:31 GMT expires: - '-1' pragma: @@ -841,13 +841,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02 [1d04e64d-320f-4152-8ad2-e8e7a532af7e][2019-10-22T18:47:14.7871070-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02 [6e9c0edc-f4a6-4c04-af01-f313210d3f59][2020-01-21T00:38:33.1165843-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -856,7 +856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:14 GMT + - Tue, 21 Jan 2020 08:38:32 GMT expires: - '-1' pragma: @@ -884,7 +884,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=MKDIRS&api-version=2018-09-01 response: @@ -898,7 +898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:14 GMT + - Tue, 21 Jan 2020 08:38:32 GMT expires: - '-1' pragma: @@ -926,7 +926,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=RENAME&api-version=2018-09-01&destination=adltestfolder02%2Fadltestfile01 response: @@ -940,7 +940,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:16 GMT + - Tue, 21 Jan 2020 08:38:34 GMT expires: - '-1' pragma: @@ -966,12 +966,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -980,7 +980,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:17 GMT + - Tue, 21 Jan 2020 08:38:35 GMT expires: - '-1' pragma: @@ -1006,12 +1006,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1020,7 +1020,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:19 GMT + - Tue, 21 Jan 2020 08:38:37 GMT expires: - '-1' pragma: @@ -1046,12 +1046,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1060,7 +1060,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:19 GMT + - Tue, 21 Jan 2020 08:38:37 GMT expires: - '-1' pragma: @@ -1086,12 +1086,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1100,7 +1100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:20 GMT + - Tue, 21 Jan 2020 08:38:38 GMT expires: - '-1' pragma: @@ -1126,7 +1126,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=OPEN&api-version=2018-09-01&offset=0&length=6&read=true&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1138,7 +1138,7 @@ interactions: content-type: - application/octet-stream date: - - Wed, 23 Oct 2019 01:47:20 GMT + - Tue, 21 Jan 2020 08:38:38 GMT expires: - '-1' pragma: @@ -1166,12 +1166,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1180,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:22 GMT + - Tue, 21 Jan 2020 08:38:39 GMT expires: - '-1' pragma: @@ -1206,12 +1206,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1220,7 +1220,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:22 GMT + - Tue, 21 Jan 2020 08:38:39 GMT expires: - '-1' pragma: @@ -1246,7 +1246,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=OPEN&api-version=2018-09-01&offset=3&length=3&read=true&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1258,7 +1258,7 @@ interactions: content-type: - application/octet-stream date: - - Wed, 23 Oct 2019 01:47:23 GMT + - Tue, 21 Jan 2020 08:38:40 GMT expires: - '-1' pragma: @@ -1286,12 +1286,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: body: - string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"adltestfile01","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}]}}' + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"adltestfile01","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}]}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1300,7 +1300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:24 GMT + - Tue, 21 Jan 2020 08:38:42 GMT expires: - '-1' pragma: @@ -1326,12 +1326,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1340,7 +1340,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:26 GMT + - Tue, 21 Jan 2020 08:38:42 GMT expires: - '-1' pragma: @@ -1366,12 +1366,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595903885,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1380,7 +1380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:27 GMT + - Tue, 21 Jan 2020 08:38:43 GMT expires: - '-1' pragma: @@ -1408,7 +1408,7 @@ interactions: Content-Length: - '6' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=6&append=true&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1420,7 +1420,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:27 GMT + - Tue, 21 Jan 2020 08:38:43 GMT expires: - '-1' pragma: @@ -1446,12 +1446,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":12,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795248016,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":12,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595903557,"modificationTime":1579595924479,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1460,7 +1460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:28 GMT + - Tue, 21 Jan 2020 08:38:45 GMT expires: - '-1' pragma: @@ -1486,13 +1486,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01/adltestfile02 [af31b0ac-45f3-4a75-934c-1a19719dacda][2019-10-22T18:47:31.2613013-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01/adltestfile02 [248f27a4-36c8-4fe8-b339-c38597260fac][2020-01-21T00:38:47.5250925-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1501,7 +1501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:30 GMT + - Tue, 21 Jan 2020 08:38:46 GMT expires: - '-1' pragma: @@ -1527,7 +1527,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: @@ -1541,7 +1541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:31 GMT + - Tue, 21 Jan 2020 08:38:46 GMT expires: - '-1' pragma: @@ -1567,13 +1567,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01/adltestfile02 [22a473e6-4cf8-492f-a021-9f57a720d579][2019-10-22T18:47:32.9972952-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01/adltestfile02 [ddb63965-9255-4edb-8a20-6bb645a02bf3][2020-01-21T00:38:49.0721047-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1582,7 +1582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:32 GMT + - Tue, 21 Jan 2020 08:38:48 GMT expires: - '-1' pragma: @@ -1610,7 +1610,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1624,7 +1624,7 @@ interactions: contentlength: - '0' date: - - Wed, 23 Oct 2019 01:47:32 GMT + - Tue, 21 Jan 2020 08:38:49 GMT expires: - '-1' location: @@ -1654,7 +1654,7 @@ interactions: Content-Length: - '18' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1666,7 +1666,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:33 GMT + - Tue, 21 Jan 2020 08:38:49 GMT expires: - '-1' pragma: @@ -1692,12 +1692,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":18,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795253380,"modificationTime":1571795253825,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":18,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595929421,"modificationTime":1579595929790,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1706,7 +1706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:35 GMT + - Tue, 21 Jan 2020 08:38:51 GMT expires: - '-1' pragma: @@ -1736,7 +1736,7 @@ interactions: Content-Type: - application/json User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=MSCONCAT&api-version=2018-09-01&deleteSourceDirectory=false response: @@ -1748,7 +1748,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:36 GMT + - Tue, 21 Jan 2020 08:38:53 GMT expires: - '-1' pragma: @@ -1774,12 +1774,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595933081,"modificationTime":1579595933089,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1788,7 +1788,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:39 GMT + - Tue, 21 Jan 2020 08:38:54 GMT expires: - '-1' pragma: @@ -1814,12 +1814,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595933081,"modificationTime":1579595933089,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1828,7 +1828,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:40 GMT + - Tue, 21 Jan 2020 08:38:55 GMT expires: - '-1' pragma: @@ -1854,12 +1854,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: body: - string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}]}}' + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595933081,"modificationTime":1579595933089,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}]}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1868,7 +1868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:40 GMT + - Tue, 21 Jan 2020 08:38:55 GMT expires: - '-1' pragma: @@ -1894,12 +1894,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595933081,"modificationTime":1579595933089,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1908,7 +1908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:41 GMT + - Tue, 21 Jan 2020 08:38:56 GMT expires: - '-1' pragma: @@ -1934,7 +1934,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=OPEN&api-version=2018-09-01&offset=0&length=30&read=true&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1946,7 +1946,7 @@ interactions: content-type: - application/octet-stream date: - - Wed, 23 Oct 2019 01:47:43 GMT + - Tue, 21 Jan 2020 08:38:58 GMT expires: - '-1' pragma: @@ -1974,12 +1974,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1579595933081,"modificationTime":1579595933089,"replication":1,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1988,7 +1988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:44 GMT + - Tue, 21 Jan 2020 08:38:59 GMT expires: - '-1' pragma: @@ -2016,7 +2016,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: DELETE uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=DELETE&api-version=2018-09-01&recursive=False response: @@ -2030,7 +2030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:45 GMT + - Tue, 21 Jan 2020 08:38:59 GMT expires: - '-1' pragma: @@ -2056,7 +2056,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: @@ -2070,7 +2070,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:47 GMT + - Tue, 21 Jan 2020 08:39:01 GMT expires: - '-1' pragma: @@ -2096,12 +2096,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: body: - string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"adltestfolder01","type":"DIRECTORY","blockSize":0,"accessTime":1571795219866,"modificationTime":1571795266015,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}]}}' + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"adltestfolder01","type":"DIRECTORY","blockSize":0,"accessTime":1579595900167,"modificationTime":1579595940579,"replication":0,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","aclBit":false}]}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2110,7 +2110,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:47 GMT + - Tue, 21 Jan 2020 08:39:01 GMT expires: - '-1' pragma: @@ -2136,13 +2136,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02 [9cf2e171-e7ca-4f23-93e1-20df5f2764dd][2019-10-22T18:47:49.9141093-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02 [71ed4c82-c7fd-48c4-a066-00efd5cc4fad][2020-01-21T00:39:04.0536524-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2151,7 +2151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:49 GMT + - Tue, 21 Jan 2020 08:39:03 GMT expires: - '-1' pragma: @@ -2179,7 +2179,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=MKDIRS&api-version=2018-09-01 response: @@ -2193,7 +2193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:49 GMT + - Tue, 21 Jan 2020 08:39:03 GMT expires: - '-1' pragma: @@ -2219,13 +2219,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/tempfile01.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02/tempfile01.txt [0de87bdc-c3ea-4922-9744-105c78cf3d65][2019-10-22T18:47:51.9885756-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02/tempfile01.txt [02d34367-bd35-4067-9d44-a289804abc72][2020-01-21T00:39:05.9514658-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2234,7 +2234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:51 GMT + - Tue, 21 Jan 2020 08:39:05 GMT expires: - '-1' pragma: @@ -2260,13 +2260,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/tempfile01.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02/tempfile01.txt [1f364225-9638-4a6c-963c-7b982c9da3aa][2019-10-22T18:47:52.3635842-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02/tempfile01.txt [75b24d4e-c761-4453-bd68-91179ea1a109][2020-01-21T00:39:06.2795953-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2275,7 +2275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:51 GMT + - Tue, 21 Jan 2020 08:39:06 GMT expires: - '-1' pragma: @@ -2303,7 +2303,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/tempfile01.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -2317,7 +2317,7 @@ interactions: contentlength: - '0' date: - - Wed, 23 Oct 2019 01:47:51 GMT + - Tue, 21 Jan 2020 08:39:06 GMT expires: - '-1' location: @@ -2347,7 +2347,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/tempfile01.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -2359,7 +2359,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:52 GMT + - Tue, 21 Jan 2020 08:39:06 GMT expires: - '-1' pragma: @@ -2385,12 +2385,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1571795270274,"modificationTime":1571795272834,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1579595944388,"modificationTime":1579595946626,"replication":0,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2399,7 +2399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:54 GMT + - Tue, 21 Jan 2020 08:39:07 GMT expires: - '-1' pragma: @@ -2427,7 +2427,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: DELETE uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=DELETE&api-version=2018-09-01&recursive=True response: @@ -2441,7 +2441,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:54 GMT + - Tue, 21 Jan 2020 08:39:08 GMT expires: - '-1' pragma: @@ -2467,13 +2467,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02 [1ecf8449-d7a4-430c-b0d0-5ce58d4fb2aa][2019-10-22T18:48:07.4718630-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02 [b11dd9ac-59e6-430b-ab93-ef842f49caa5][2020-01-21T00:39:20.6138267-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2482,7 +2482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:48:06 GMT + - Tue, 21 Jan 2020 08:39:19 GMT expires: - '-1' pragma: @@ -2508,12 +2508,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1571795219866,"modificationTime":1571795266015,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1579595900167,"modificationTime":1579595940579,"replication":0,"permission":"770","owner":"0d504196-1423-4569-9a6e-15149656f0ee","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2522,7 +2522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:48:08 GMT + - Tue, 21 Jan 2020 08:39:21 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka_with_rest_proxy.yaml b/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka_with_rest_proxy.yaml index 031087213fc..32ca1a355f1 100644 --- a/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka_with_rest_proxy.yaml +++ b/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka_with_rest_proxy.yaml @@ -16,7 +16,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_list_locations.yaml b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_list_locations.yaml index 14f4d1de8ef..8d3591b5226 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_list_locations.yaml +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_list_locations.yaml @@ -11,12 +11,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -68,7 +68,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 04:29:12 GMT + - Tue, 21 Jan 2020 02:28:08 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_existing_ids_options.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_existing_ids_options.yaml index a4ce0cd695d..ce3615d9e74 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_existing_ids_options.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_existing_ids_options.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001","name":"cli_test_vm_create_existing_ids000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-07T12:23:33Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001","name":"cli_test_vm_create_existing_ids000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-11T11:41:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:24:03 GMT + - Tue, 11 Feb 2020 11:41:37 GMT expires: - '-1' pragma: @@ -67,7 +67,7 @@ interactions: ParameterSetName: - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -75,10 +75,10 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/av_set_deploy_Xtfkb3PcdvPyCXv1BUshNyLOz9ccdZnk","name":"av_set_deploy_Xtfkb3PcdvPyCXv1BUshNyLOz9ccdZnk","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14817250424225118693","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-07T12:24:06.6931587Z","duration":"PT0.9136131S","correlationId":"dbeec58d-b65a-45ca-a897-ced2390cc832","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/av_set_deploy_YIot7YF7jjrO3S2PQBEolCnXgOUZgeSa","name":"av_set_deploy_YIot7YF7jjrO3S2PQBEolCnXgOUZgeSa","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14817250424225118693","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-11T11:41:42.4350342Z","duration":"PT2.8373886S","correlationId":"b5c61ebf-3576-468a-b2d7-45bc7dd8cbd1","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/av_set_deploy_Xtfkb3PcdvPyCXv1BUshNyLOz9ccdZnk/operationStatuses/08586205286396980606?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/av_set_deploy_YIot7YF7jjrO3S2PQBEolCnXgOUZgeSa/operationStatuses/08586201855858799688?api-version=2019-07-01 cache-control: - no-cache content-length: @@ -86,7 +86,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:24:06 GMT + - Tue, 11 Feb 2020 11:41:43 GMT expires: - '-1' pragma: @@ -96,7 +96,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -114,10 +114,53 @@ interactions: ParameterSetName: - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855858799688?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:42:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm availability-set create + Connection: + - keep-alive + ParameterSetName: + - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205286396980606?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855858799688?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -129,7 +172,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:24:38 GMT + - Tue, 11 Feb 2020 11:42:45 GMT expires: - '-1' pragma: @@ -157,10 +200,10 @@ interactions: ParameterSetName: - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205286396980606?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855858799688?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -172,7 +215,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:25:09 GMT + - Tue, 11 Feb 2020 11:43:15 GMT expires: - '-1' pragma: @@ -200,22 +243,22 @@ interactions: ParameterSetName: - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/av_set_deploy_Xtfkb3PcdvPyCXv1BUshNyLOz9ccdZnk","name":"av_set_deploy_Xtfkb3PcdvPyCXv1BUshNyLOz9ccdZnk","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14817250424225118693","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-07T12:24:40.5092919Z","duration":"PT34.7297463S","correlationId":"dbeec58d-b65a-45ca-a897-ced2390cc832","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Compute/availabilitySets/vrfavailset"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/av_set_deploy_YIot7YF7jjrO3S2PQBEolCnXgOUZgeSa","name":"av_set_deploy_YIot7YF7jjrO3S2PQBEolCnXgOUZgeSa","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14817250424225118693","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-11T11:43:04.1554991Z","duration":"PT1M24.5578535S","correlationId":"b5c61ebf-3576-468a-b2d7-45bc7dd8cbd1","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Compute/availabilitySets/vrfavailset"}]}}' headers: cache-control: - no-cache content-length: - - '969' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:25:09 GMT + - Tue, 11 Feb 2020 11:43:16 GMT expires: - '-1' pragma: @@ -243,7 +286,7 @@ interactions: ParameterSetName: - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -264,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:25:11 GMT + - Tue, 11 Feb 2020 11:43:18 GMT expires: - '-1' pragma: @@ -281,7 +324,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31981 + - Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31979 status: code: 200 message: OK @@ -299,7 +342,7 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -307,7 +350,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001","name":"cli_test_vm_create_existing_ids000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-07T12:23:33Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001","name":"cli_test_vm_create_existing_ids000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-11T11:41:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -316,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:25:12 GMT + - Tue, 11 Feb 2020 11:43:19 GMT expires: - '-1' pragma: @@ -349,7 +392,7 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -358,15 +401,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfpubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\",\r\n - \ \"etag\": \"W/\\\"d941b50b-e5b9-4cef-b957-976a35577158\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"e648e090-fd55-4796-9d98-4e51b12cb167\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"0ab4504b-e026-46b6-9a66-9c26ea85682a\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"27b6cec8-de1f-411e-b611-0b9ec84ea1d4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5c400c0b-cf97-4b1a-8a73-9a3e2954ce89?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/be04b3a5-9262-4aa7-9004-cee4ebf143e3?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -374,7 +417,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:25:18 GMT + - Tue, 11 Feb 2020 11:43:24 GMT expires: - '-1' pragma: @@ -387,9 +430,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - caa7fba3-d711-47ce-a50c-3eca96e13837 + - 49dbbd5a-16bd-4479-9b71-81f0613abf96 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -407,10 +450,10 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5c400c0b-cf97-4b1a-8a73-9a3e2954ce89?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/be04b3a5-9262-4aa7-9004-cee4ebf143e3?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -422,7 +465,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:25:21 GMT + - Tue, 11 Feb 2020 11:43:28 GMT expires: - '-1' pragma: @@ -439,7 +482,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2c1c92d2-2166-4e89-b601-e9db0a6c0178 + - 21c5db9c-8da3-4986-a9f9-d3be1e1443d8 status: code: 200 message: OK @@ -457,16 +500,16 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"vrfpubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\",\r\n - \ \"etag\": \"W/\\\"9b246301-505f-4054-a27b-0aef8d2b2648\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"eed5349a-26c7-43f7-9586-cb535efa525a\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0ab4504b-e026-46b6-9a66-9c26ea85682a\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"27b6cec8-de1f-411e-b611-0b9ec84ea1d4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -478,9 +521,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:25:22 GMT + - Tue, 11 Feb 2020 11:43:28 GMT etag: - - W/"9b246301-505f-4054-a27b-0aef8d2b2648" + - W/"eed5349a-26c7-43f7-9586-cb535efa525a" expires: - '-1' pragma: @@ -497,7 +540,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fc500fdc-c22e-468c-bdac-7be6db6efe2b + - 65a26832-16df-4e79-9d09-6e8b50fd7afa status: code: 200 message: OK @@ -515,7 +558,7 @@ interactions: ParameterSetName: - --name -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -523,7 +566,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001","name":"cli_test_vm_create_existing_ids000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-07T12:23:33Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001","name":"cli_test_vm_create_existing_ids000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-11T11:41:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -532,7 +575,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:25:22 GMT + - Tue, 11 Feb 2020 11:43:29 GMT expires: - '-1' pragma: @@ -566,883 +609,41 @@ interactions: ParameterSetName: - --name -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet?api-version=2019-11-01 - response: - body: - string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n - \ \"etag\": \"W/\\\"292407b0-f136-4e36-9346-39c7917dce6f\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"31143991-eecf-4e93-8541-617bda1a4e9d\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"292407b0-f136-4e36-9346-39c7917dce6f\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5861a40-ea4f-41d5-bbe7-2b268d2f3fb1?api-version=2019-11-01 - cache-control: - - no-cache - content-length: - - '1447' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:25:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 87b13fbc-f4de-4f66-b483-b67b0efae08c - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --name -g --subnet-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5861a40-ea4f-41d5-bbe7-2b268d2f3fb1?api-version=2019-11-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:25:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - e7a7ab93-9fc7-4f43-a14d-94048d73bc1d - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --name -g --subnet-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5861a40-ea4f-41d5-bbe7-2b268d2f3fb1?api-version=2019-11-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:25:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - c707c6e5-3895-4c3e-8f03-a971e4016361 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --name -g --subnet-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5861a40-ea4f-41d5-bbe7-2b268d2f3fb1?api-version=2019-11-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:25:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 4fcd3a84-6d58-4388-9de1-6daa560ef6bd - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --name -g --subnet-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5861a40-ea4f-41d5-bbe7-2b268d2f3fb1?api-version=2019-11-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:26:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 5beccc82-7ffe-4ee1-93bb-a53ca886887b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --name -g --subnet-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5861a40-ea4f-41d5-bbe7-2b268d2f3fb1?api-version=2019-11-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:26:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - ced0017f-8559-4fc0-90e9-19119ae22847 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --name -g --subnet-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet?api-version=2019-11-01 - response: - body: - string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n - \ \"etag\": \"W/\\\"4de64a42-b6f8-4b6a-bccb-d57586d5f961\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"31143991-eecf-4e93-8541-617bda1a4e9d\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"4de64a42-b6f8-4b6a-bccb-d57586d5f961\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1449' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:26:19 GMT - etag: - - W/"4de64a42-b6f8-4b6a-bccb-d57586d5f961" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - a45e690d-241d-4548-a404-6208017d1158 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network nsg create - Connection: - - keep-alive - ParameterSetName: - - --name -g - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001","name":"cli_test_vm_create_existing_ids000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-07T12:23:33Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:26:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network nsg create - Connection: - - keep-alive - Content-Length: - - '22' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --name -g - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg?api-version=2019-11-01 - response: - body: - string: "{\r\n \"name\": \"vrfnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg\",\r\n - \ \"etag\": \"W/\\\"f1f12186-56af-44ab-99fc-b196a985cf1c\\\"\",\r\n \"type\": - \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"7ed607c9-4c5e-4977-b6ec-dcdd1cbab3f4\",\r\n \"securityRules\": [],\r\n - \ \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetInBound\",\r\n - \ \"etag\": \"W/\\\"f1f12186-56af-44ab-99fc-b196a985cf1c\\\"\",\r\n - \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n - \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n - \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": - \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n - \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": - \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": - [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": - []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n - \ \"etag\": \"W/\\\"f1f12186-56af-44ab-99fc-b196a985cf1c\\\"\",\r\n - \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n - \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n - \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": - \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n - \ \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": - \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": - [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": - []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllInBound\",\r\n - \ \"etag\": \"W/\\\"f1f12186-56af-44ab-99fc-b196a985cf1c\\\"\",\r\n - \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": - \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": - \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": - \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n - \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n - \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": - [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n - \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n - \ \"etag\": \"W/\\\"f1f12186-56af-44ab-99fc-b196a985cf1c\\\"\",\r\n - \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"description\": \"Allow outbound traffic from all VMs to all VMs - in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": - \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": - \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n - \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": - \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": - [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": - []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n - \ \"etag\": \"W/\\\"f1f12186-56af-44ab-99fc-b196a985cf1c\\\"\",\r\n - \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n - \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n - \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": - \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": - \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n - \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": - [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": - []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllOutBound\",\r\n - \ \"etag\": \"W/\\\"f1f12186-56af-44ab-99fc-b196a985cf1c\\\"\",\r\n - \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": - \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": - \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": - \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n - \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": - [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": - [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n - \ ]\r\n }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 - cache-control: - - no-cache - content-length: - - '6941' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:26:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - bf48ff88-b9e9-4a28-bed9-1f2699b06e8c - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network nsg create - Connection: - - keep-alive - ParameterSetName: - - --name -g - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:26:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - f1d126d2-9ef3-45cf-bfef-d8dceb695281 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network nsg create - Connection: - - keep-alive - ParameterSetName: - - --name -g - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:26:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - ae03ff8b-6b22-49d5-ae0a-798487dcb6de - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network nsg create - Connection: - - keep-alive - ParameterSetName: - - --name -g - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:26:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 656c4b46-0633-49e0-9f2c-eb4cecaa7001 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network nsg create - Connection: - - keep-alive - ParameterSetName: - - --name -g - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:27:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 13defa7d-c29d-4541-9741-42e32e9b743f - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network nsg create - Connection: - - keep-alive - ParameterSetName: - - --name -g - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:27:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - baf71e3d-0c25-4582-b88c-7b7a28ea2a40 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network nsg create - Connection: - - keep-alive - ParameterSetName: - - --name -g - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:27:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 9f149cd2-2513-4867-8e71-b6f20419dfbb - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network nsg create - Connection: - - keep-alive - ParameterSetName: - - --name -g - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet?api-version=2019-11-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n + \ \"etag\": \"W/\\\"62e02919-9a9f-4045-bacf-ed4afceaa381\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"be4bc81e-6c2e-488e-a8a6-f26bfbdcd4b2\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n + \ \"etag\": \"W/\\\"62e02919-9a9f-4045-bacf-ed4afceaa381\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c5899946-adeb-434d-bfe8-f23e210af406?api-version=2019-11-01 cache-control: - no-cache content-length: - - '30' + - '1447' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:27:32 GMT + - Tue, 11 Feb 2020 11:43:32 GMT expires: - '-1' pragma: @@ -1452,17 +653,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6c753d98-b57c-4eec-b0ab-cee5c638ee11 + - c603aec9-06de-4b72-96f7-37c4e9450ad9 + x-ms-ratelimit-remaining-subscription-writes: + - '1194' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1471,16 +670,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network nsg create + - network vnet create Connection: - keep-alive ParameterSetName: - - --name -g + - --name -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c5899946-adeb-434d-bfe8-f23e210af406?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1492,7 +691,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:27:42 GMT + - Tue, 11 Feb 2020 11:43:37 GMT expires: - '-1' pragma: @@ -1509,7 +708,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4de15569-0331-40fa-9c61-364ca69828c8 + - 969de806-ec2f-469e-91ed-122389fffd3c status: code: 200 message: OK @@ -1521,28 +720,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network nsg create + - network vnet create Connection: - keep-alive ParameterSetName: - - --name -g + - --name -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c5899946-adeb-434d-bfe8-f23e210af406?api-version=2019-11-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '29' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:27:52 GMT + - Tue, 11 Feb 2020 11:43:47 GMT expires: - '-1' pragma: @@ -1559,7 +758,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 75b5cc68-0f07-4c38-9a31-3a536037de48 + - 0bb84c04-a255-4811-b6e1-5063b869aacd status: code: 200 message: OK @@ -1571,28 +770,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network nsg create + - network vnet create Connection: - keep-alive ParameterSetName: - - --name -g + - --name -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet?api-version=2019-11-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n + \ \"etag\": \"W/\\\"a78b6e3e-2c2f-43f1-97fe-0f336ab0a2bc\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"be4bc81e-6c2e-488e-a8a6-f26bfbdcd4b2\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n + \ \"etag\": \"W/\\\"a78b6e3e-2c2f-43f1-97fe-0f336ab0a2bc\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '1449' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:03 GMT + - Tue, 11 Feb 2020 11:43:48 GMT + etag: + - W/"a78b6e3e-2c2f-43f1-97fe-0f336ab0a2bc" expires: - '-1' pragma: @@ -1609,7 +825,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bb4ef5aa-789d-41c2-8db0-92d39b95da61 + - 2eee0ba7-0c02-4ee7-8ef7-203ca7ab5dd9 status: code: 200 message: OK @@ -1627,44 +843,39 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001?api-version=2019-07-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001","name":"cli_test_vm_create_existing_ids000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-11T11:41:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '30' + - '428' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:14 GMT + - Tue, 11 Feb 2020 11:43:48 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - cb7796b6-2203-48b7-af9a-d8b840a6b201 status: code: 200 message: OK - request: - body: null + body: '{"location": "westus"}' headers: Accept: - application/json @@ -1674,25 +885,109 @@ interactions: - network nsg create Connection: - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg?api-version=2019-11-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"vrfnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg\",\r\n + \ \"etag\": \"W/\\\"10643acf-accb-4970-88a2-b9e62a0c7426\\\"\",\r\n \"type\": + \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"4b12d768-2bff-431f-bd81-5ad036fda56d\",\r\n \"securityRules\": [],\r\n + \ \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetInBound\",\r\n + \ \"etag\": \"W/\\\"10643acf-accb-4970-88a2-b9e62a0c7426\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n + \ \"etag\": \"W/\\\"10643acf-accb-4970-88a2-b9e62a0c7426\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllInBound\",\r\n + \ \"etag\": \"W/\\\"10643acf-accb-4970-88a2-b9e62a0c7426\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n + \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n + \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n + \ \"etag\": \"W/\\\"10643acf-accb-4970-88a2-b9e62a0c7426\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to all VMs + in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": + \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n + \ \"etag\": \"W/\\\"10643acf-accb-4970-88a2-b9e62a0c7426\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllOutBound\",\r\n + \ \"etag\": \"W/\\\"10643acf-accb-4970-88a2-b9e62a0c7426\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": + [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n + \ ]\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a333743d-e680-4234-8173-b2105ae766a4?api-version=2019-11-01 cache-control: - no-cache content-length: - - '30' + - '6941' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:24 GMT + - Tue, 11 Feb 2020 11:43:54 GMT expires: - '-1' pragma: @@ -1702,17 +997,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c1670b9-d60b-46d0-9548-1241aba0b12c + - ad874bf7-a8b5-4d55-83a5-6b6fc87f975f + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1727,10 +1020,10 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f386e29e-0058-4566-91ad-cb235b02ddb8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a333743d-e680-4234-8173-b2105ae766a4?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1742,7 +1035,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:34 GMT + - Tue, 11 Feb 2020 11:43:59 GMT expires: - '-1' pragma: @@ -1759,7 +1052,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cdefc2f8-32fe-4126-b960-bd919361899c + - 23d7fc41-0740-48ac-8fc8-6b9bcabad9fd status: code: 200 message: OK @@ -1777,20 +1070,20 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"vrfnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"7ed607c9-4c5e-4977-b6ec-dcdd1cbab3f4\",\r\n \"securityRules\": [],\r\n + \"4b12d768-2bff-431f-bd81-5ad036fda56d\",\r\n \"securityRules\": [],\r\n \ \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetInBound\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n @@ -1802,7 +1095,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n @@ -1814,7 +1107,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllInBound\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": @@ -1825,7 +1118,7 @@ interactions: \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to all VMs @@ -1837,7 +1130,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n @@ -1849,7 +1142,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllOutBound\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": @@ -1868,9 +1161,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:34 GMT + - Tue, 11 Feb 2020 11:44:00 GMT etag: - - W/"77d21155-a697-4986-bba3-31e0a80e78bc" + - W/"f34076ae-da8f-48a8-9e76-288c68e96a6a" expires: - '-1' pragma: @@ -1887,7 +1180,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d486c4c6-611f-40fd-9aa7-2e0443b5cb57 + - d0f0fee4-2beb-4b26-9787-b73df481b626 status: code: 200 message: OK @@ -1905,12 +1198,12 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -1962,7 +1255,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:35 GMT + - Tue, 11 Feb 2020 11:44:02 GMT expires: - '-1' pragma: @@ -2041,17 +1334,17 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:37 GMT + - Tue, 11 Feb 2020 11:44:02 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 07 Feb 2020 12:33:37 GMT + - Tue, 11 Feb 2020 11:49:02 GMT source-age: - - '13' + - '85' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding, Accept-Encoding + - Authorization,Accept-Encoding via: - 1.1 varnish (Varnish/6.0) - 1.1 varnish @@ -2062,17 +1355,17 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - a2ac062e79eae135915b051560b59e56965f3a20 + - e93bb77ac2f6e0dbfb6ecd54b99b615b5468f2e8 x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - 1EDC:3B8E:99D93:A61F0:5E3D4F3A + - D034:576D:935D9:9D222:5E42932D x-served-by: - - cache-tyo19939-TYO + - cache-sin18044-SIN x-timer: - - S1581078517.361642,VS0,VE182 + - S1581421443.787943,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -2094,7 +1387,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -2218,7 +1511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:38 GMT + - Tue, 11 Feb 2020 11:44:03 GMT expires: - '-1' pragma: @@ -2248,7 +1541,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -2256,7 +1549,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T12:23:41.7277643Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T12:23:41.7277643Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-07T12:23:41.6496312Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-11T11:41:17.1704055Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-11T11:41:17.1704055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-11T11:41:17.0923194Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -2265,7 +1558,7 @@ interactions: content-type: - application/json date: - - Fri, 07 Feb 2020 12:28:39 GMT + - Tue, 11 Feb 2020 11:44:04 GMT expires: - '-1' pragma: @@ -2299,7 +1592,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -2307,7 +1600,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab","roleDefinitionId":"6efa92ca-56b6-40af-a468-5e3d2b5232f0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East US","East US 2","West US","Central US","North Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia East","Australia Southeast","Australia Central","Brazil South","South India","Central @@ -2434,7 +1727,7 @@ interactions: India","West India","Canada Central","Canada East","West US 2","West Central US","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East + East","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East US","East US 2","West US","Central US","North Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia East","Australia Southeast","Australia Central","Brazil South","South India","Central @@ -2612,11 +1905,11 @@ interactions: cache-control: - no-cache content-length: - - '36582' + - '36710' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:40 GMT + - Tue, 11 Feb 2020 11:44:05 GMT expires: - '-1' pragma: @@ -2646,7 +1939,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -2667,7 +1960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:40 GMT + - Tue, 11 Feb 2020 11:44:06 GMT expires: - '-1' pragma: @@ -2684,7 +1977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31979 + - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31978 status: code: 200 message: OK @@ -2704,7 +1997,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -3222,7 +2515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:42 GMT + - Tue, 11 Feb 2020 11:44:07 GMT expires: - '-1' pragma: @@ -3252,7 +2545,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -3261,15 +2554,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n - \ \"etag\": \"W/\\\"4de64a42-b6f8-4b6a-bccb-d57586d5f961\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a78b6e3e-2c2f-43f1-97fe-0f336ab0a2bc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"31143991-eecf-4e93-8541-617bda1a4e9d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"be4bc81e-6c2e-488e-a8a6-f26bfbdcd4b2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"4de64a42-b6f8-4b6a-bccb-d57586d5f961\\\"\",\r\n + \ \"etag\": \"W/\\\"a78b6e3e-2c2f-43f1-97fe-0f336ab0a2bc\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -3284,9 +2577,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:43 GMT + - Tue, 11 Feb 2020 11:44:08 GMT etag: - - W/"4de64a42-b6f8-4b6a-bccb-d57586d5f961" + - W/"a78b6e3e-2c2f-43f1-97fe-0f336ab0a2bc" expires: - '-1' pragma: @@ -3303,7 +2596,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f332958b-a1cd-4d16-973d-058195a3abd9 + - 521c9d2a-c77f-44a5-b184-66cc6614d94a status: code: 200 message: OK @@ -3323,7 +2616,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -3841,7 +3134,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:43 GMT + - Tue, 11 Feb 2020 11:44:09 GMT expires: - '-1' pragma: @@ -3871,7 +3164,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -3880,13 +3173,13 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"7ed607c9-4c5e-4977-b6ec-dcdd1cbab3f4\",\r\n \"securityRules\": [],\r\n + \"4b12d768-2bff-431f-bd81-5ad036fda56d\",\r\n \"securityRules\": [],\r\n \ \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetInBound\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n @@ -3898,7 +3191,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n @@ -3910,7 +3203,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllInBound\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": @@ -3921,7 +3214,7 @@ interactions: \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to all VMs @@ -3933,7 +3226,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n @@ -3945,7 +3238,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllOutBound\",\r\n - \ \"etag\": \"W/\\\"77d21155-a697-4986-bba3-31e0a80e78bc\\\"\",\r\n + \ \"etag\": \"W/\\\"f34076ae-da8f-48a8-9e76-288c68e96a6a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": @@ -3964,9 +3257,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:45 GMT + - Tue, 11 Feb 2020 11:44:09 GMT etag: - - W/"77d21155-a697-4986-bba3-31e0a80e78bc" + - W/"f34076ae-da8f-48a8-9e76-288c68e96a6a" expires: - '-1' pragma: @@ -3983,7 +3276,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9e034f29-7856-4057-a65d-fd22571e6db3 + - e4d20533-1a46-41e3-b4ea-cc88942151d4 status: code: 200 message: OK @@ -4003,7 +3296,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -4521,7 +3814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:46 GMT + - Tue, 11 Feb 2020 11:44:11 GMT expires: - '-1' pragma: @@ -4551,7 +3844,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -4560,9 +3853,9 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfpubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\",\r\n - \ \"etag\": \"W/\\\"9b246301-505f-4054-a27b-0aef8d2b2648\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"eed5349a-26c7-43f7-9586-cb535efa525a\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0ab4504b-e026-46b6-9a66-9c26ea85682a\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"27b6cec8-de1f-411e-b611-0b9ec84ea1d4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -4574,9 +3867,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:48 GMT + - Tue, 11 Feb 2020 11:44:12 GMT etag: - - W/"9b246301-505f-4054-a27b-0aef8d2b2648" + - W/"eed5349a-26c7-43f7-9586-cb535efa525a" expires: - '-1' pragma: @@ -4593,7 +3886,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eee04f11-c0ba-44e4-bad9-a9a6c4f6d82e + - 39e86612-d415-4387-ab8a-d031d33ceb43 status: code: 200 message: OK @@ -4637,7 +3930,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -4645,18 +3938,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/vm_deploy_ELeGl8yKcpZl5fZUTE4PR836Sx47HL72","name":"vm_deploy_ELeGl8yKcpZl5fZUTE4PR836Sx47HL72","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8576955997858940250","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-07T12:28:52.1480822Z","duration":"PT2.050589S","correlationId":"f0d5968b-8c50-44f0-815c-c738991ae100","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vrfvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Compute/virtualMachines/vrfvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vrfvm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/vm_deploy_NogpP8ooSse7xc0SLbwEPvw5AZSo0Zzw","name":"vm_deploy_NogpP8ooSse7xc0SLbwEPvw5AZSo0Zzw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4284940271771009368","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-11T11:44:17.6522615Z","duration":"PT2.9312344S","correlationId":"99dbcf73-f0b6-49f2-b51d-460c07128bd9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vrfvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Compute/virtualMachines/vrfvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vrfvm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/vm_deploy_ELeGl8yKcpZl5fZUTE4PR836Sx47HL72/operationStatuses/08586205283553801259?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/vm_deploy_NogpP8ooSse7xc0SLbwEPvw5AZSo0Zzw/operationStatuses/08586201854307565890?api-version=2019-07-01 cache-control: - no-cache content-length: - - '1405' + - '1406' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:28:52 GMT + - Tue, 11 Feb 2020 11:44:18 GMT expires: - '-1' pragma: @@ -4666,7 +3959,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -4686,10 +3979,100 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201854307565890?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:44:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --subnet --availability-set --public-ip-address -l + --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name + -g --name --ssh-key-value + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201854307565890?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:45:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --subnet --availability-set --public-ip-address -l + --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name + -g --name --ssh-key-value + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205283553801259?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201854307565890?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -4701,7 +4084,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:29:24 GMT + - Tue, 11 Feb 2020 11:45:51 GMT expires: - '-1' pragma: @@ -4731,10 +4114,10 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205283553801259?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201854307565890?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -4746,7 +4129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:29:54 GMT + - Tue, 11 Feb 2020 11:46:22 GMT expires: - '-1' pragma: @@ -4776,10 +4159,10 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205283553801259?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201854307565890?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -4791,7 +4174,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:30:24 GMT + - Tue, 11 Feb 2020 11:46:52 GMT expires: - '-1' pragma: @@ -4821,10 +4204,10 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205283553801259?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201854307565890?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -4836,7 +4219,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:30:55 GMT + - Tue, 11 Feb 2020 11:47:22 GMT expires: - '-1' pragma: @@ -4866,10 +4249,10 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205283553801259?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201854307565890?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -4881,7 +4264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:31:25 GMT + - Tue, 11 Feb 2020 11:47:54 GMT expires: - '-1' pragma: @@ -4911,10 +4294,10 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205283553801259?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201854307565890?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -4926,7 +4309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:31:55 GMT + - Tue, 11 Feb 2020 11:48:24 GMT expires: - '-1' pragma: @@ -4956,10 +4339,10 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205283553801259?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201854307565890?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -4971,7 +4354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:32:26 GMT + - Tue, 11 Feb 2020 11:48:54 GMT expires: - '-1' pragma: @@ -5001,10 +4384,10 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205283553801259?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201854307565890?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -5016,7 +4399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:32:56 GMT + - Tue, 11 Feb 2020 11:49:27 GMT expires: - '-1' pragma: @@ -5046,10 +4429,10 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205283553801259?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201854307565890?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -5061,7 +4444,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:33:27 GMT + - Tue, 11 Feb 2020 11:50:06 GMT expires: - '-1' pragma: @@ -5091,13 +4474,13 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/vm_deploy_ELeGl8yKcpZl5fZUTE4PR836Sx47HL72","name":"vm_deploy_ELeGl8yKcpZl5fZUTE4PR836Sx47HL72","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8576955997858940250","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-07T12:33:15.3599226Z","duration":"PT4M25.2624294S","correlationId":"f0d5968b-8c50-44f0-815c-c738991ae100","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vrfvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Compute/virtualMachines/vrfvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vrfvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Compute/virtualMachines/vrfvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Resources/deployments/vm_deploy_NogpP8ooSse7xc0SLbwEPvw5AZSo0Zzw","name":"vm_deploy_NogpP8ooSse7xc0SLbwEPvw5AZSo0Zzw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4284940271771009368","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-11T11:49:51.5584618Z","duration":"PT5M36.8374347S","correlationId":"99dbcf73-f0b6-49f2-b51d-460c07128bd9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vrfvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Compute/virtualMachines/vrfvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vrfvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Compute/virtualMachines/vrfvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic"}]}}' headers: cache-control: - no-cache @@ -5106,7 +4489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:33:27 GMT + - Tue, 11 Feb 2020 11:50:13 GMT expires: - '-1' pragma: @@ -5136,7 +4519,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -5146,13 +4529,13 @@ interactions: body: string: "{\r\n \"name\": \"vrfvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Compute/virtualMachines/vrfvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e85a4873-1cdc-46c4-bbb0-e4947c5c656d\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"88b098c4-0b22-4f12-a30e-bdbf2a99a63e\",\r\n \ \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Compute/availabilitySets/VRFAVAILSET\"\r\n \ },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202002040\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"18.04.202002080\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vrfosdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://clitest000002.blob.core.windows.net/vrfcontainer/vrfosdisk.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": @@ -5173,15 +4556,15 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2020-02-07T12:33:29+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + \"2020-02-11T11:50:14+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vrfosdisk\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-02-07T12:31:20.2401657+00:00\"\r\n + succeeded\",\r\n \"time\": \"2020-02-11T11:47:40.2497282+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-02-07T12:33:09.3813345+00:00\"\r\n + succeeded\",\r\n \"time\": \"2020-02-11T11:49:47.2188703+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -5193,7 +4576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:33:30 GMT + - Tue, 11 Feb 2020 11:50:15 GMT expires: - '-1' pragma: @@ -5210,7 +4593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31980 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31977 status: code: 200 message: OK @@ -5230,7 +4613,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -5239,12 +4622,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfvmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic\",\r\n - \ \"etag\": \"W/\\\"6f40656d-15b7-49cf-993a-4faaa7ebd202\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"7cca03e3-4b57-4364-b47b-3d0c5d0d4fb1\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b70bf6cc-3d12-449a-bcf9-4bda6a1d5fb5\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7a6a59ca-3977-4c00-889d-7db27f92b54b\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvrfvm\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic/ipConfigurations/ipconfigvrfvm\",\r\n - \ \"etag\": \"W/\\\"6f40656d-15b7-49cf-993a-4faaa7ebd202\\\"\",\r\n + \ \"etag\": \"W/\\\"7cca03e3-4b57-4364-b47b-3d0c5d0d4fb1\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -5253,8 +4636,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"se2rimop30ju3bkbmf33ugsotf.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-37-08-9E\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"d1eexpronsherkfg4jv5xxguwc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-35-D9-20\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -5268,9 +4651,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:33:31 GMT + - Tue, 11 Feb 2020 11:50:34 GMT etag: - - W/"6f40656d-15b7-49cf-993a-4faaa7ebd202" + - W/"7cca03e3-4b57-4364-b47b-3d0c5d0d4fb1" expires: - '-1' pragma: @@ -5287,7 +4670,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d17dcb53-920a-4d3a-9605-7cf4f3fb3933 + - 00cd3af5-d4e3-43de-9ab2-cf2f801128e0 status: code: 200 message: OK @@ -5307,7 +4690,7 @@ interactions: --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -5316,10 +4699,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfpubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\",\r\n - \ \"etag\": \"W/\\\"0c3cbf6d-2a9f-43e3-a3ba-1ee5ff109f79\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"38331d50-a3c9-497d-b783-12ea7e6c8417\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0ab4504b-e026-46b6-9a66-9c26ea85682a\",\r\n \"ipAddress\": - \"40.78.42.208\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"27b6cec8-de1f-411e-b611-0b9ec84ea1d4\",\r\n \"ipAddress\": + \"137.135.27.254\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \ \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic/ipConfigurations/ipconfigvrfvm\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -5328,13 +4711,13 @@ interactions: cache-control: - no-cache content-length: - - '979' + - '981' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:33:31 GMT + - Tue, 11 Feb 2020 11:50:36 GMT etag: - - W/"0c3cbf6d-2a9f-43e3-a3ba-1ee5ff109f79" + - W/"38331d50-a3c9-497d-b783-12ea7e6c8417" expires: - '-1' pragma: @@ -5351,7 +4734,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7cecb0d4-b4df-4491-bac0-6e392ad78d82 + - f4c270c6-7bcf-4d82-90d7-09d8fc7b87ea status: code: 200 message: OK @@ -5369,7 +4752,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -5381,7 +4764,7 @@ interactions: \ \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 3,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CREATE_EXISTING_IDSLT4MY3WMSPOV4JMWKE6SIGQ5MOANSUQSRGYXQTWOZGWT/providers/Microsoft.Compute/virtualMachines/VRFVM\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CREATE_EXISTING_IDSN73UC2NKOLPKNQJCIUAD3C6S2EIOIDKPBWIVVZBXVA6W/providers/Microsoft.Compute/virtualMachines/VRFVM\"\r\n \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n \ }\r\n}" headers: @@ -5392,7 +4775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:33:33 GMT + - Tue, 11 Feb 2020 11:50:38 GMT expires: - '-1' pragma: @@ -5409,7 +4792,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31978 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31974 status: code: 200 message: OK @@ -5427,7 +4810,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -5436,13 +4819,13 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg\",\r\n - \ \"etag\": \"W/\\\"6a50e0e5-296d-4987-9dc5-8c8155c43406\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3d25482f-c814-428b-b568-1ed7f31527f2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"7ed607c9-4c5e-4977-b6ec-dcdd1cbab3f4\",\r\n \"securityRules\": [],\r\n + \"4b12d768-2bff-431f-bd81-5ad036fda56d\",\r\n \"securityRules\": [],\r\n \ \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetInBound\",\r\n - \ \"etag\": \"W/\\\"6a50e0e5-296d-4987-9dc5-8c8155c43406\\\"\",\r\n + \ \"etag\": \"W/\\\"3d25482f-c814-428b-b568-1ed7f31527f2\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n @@ -5454,7 +4837,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n - \ \"etag\": \"W/\\\"6a50e0e5-296d-4987-9dc5-8c8155c43406\\\"\",\r\n + \ \"etag\": \"W/\\\"3d25482f-c814-428b-b568-1ed7f31527f2\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n @@ -5466,7 +4849,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllInBound\",\r\n - \ \"etag\": \"W/\\\"6a50e0e5-296d-4987-9dc5-8c8155c43406\\\"\",\r\n + \ \"etag\": \"W/\\\"3d25482f-c814-428b-b568-1ed7f31527f2\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": @@ -5477,7 +4860,7 @@ interactions: \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n - \ \"etag\": \"W/\\\"6a50e0e5-296d-4987-9dc5-8c8155c43406\\\"\",\r\n + \ \"etag\": \"W/\\\"3d25482f-c814-428b-b568-1ed7f31527f2\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to all VMs @@ -5489,7 +4872,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n - \ \"etag\": \"W/\\\"6a50e0e5-296d-4987-9dc5-8c8155c43406\\\"\",\r\n + \ \"etag\": \"W/\\\"3d25482f-c814-428b-b568-1ed7f31527f2\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n @@ -5501,7 +4884,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllOutBound\",\r\n - \ \"etag\": \"W/\\\"6a50e0e5-296d-4987-9dc5-8c8155c43406\\\"\",\r\n + \ \"etag\": \"W/\\\"3d25482f-c814-428b-b568-1ed7f31527f2\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": @@ -5521,9 +4904,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:33:34 GMT + - Tue, 11 Feb 2020 11:50:40 GMT etag: - - W/"6a50e0e5-296d-4987-9dc5-8c8155c43406" + - W/"3d25482f-c814-428b-b568-1ed7f31527f2" expires: - '-1' pragma: @@ -5540,7 +4923,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5b7337ce-d0b2-480c-a318-de7b1ba65460 + - 6a381071-2d84-4b32-a9b2-e38e7b671b5a status: code: 200 message: OK @@ -5558,7 +4941,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -5567,12 +4950,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfvmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic\",\r\n - \ \"etag\": \"W/\\\"6f40656d-15b7-49cf-993a-4faaa7ebd202\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"7cca03e3-4b57-4364-b47b-3d0c5d0d4fb1\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b70bf6cc-3d12-449a-bcf9-4bda6a1d5fb5\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7a6a59ca-3977-4c00-889d-7db27f92b54b\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvrfvm\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic/ipConfigurations/ipconfigvrfvm\",\r\n - \ \"etag\": \"W/\\\"6f40656d-15b7-49cf-993a-4faaa7ebd202\\\"\",\r\n + \ \"etag\": \"W/\\\"7cca03e3-4b57-4364-b47b-3d0c5d0d4fb1\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -5581,8 +4964,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"se2rimop30ju3bkbmf33ugsotf.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-37-08-9E\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"d1eexpronsherkfg4jv5xxguwc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-35-D9-20\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -5597,9 +4980,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:33:36 GMT + - Tue, 11 Feb 2020 11:50:41 GMT etag: - - W/"6f40656d-15b7-49cf-993a-4faaa7ebd202" + - W/"7cca03e3-4b57-4364-b47b-3d0c5d0d4fb1" expires: - '-1' pragma: @@ -5616,7 +4999,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c2cc67c9-2d52-4a26-9305-7c46f9567193 + - 53321492-0ce1-4aaa-a226-f877a70d1b21 status: code: 200 message: OK @@ -5634,7 +5017,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -5644,13 +5027,13 @@ interactions: body: string: "{\r\n \"name\": \"vrfvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Compute/virtualMachines/vrfvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e85a4873-1cdc-46c4-bbb0-e4947c5c656d\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"88b098c4-0b22-4f12-a30e-bdbf2a99a63e\",\r\n \ \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing_ids000001/providers/Microsoft.Compute/availabilitySets/VRFAVAILSET\"\r\n \ },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202002040\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"18.04.202002080\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vrfosdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://clitest000002.blob.core.windows.net/vrfcontainer/vrfosdisk.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": @@ -5673,7 +5056,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:33:37 GMT + - Tue, 11 Feb 2020 11:50:43 GMT expires: - '-1' pragma: @@ -5690,7 +5073,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31976 + - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31972 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_existing_options.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_existing_options.yaml index 8aa99e8e4e3..7ccb543e69d 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_existing_options.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_existing_options.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001","name":"cli_test_vm_create_existing000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-07T12:36:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001","name":"cli_test_vm_create_existing000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-11T11:40:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:37:47 GMT + - Tue, 11 Feb 2020 11:41:20 GMT expires: - '-1' pragma: @@ -67,7 +67,7 @@ interactions: ParameterSetName: - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -75,10 +75,10 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/av_set_deploy_W6BNLB80AmpZ4YEX6mUaRUxBiIdbxjsF","name":"av_set_deploy_W6BNLB80AmpZ4YEX6mUaRUxBiIdbxjsF","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14817250424225118693","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-07T12:37:51.7353099Z","duration":"PT1.7997908S","correlationId":"09565e87-81e4-425b-8fb1-6ec06d573b36","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/av_set_deploy_kDzJFaHfG11mOVepPRkXz7lefAZIp1k2","name":"av_set_deploy_kDzJFaHfG11mOVepPRkXz7lefAZIp1k2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14817250424225118693","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-11T11:41:24.8877989Z","duration":"PT2.3220278S","correlationId":"821c9020-99de-4b8b-b46b-0e235bebc409","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/av_set_deploy_W6BNLB80AmpZ4YEX6mUaRUxBiIdbxjsF/operationStatuses/08586205278155420925?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/av_set_deploy_kDzJFaHfG11mOVepPRkXz7lefAZIp1k2/operationStatuses/08586201856029118686?api-version=2019-07-01 cache-control: - no-cache content-length: @@ -86,7 +86,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:37:51 GMT + - Tue, 11 Feb 2020 11:41:26 GMT expires: - '-1' pragma: @@ -96,7 +96,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -114,10 +114,182 @@ interactions: ParameterSetName: - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201856029118686?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:41:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm availability-set create + Connection: + - keep-alive + ParameterSetName: + - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201856029118686?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:42:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm availability-set create + Connection: + - keep-alive + ParameterSetName: + - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201856029118686?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:42:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm availability-set create + Connection: + - keep-alive + ParameterSetName: + - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201856029118686?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:43:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm availability-set create + Connection: + - keep-alive + ParameterSetName: + - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205278155420925?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201856029118686?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -129,7 +301,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:38:32 GMT + - Tue, 11 Feb 2020 11:44:00 GMT expires: - '-1' pragma: @@ -157,10 +329,10 @@ interactions: ParameterSetName: - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205278155420925?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201856029118686?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -172,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:40:45 GMT + - Tue, 11 Feb 2020 11:44:30 GMT expires: - '-1' pragma: @@ -200,22 +372,22 @@ interactions: ParameterSetName: - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/av_set_deploy_W6BNLB80AmpZ4YEX6mUaRUxBiIdbxjsF","name":"av_set_deploy_W6BNLB80AmpZ4YEX6mUaRUxBiIdbxjsF","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14817250424225118693","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-07T12:39:36.3624738Z","duration":"PT1M46.4269547S","correlationId":"09565e87-81e4-425b-8fb1-6ec06d573b36","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/availabilitySets/vrfavailset"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/av_set_deploy_kDzJFaHfG11mOVepPRkXz7lefAZIp1k2","name":"av_set_deploy_kDzJFaHfG11mOVepPRkXz7lefAZIp1k2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14817250424225118693","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-11T11:44:00.218176Z","duration":"PT2M37.6524049S","correlationId":"821c9020-99de-4b8b-b46b-0e235bebc409","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/availabilitySets/vrfavailset"}]}}' headers: cache-control: - no-cache content-length: - - '971' + - '970' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:40:45 GMT + - Tue, 11 Feb 2020 11:44:30 GMT expires: - '-1' pragma: @@ -243,7 +415,7 @@ interactions: ParameterSetName: - --name -g --unmanaged --platform-fault-domain-count --platform-update-domain-count User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -264,7 +436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:40:46 GMT + - Tue, 11 Feb 2020 11:44:31 GMT expires: - '-1' pragma: @@ -281,7 +453,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31968 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31977 status: code: 200 message: OK @@ -299,7 +471,7 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -307,7 +479,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001","name":"cli_test_vm_create_existing000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-07T12:36:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001","name":"cli_test_vm_create_existing000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-11T11:40:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -316,7 +488,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:40:47 GMT + - Tue, 11 Feb 2020 11:44:32 GMT expires: - '-1' pragma: @@ -349,7 +521,7 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -358,15 +530,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfpubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\",\r\n - \ \"etag\": \"W/\\\"53cb1e12-d2a9-4cbf-8a98-31e0c940a35b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"3a3f241c-f145-4d02-a948-b041d274e693\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"dc369b4f-7a81-49ce-8426-47282a544e9e\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"0a1c2155-85b9-40f9-a6b2-f854c81edcd6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6a22d344-590e-4600-af60-94b05e50726a?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3085d7a8-a068-40f5-8cbf-b8d446b2d340?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -374,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:40:51 GMT + - Tue, 11 Feb 2020 11:44:36 GMT expires: - '-1' pragma: @@ -387,9 +559,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a47cf694-3b1d-4e8d-9191-b6083c40d6af + - 19029238-27d1-40d5-afa4-87a7100c85eb x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 201 message: Created @@ -407,10 +579,10 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6a22d344-590e-4600-af60-94b05e50726a?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3085d7a8-a068-40f5-8cbf-b8d446b2d340?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -422,7 +594,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:40:54 GMT + - Tue, 11 Feb 2020 11:44:38 GMT expires: - '-1' pragma: @@ -439,7 +611,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5deb1c6d-21ae-4ae3-b2c5-68186303ae64 + - b5ed7d4e-5ee1-46c5-b03f-aca84b810a97 status: code: 200 message: OK @@ -457,16 +629,16 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"vrfpubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\",\r\n - \ \"etag\": \"W/\\\"44a1ba00-cb0b-4d65-9bea-73018e3c253d\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"96f40414-2dc9-474a-be53-2ef8bd5453f0\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"dc369b4f-7a81-49ce-8426-47282a544e9e\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"0a1c2155-85b9-40f9-a6b2-f854c81edcd6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -478,9 +650,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:40:54 GMT + - Tue, 11 Feb 2020 11:44:39 GMT etag: - - W/"44a1ba00-cb0b-4d65-9bea-73018e3c253d" + - W/"96f40414-2dc9-474a-be53-2ef8bd5453f0" expires: - '-1' pragma: @@ -497,7 +669,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 00075782-e79d-4165-b4c0-bc3a199ea805 + - 82b5ce38-f6aa-4e5a-9791-02ce3128974f status: code: 200 message: OK @@ -515,7 +687,7 @@ interactions: ParameterSetName: - --name -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -523,7 +695,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001","name":"cli_test_vm_create_existing000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-07T12:36:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001","name":"cli_test_vm_create_existing000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-11T11:40:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -532,7 +704,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:40:55 GMT + - Tue, 11 Feb 2020 11:44:39 GMT expires: - '-1' pragma: @@ -566,7 +738,7 @@ interactions: ParameterSetName: - --name -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -575,15 +747,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n - \ \"etag\": \"W/\\\"e089e144-f634-429f-abcc-e2f8165d5c8c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a1c8751e-4ef5-4550-bf5a-eefbaff05a4f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"a57f2827-f980-4da1-9fb9-a901c1c4f455\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ae0d6444-1657-489b-a4af-526ab451392e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"e089e144-f634-429f-abcc-e2f8165d5c8c\\\"\",\r\n + \ \"etag\": \"W/\\\"a1c8751e-4ef5-4550-bf5a-eefbaff05a4f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -592,7 +764,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/61d3c648-348c-45aa-8c74-4b0b40201aaa?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/01cf1849-d4eb-4435-8e7c-493d0592c14e?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -600,7 +772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:00 GMT + - Tue, 11 Feb 2020 11:44:46 GMT expires: - '-1' pragma: @@ -613,9 +785,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 56e4f2a5-6c76-4765-9a02-570a714e3117 + - 8bb7159a-d3b0-4c2a-bb98-1435d13cbbbd x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -633,10 +805,10 @@ interactions: ParameterSetName: - --name -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/61d3c648-348c-45aa-8c74-4b0b40201aaa?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/01cf1849-d4eb-4435-8e7c-493d0592c14e?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -648,7 +820,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:05 GMT + - Tue, 11 Feb 2020 11:44:50 GMT expires: - '-1' pragma: @@ -665,7 +837,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dfe67fc2-4ced-4691-ad95-f1f12a4b0f8b + - 44b75360-a58d-4335-8df6-4f0c6849ead3 status: code: 200 message: OK @@ -683,22 +855,22 @@ interactions: ParameterSetName: - --name -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vrfvnet?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n - \ \"etag\": \"W/\\\"7eb8ee5c-5563-461c-b66e-41b84b04790a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"bbdc6bb9-d531-480b-81b6-6040ec06c3d6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"a57f2827-f980-4da1-9fb9-a901c1c4f455\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ae0d6444-1657-489b-a4af-526ab451392e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"7eb8ee5c-5563-461c-b66e-41b84b04790a\\\"\",\r\n + \ \"etag\": \"W/\\\"bbdc6bb9-d531-480b-81b6-6040ec06c3d6\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -713,9 +885,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:05 GMT + - Tue, 11 Feb 2020 11:44:51 GMT etag: - - W/"7eb8ee5c-5563-461c-b66e-41b84b04790a" + - W/"bbdc6bb9-d531-480b-81b6-6040ec06c3d6" expires: - '-1' pragma: @@ -732,7 +904,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 99e122af-b79e-4e5a-af30-4143c9f5c4d3 + - 60ad67e2-735b-4a75-ac72-9986c39e5650 status: code: 200 message: OK @@ -750,7 +922,7 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -758,7 +930,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001","name":"cli_test_vm_create_existing000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-07T12:36:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001","name":"cli_test_vm_create_existing000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-11T11:40:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -767,7 +939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:07 GMT + - Tue, 11 Feb 2020 11:44:52 GMT expires: - '-1' pragma: @@ -799,7 +971,7 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -808,13 +980,13 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg\",\r\n - \ \"etag\": \"W/\\\"39693f72-1d66-4c52-b14a-d7303c145dcf\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"811e3f7a-77bf-402f-a040-1be35b62cdaf\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"13813934-0079-442b-9b31-c6166df202f4\",\r\n \"securityRules\": [],\r\n + \"3c7d64e7-6078-4c97-a64b-0a16a0d918f1\",\r\n \"securityRules\": [],\r\n \ \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetInBound\",\r\n - \ \"etag\": \"W/\\\"39693f72-1d66-4c52-b14a-d7303c145dcf\\\"\",\r\n + \ \"etag\": \"W/\\\"811e3f7a-77bf-402f-a040-1be35b62cdaf\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n @@ -826,7 +998,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n - \ \"etag\": \"W/\\\"39693f72-1d66-4c52-b14a-d7303c145dcf\\\"\",\r\n + \ \"etag\": \"W/\\\"811e3f7a-77bf-402f-a040-1be35b62cdaf\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n @@ -838,7 +1010,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllInBound\",\r\n - \ \"etag\": \"W/\\\"39693f72-1d66-4c52-b14a-d7303c145dcf\\\"\",\r\n + \ \"etag\": \"W/\\\"811e3f7a-77bf-402f-a040-1be35b62cdaf\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": @@ -849,7 +1021,7 @@ interactions: \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n - \ \"etag\": \"W/\\\"39693f72-1d66-4c52-b14a-d7303c145dcf\\\"\",\r\n + \ \"etag\": \"W/\\\"811e3f7a-77bf-402f-a040-1be35b62cdaf\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to all VMs @@ -861,7 +1033,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n - \ \"etag\": \"W/\\\"39693f72-1d66-4c52-b14a-d7303c145dcf\\\"\",\r\n + \ \"etag\": \"W/\\\"811e3f7a-77bf-402f-a040-1be35b62cdaf\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n @@ -873,7 +1045,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllOutBound\",\r\n - \ \"etag\": \"W/\\\"39693f72-1d66-4c52-b14a-d7303c145dcf\\\"\",\r\n + \ \"etag\": \"W/\\\"811e3f7a-77bf-402f-a040-1be35b62cdaf\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": @@ -886,7 +1058,7 @@ interactions: \ ]\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/32850b68-f62b-413c-83f8-95c55d9276e8?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af11e490-e433-4716-acf2-3438c485320b?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -894,7 +1066,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:12 GMT + - Tue, 11 Feb 2020 11:44:59 GMT expires: - '-1' pragma: @@ -907,9 +1079,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 26b400e0-257d-4d45-b03f-36106c5ea541 + - 1b927655-9ddc-43a6-b7c7-0e18c90f2305 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -927,10 +1099,10 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/32850b68-f62b-413c-83f8-95c55d9276e8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af11e490-e433-4716-acf2-3438c485320b?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -942,7 +1114,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:17 GMT + - Tue, 11 Feb 2020 11:45:03 GMT expires: - '-1' pragma: @@ -959,7 +1131,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e008ed5a-c30d-4bca-a71e-14e0d31a0353 + - 56f47dfa-5756-41a4-a7c2-5833b798b87b status: code: 200 message: OK @@ -977,20 +1149,20 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"vrfnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"13813934-0079-442b-9b31-c6166df202f4\",\r\n \"securityRules\": [],\r\n + \"3c7d64e7-6078-4c97-a64b-0a16a0d918f1\",\r\n \"securityRules\": [],\r\n \ \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetInBound\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n @@ -1002,7 +1174,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n @@ -1014,7 +1186,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllInBound\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": @@ -1025,7 +1197,7 @@ interactions: \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to all VMs @@ -1037,7 +1209,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n @@ -1049,7 +1221,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllOutBound\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": @@ -1068,9 +1240,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:17 GMT + - Tue, 11 Feb 2020 11:45:03 GMT etag: - - W/"c4f42d50-4711-493b-bbde-8e8d794e09ab" + - W/"f65fa9c9-9c6e-473f-b23d-8403e4942035" expires: - '-1' pragma: @@ -1087,7 +1259,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b008fcf6-386e-418d-8152-bdbd9d207c0f + - 56cf2f17-fe0b-4a62-98a7-2b5f7fabe4e0 status: code: 200 message: OK @@ -1105,12 +1277,12 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -1162,7 +1334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:18 GMT + - Tue, 11 Feb 2020 11:45:04 GMT expires: - '-1' pragma: @@ -1241,17 +1413,17 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:20 GMT + - Tue, 11 Feb 2020 11:45:06 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 07 Feb 2020 12:46:20 GMT + - Tue, 11 Feb 2020 11:50:06 GMT source-age: - - '51' + - '148' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding, Accept-Encoding + - Authorization,Accept-Encoding via: - 1.1 varnish (Varnish/6.0) - 1.1 varnish @@ -1262,17 +1434,17 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 28b6096c575689d0736ee2d142e9970adb6f5256 + - eba4623f6ef5717c8794a156230904e0893b7da2 x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - 1EDC:3B8E:99D93:A61F0:5E3D4F3A + - D034:576D:935D9:9D222:5E42932D x-served-by: - - cache-tyo19921-TYO + - cache-sin18036-SIN x-timer: - - S1581079280.839270,VS0,VE183 + - S1581421506.063766,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -1294,7 +1466,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -1418,7 +1590,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:20 GMT + - Tue, 11 Feb 2020 11:45:05 GMT expires: - '-1' pragma: @@ -1448,7 +1620,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -1456,7 +1628,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T12:37:14.1349602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T12:37:14.1349602Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-07T12:37:14.0881120Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-11T11:40:58.7485422Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-11T11:40:58.7485422Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-11T11:40:58.6704367Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -1465,7 +1637,7 @@ interactions: content-type: - application/json date: - - Fri, 07 Feb 2020 12:41:21 GMT + - Tue, 11 Feb 2020 11:45:07 GMT expires: - '-1' pragma: @@ -1499,7 +1671,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -1507,7 +1679,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab","roleDefinitionId":"6efa92ca-56b6-40af-a468-5e3d2b5232f0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East US","East US 2","West US","Central US","North Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia East","Australia Southeast","Australia Central","Brazil South","South India","Central @@ -1634,7 +1806,7 @@ interactions: India","West India","Canada Central","Canada East","West US 2","West Central US","UK South","UK West","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East + East","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East US","East US 2","West US","Central US","North Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia East","Australia Southeast","Australia Central","Brazil South","South India","Central @@ -1812,11 +1984,11 @@ interactions: cache-control: - no-cache content-length: - - '36582' + - '36710' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:23 GMT + - Tue, 11 Feb 2020 11:45:08 GMT expires: - '-1' pragma: @@ -1846,7 +2018,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -1867,7 +2039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:24 GMT + - Tue, 11 Feb 2020 11:45:08 GMT expires: - '-1' pragma: @@ -1884,7 +2056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31966 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31977 status: code: 200 message: OK @@ -1904,7 +2076,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -2422,7 +2594,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:26 GMT + - Tue, 11 Feb 2020 11:45:09 GMT expires: - '-1' pragma: @@ -2452,7 +2624,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -2461,7 +2633,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfsubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"7eb8ee5c-5563-461c-b66e-41b84b04790a\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"bbdc6bb9-d531-480b-81b6-6040ec06c3d6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -2474,9 +2646,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:28 GMT + - Tue, 11 Feb 2020 11:45:10 GMT etag: - - W/"7eb8ee5c-5563-461c-b66e-41b84b04790a" + - W/"bbdc6bb9-d531-480b-81b6-6040ec06c3d6" expires: - '-1' pragma: @@ -2493,7 +2665,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f1cd1488-18a2-4eaf-899a-4e4cf3dbd915 + - 511f6c17-0b78-40ef-83e9-74c7b5c9703c status: code: 200 message: OK @@ -2513,7 +2685,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -3031,7 +3203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:29 GMT + - Tue, 11 Feb 2020 11:45:12 GMT expires: - '-1' pragma: @@ -3061,7 +3233,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -3070,13 +3242,13 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"13813934-0079-442b-9b31-c6166df202f4\",\r\n \"securityRules\": [],\r\n + \"3c7d64e7-6078-4c97-a64b-0a16a0d918f1\",\r\n \"securityRules\": [],\r\n \ \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetInBound\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n @@ -3088,7 +3260,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n @@ -3100,7 +3272,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllInBound\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": @@ -3111,7 +3283,7 @@ interactions: \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to all VMs @@ -3123,7 +3295,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n @@ -3135,7 +3307,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllOutBound\",\r\n - \ \"etag\": \"W/\\\"c4f42d50-4711-493b-bbde-8e8d794e09ab\\\"\",\r\n + \ \"etag\": \"W/\\\"f65fa9c9-9c6e-473f-b23d-8403e4942035\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": @@ -3154,9 +3326,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:30 GMT + - Tue, 11 Feb 2020 11:45:12 GMT etag: - - W/"c4f42d50-4711-493b-bbde-8e8d794e09ab" + - W/"f65fa9c9-9c6e-473f-b23d-8403e4942035" expires: - '-1' pragma: @@ -3173,7 +3345,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cb4243f9-ecf4-4611-b98c-d9b51fb8f453 + - 0295ac20-e44a-4bfc-8ba2-ac9a9d9eda53 status: code: 200 message: OK @@ -3193,7 +3365,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -3711,7 +3883,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:31 GMT + - Tue, 11 Feb 2020 11:45:14 GMT expires: - '-1' pragma: @@ -3741,7 +3913,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -3750,9 +3922,9 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfpubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\",\r\n - \ \"etag\": \"W/\\\"44a1ba00-cb0b-4d65-9bea-73018e3c253d\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"96f40414-2dc9-474a-be53-2ef8bd5453f0\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"dc369b4f-7a81-49ce-8426-47282a544e9e\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"0a1c2155-85b9-40f9-a6b2-f854c81edcd6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -3764,9 +3936,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:33 GMT + - Tue, 11 Feb 2020 11:45:14 GMT etag: - - W/"44a1ba00-cb0b-4d65-9bea-73018e3c253d" + - W/"96f40414-2dc9-474a-be53-2ef8bd5453f0" expires: - '-1' pragma: @@ -3783,7 +3955,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 29134c92-7849-4c18-abb2-9a72fabf98bf + - 7f40b650-c825-4e37-bcf9-1d8267789baa status: code: 200 message: OK @@ -3827,7 +3999,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -3835,18 +4007,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/vm_deploy_tSTkwhIibEo5Msv2FTmFDW5C0nXNn1Er","name":"vm_deploy_tSTkwhIibEo5Msv2FTmFDW5C0nXNn1Er","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16079213625802741870","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-07T12:41:39.9089638Z","duration":"PT3.1964192S","correlationId":"37b172ae-c590-439f-bbd6-e5d08017fe04","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vrfvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vrfvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vrfvm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/vm_deploy_g1xB6FKymi779GCkB6rRuh7tvEyvIjsc","name":"vm_deploy_g1xB6FKymi779GCkB6rRuh7tvEyvIjsc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3309400559224178885","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-11T11:45:19.6699569Z","duration":"PT2.5712196S","correlationId":"2468e6af-4359-4c68-a1ca-ca6024a3d354","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vrfvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vrfvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vrfvm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/vm_deploy_tSTkwhIibEo5Msv2FTmFDW5C0nXNn1Er/operationStatuses/08586205275887650722?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/vm_deploy_g1xB6FKymi779GCkB6rRuh7tvEyvIjsc/operationStatuses/08586201853683788774?api-version=2019-07-01 cache-control: - no-cache content-length: - - '1407' + - '1406' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:41:40 GMT + - Tue, 11 Feb 2020 11:45:20 GMT expires: - '-1' pragma: @@ -3856,7 +4028,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -3876,10 +4048,325 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853683788774?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:45:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --vnet-name --subnet --availability-set --public-ip-address + -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name + -g --name --ssh-key-value + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853683788774?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:46:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --vnet-name --subnet --availability-set --public-ip-address + -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name + -g --name --ssh-key-value + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853683788774?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:46:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --vnet-name --subnet --availability-set --public-ip-address + -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name + -g --name --ssh-key-value + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853683788774?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:47:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --vnet-name --subnet --availability-set --public-ip-address + -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name + -g --name --ssh-key-value + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853683788774?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:47:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --vnet-name --subnet --availability-set --public-ip-address + -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name + -g --name --ssh-key-value + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853683788774?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:48:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --vnet-name --subnet --availability-set --public-ip-address + -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name + -g --name --ssh-key-value + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853683788774?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:48:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --vnet-name --subnet --availability-set --public-ip-address + -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name + -g --name --ssh-key-value + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205275887650722?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853683788774?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -3891,7 +4378,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:42:12 GMT + - Tue, 11 Feb 2020 11:49:28 GMT expires: - '-1' pragma: @@ -3921,10 +4408,10 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205275887650722?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853683788774?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -3936,7 +4423,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:42:42 GMT + - Tue, 11 Feb 2020 11:50:07 GMT expires: - '-1' pragma: @@ -3966,10 +4453,10 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205275887650722?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853683788774?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -3981,7 +4468,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:13 GMT + - Tue, 11 Feb 2020 11:50:40 GMT expires: - '-1' pragma: @@ -4011,22 +4498,22 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/vm_deploy_tSTkwhIibEo5Msv2FTmFDW5C0nXNn1Er","name":"vm_deploy_tSTkwhIibEo5Msv2FTmFDW5C0nXNn1Er","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16079213625802741870","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-07T12:43:06.1615957Z","duration":"PT1M29.4490511S","correlationId":"37b172ae-c590-439f-bbd6-e5d08017fe04","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vrfvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vrfvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vrfvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vrfvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/vm_deploy_g1xB6FKymi779GCkB6rRuh7tvEyvIjsc","name":"vm_deploy_g1xB6FKymi779GCkB6rRuh7tvEyvIjsc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3309400559224178885","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-11T11:50:32.4973756Z","duration":"PT5M15.3986383S","correlationId":"2468e6af-4359-4c68-a1ca-ca6024a3d354","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vrfvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vrfvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vrfvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vrfvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic"}]}}' headers: cache-control: - no-cache content-length: - - '1855' + - '1854' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:13 GMT + - Tue, 11 Feb 2020 11:50:41 GMT expires: - '-1' pragma: @@ -4056,7 +4543,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -4066,13 +4553,13 @@ interactions: body: string: "{\r\n \"name\": \"vrfvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vrfvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ccc30e69-5006-4ea7-b9c0-4d858033b5df\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"45bb6507-990e-41d1-9d89-ccb8bc6cdb75\",\r\n \ \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/availabilitySets/VRFAVAILSET\"\r\n \ },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202002040\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"18.04.202002080\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vrfosdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://clitest000002.blob.core.windows.net/vrfcontainer/vrfosdisk.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": @@ -4093,15 +4580,15 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2020-02-07T12:43:14+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + \"2020-02-11T11:50:40+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vrfosdisk\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-02-07T12:42:06.6649756+00:00\"\r\n + succeeded\",\r\n \"time\": \"2020-02-11T11:48:18.9843675+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-02-07T12:43:01.8526333+00:00\"\r\n + succeeded\",\r\n \"time\": \"2020-02-11T11:50:15.5001128+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -4113,7 +4600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:14 GMT + - Tue, 11 Feb 2020 11:50:42 GMT expires: - '-1' pragma: @@ -4130,7 +4617,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31962 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31973 status: code: 200 message: OK @@ -4150,7 +4637,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -4159,12 +4646,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfvmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic\",\r\n - \ \"etag\": \"W/\\\"7564fdf6-aa50-4bfb-ae0d-c5ee2a3c2a09\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"a28af38a-fb84-402f-a931-7a65779ec737\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"47bcea64-c47c-4ad9-b7a6-41daffefa9ac\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"9adc552e-cb14-49e9-9146-9f1b49ac922f\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvrfvm\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic/ipConfigurations/ipconfigvrfvm\",\r\n - \ \"etag\": \"W/\\\"7564fdf6-aa50-4bfb-ae0d-c5ee2a3c2a09\\\"\",\r\n + \ \"etag\": \"W/\\\"a28af38a-fb84-402f-a931-7a65779ec737\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -4173,8 +4660,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"e2uh5jma5gqu1h3zvea2drhukf.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-36-6B-91\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"irsa1lsxc0nurjfpkjvliujzfg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-35-D1-75\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -4188,9 +4675,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:16 GMT + - Tue, 11 Feb 2020 11:50:43 GMT etag: - - W/"7564fdf6-aa50-4bfb-ae0d-c5ee2a3c2a09" + - W/"a28af38a-fb84-402f-a931-7a65779ec737" expires: - '-1' pragma: @@ -4207,7 +4694,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1ddb0b80-abdb-4b56-ac6b-f15ed9740e11 + - 7c5ca02e-9933-4657-949b-58cc21142a20 status: code: 200 message: OK @@ -4227,7 +4714,7 @@ interactions: -l --nsg --use-unmanaged-disk --size --admin-username --storage-account --storage-container-name -g --name --ssh-key-value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -4236,10 +4723,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfpubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\",\r\n - \ \"etag\": \"W/\\\"316adefd-9a58-4feb-b4d9-2d845acbf66f\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"53a9dfef-a0ec-4b6f-af48-730eb8a3b5e7\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"dc369b4f-7a81-49ce-8426-47282a544e9e\",\r\n \"ipAddress\": - \"13.64.119.22\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"0a1c2155-85b9-40f9-a6b2-f854c81edcd6\",\r\n \"ipAddress\": + \"168.62.197.233\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \ \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic/ipConfigurations/ipconfigvrfvm\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -4248,13 +4735,13 @@ interactions: cache-control: - no-cache content-length: - - '979' + - '981' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:16 GMT + - Tue, 11 Feb 2020 11:50:44 GMT etag: - - W/"316adefd-9a58-4feb-b4d9-2d845acbf66f" + - W/"53a9dfef-a0ec-4b6f-af48-730eb8a3b5e7" expires: - '-1' pragma: @@ -4271,7 +4758,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 24efae5a-1d0a-4ec1-9ec0-1e668ece37e4 + - 77707d30-61dc-40f1-8cbc-37b1abb3901a status: code: 200 message: OK @@ -4289,7 +4776,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -4301,7 +4788,7 @@ interactions: \ \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 3,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CREATE_EXISTINGSPYZGXA6OSR3OFUL23I2J4QMAGJZABXPCA2FIVBXL5LXK7E7/providers/Microsoft.Compute/virtualMachines/VRFVM\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CREATE_EXISTINGKATWO4L2QB737J6SBQEZF3QECF5DL22OM7RJGI55XE7VDWIW/providers/Microsoft.Compute/virtualMachines/VRFVM\"\r\n \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n \ }\r\n}" headers: @@ -4312,7 +4799,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:18 GMT + - Tue, 11 Feb 2020 11:50:46 GMT expires: - '-1' pragma: @@ -4329,7 +4816,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31959 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31971 status: code: 200 message: OK @@ -4347,7 +4834,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -4356,13 +4843,13 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg\",\r\n - \ \"etag\": \"W/\\\"6598695e-11aa-4c8b-92ad-55619657cf11\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7b76d564-d8b6-4277-981a-a2b539d68938\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"13813934-0079-442b-9b31-c6166df202f4\",\r\n \"securityRules\": [],\r\n + \"3c7d64e7-6078-4c97-a64b-0a16a0d918f1\",\r\n \"securityRules\": [],\r\n \ \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetInBound\",\r\n - \ \"etag\": \"W/\\\"6598695e-11aa-4c8b-92ad-55619657cf11\\\"\",\r\n + \ \"etag\": \"W/\\\"7b76d564-d8b6-4277-981a-a2b539d68938\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n @@ -4374,7 +4861,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n - \ \"etag\": \"W/\\\"6598695e-11aa-4c8b-92ad-55619657cf11\\\"\",\r\n + \ \"etag\": \"W/\\\"7b76d564-d8b6-4277-981a-a2b539d68938\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n @@ -4386,7 +4873,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllInBound\",\r\n - \ \"etag\": \"W/\\\"6598695e-11aa-4c8b-92ad-55619657cf11\\\"\",\r\n + \ \"etag\": \"W/\\\"7b76d564-d8b6-4277-981a-a2b539d68938\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": @@ -4397,7 +4884,7 @@ interactions: \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n - \ \"etag\": \"W/\\\"6598695e-11aa-4c8b-92ad-55619657cf11\\\"\",\r\n + \ \"etag\": \"W/\\\"7b76d564-d8b6-4277-981a-a2b539d68938\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to all VMs @@ -4409,7 +4896,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n - \ \"etag\": \"W/\\\"6598695e-11aa-4c8b-92ad-55619657cf11\\\"\",\r\n + \ \"etag\": \"W/\\\"7b76d564-d8b6-4277-981a-a2b539d68938\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n @@ -4421,7 +4908,7 @@ interactions: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg/defaultSecurityRules/DenyAllOutBound\",\r\n - \ \"etag\": \"W/\\\"6598695e-11aa-4c8b-92ad-55619657cf11\\\"\",\r\n + \ \"etag\": \"W/\\\"7b76d564-d8b6-4277-981a-a2b539d68938\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": @@ -4441,9 +4928,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:20 GMT + - Tue, 11 Feb 2020 11:50:47 GMT etag: - - W/"6598695e-11aa-4c8b-92ad-55619657cf11" + - W/"7b76d564-d8b6-4277-981a-a2b539d68938" expires: - '-1' pragma: @@ -4460,7 +4947,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ea5b1120-55c5-4b6b-bea1-e35a149894f7 + - 656e6161-23bc-47a3-9e81-4f753406ed86 status: code: 200 message: OK @@ -4478,7 +4965,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -4487,12 +4974,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfvmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic\",\r\n - \ \"etag\": \"W/\\\"7564fdf6-aa50-4bfb-ae0d-c5ee2a3c2a09\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"a28af38a-fb84-402f-a931-7a65779ec737\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"47bcea64-c47c-4ad9-b7a6-41daffefa9ac\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"9adc552e-cb14-49e9-9146-9f1b49ac922f\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvrfvm\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vrfvmVMNic/ipConfigurations/ipconfigvrfvm\",\r\n - \ \"etag\": \"W/\\\"7564fdf6-aa50-4bfb-ae0d-c5ee2a3c2a09\\\"\",\r\n + \ \"etag\": \"W/\\\"a28af38a-fb84-402f-a931-7a65779ec737\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -4501,8 +4988,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"e2uh5jma5gqu1h3zvea2drhukf.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-36-6B-91\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"irsa1lsxc0nurjfpkjvliujzfg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-35-D1-75\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vrfnsg\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -4517,9 +5004,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:21 GMT + - Tue, 11 Feb 2020 11:50:49 GMT etag: - - W/"7564fdf6-aa50-4bfb-ae0d-c5ee2a3c2a09" + - W/"a28af38a-fb84-402f-a931-7a65779ec737" expires: - '-1' pragma: @@ -4536,7 +5023,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d08e2969-ef28-43c7-b0e3-e152c89af409 + - b1dcfd69-920c-40b4-8a25-8b2b2df0e05d status: code: 200 message: OK @@ -4554,7 +5041,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -4564,13 +5051,13 @@ interactions: body: string: "{\r\n \"name\": \"vrfvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vrfvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ccc30e69-5006-4ea7-b9c0-4d858033b5df\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"45bb6507-990e-41d1-9d89-ccb8bc6cdb75\",\r\n \ \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/availabilitySets/VRFAVAILSET\"\r\n \ },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202002040\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"18.04.202002080\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vrfosdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://clitest000002.blob.core.windows.net/vrfcontainer/vrfosdisk.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": @@ -4593,7 +5080,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:23 GMT + - Tue, 11 Feb 2020 11:50:51 GMT expires: - '-1' pragma: @@ -4610,7 +5097,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31956 + - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31970 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_image_terms.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_image_terms.yaml index d9554b4dad0..8c3dbd77e25 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_image_terms.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_image_terms.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -70,7 +70,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:03:02 GMT + - Mon, 20 Jan 2020 13:17:32 GMT expires: - '-1' pragma: @@ -98,8 +98,8 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -122,7 +122,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:03:03 GMT + - Mon, 20 Jan 2020 13:17:32 GMT expires: - '-1' pragma: @@ -155,32 +155,32 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2019-11-01T09:03:08.5719522Z","signature":"7DIYTPKN4NDIW45CWWURTGYX253DPYGGFXNTG7WPJHV7V4FOV5S3NZOWJVJEZTB4X6LN4YQSJSBLSC5AKD6KZNPKOOBFCF2FFRZ3WDI","accepted":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2020-01-20T13:17:38.703315Z","signature":"E7JKHZKB35WOUCSJY6MECTCLRD3TTK44RIABAV6HCN35AAFZWHIO7CCTUPQ6NYAPTPWQTCEUODVVMDFHMJZC3SQIOF3CLERR44E6DEA","accepted":false}}' headers: cache-control: - no-cache content-length: - - '966' + - '965' content-type: - - application/json - dataserviceversion: - - 5.2.1.544 (AzureUX-Store:master.c6eb8bde.191028-0801) + - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:03:13 GMT + - Mon, 20 Jan 2020 13:17:44 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=4327f3090a5b43f7b4821c2374826cd7a580e763791307bcfff20f84a98b5c22;Path=/;HttpOnly;Domain=storeapi.azure.com strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -189,14 +189,16 @@ interactions: - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: body: '{"properties": {"publisher": "fortinet", "product": "fortinet_fortigate-vm_v5", - "plan": "fortinet_fg-vm_payg", "licenseTextLink": "https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt", + "plan": "fortinet_fg-vm_payg", "licenseTextLink": "https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt", "privacyPolicyLink": "http://www.fortinet.com/doc/legal/EULA.pdf", "retrieveDatetime": - "2019-11-01T09:03:08.5719522Z", "signature": "7DIYTPKN4NDIW45CWWURTGYX253DPYGGFXNTG7WPJHV7V4FOV5S3NZOWJVJEZTB4X6LN4YQSJSBLSC5AKD6KZNPKOOBFCF2FFRZ3WDI", + "2020-01-20T13:17:38.703315Z", "signature": "E7JKHZKB35WOUCSJY6MECTCLRD3TTK44RIABAV6HCN35AAFZWHIO7CCTUPQ6NYAPTPWQTCEUODVVMDFHMJZC3SQIOF3CLERR44E6DEA", "accepted": true}}' headers: Accept: @@ -208,38 +210,38 @@ interactions: Connection: - keep-alive Content-Length: - - '680' + - '679' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/Microsoft.MarketplaceOrdering/offertypes/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2019-11-01T09:03:08.5719522Z","signature":"7DIYTPKN4NDIW45CWWURTGYX253DPYGGFXNTG7WPJHV7V4FOV5S3NZOWJVJEZTB4X6LN4YQSJSBLSC5AKD6KZNPKOOBFCF2FFRZ3WDI","accepted":true}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/Microsoft.MarketplaceOrdering/offertypes/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2020-01-20T13:17:38.703315Z","signature":"E7JKHZKB35WOUCSJY6MECTCLRD3TTK44RIABAV6HCN35AAFZWHIO7CCTUPQ6NYAPTPWQTCEUODVVMDFHMJZC3SQIOF3CLERR44E6DEA","accepted":true}}' headers: cache-control: - no-cache content-length: - - '991' + - '990' content-type: - - application/json - dataserviceversion: - - 5.2.1.544 (AzureUX-Store:master.c6eb8bde.191028-0801) + - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:03:21 GMT + - Mon, 20 Jan 2020 13:17:51 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e6542d98ba549c57708befaa0104ee3a0d8267c5ad730919ce48720c5d020975;Path=/;HttpOnly;Domain=storeapi.azure.com strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -249,7 +251,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1170' + - '1188' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -267,12 +271,12 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -324,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:03:23 GMT + - Mon, 20 Jan 2020 13:17:52 GMT expires: - '-1' pragma: @@ -352,8 +356,8 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -376,7 +380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:03:24 GMT + - Mon, 20 Jan 2020 13:17:52 GMT expires: - '-1' pragma: @@ -409,32 +413,32 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2019-11-01T09:03:29.7318505Z","signature":"CYIZ3WPZBR56YZCJARZHA2EHKNP3CB4ENA4TC5YGS3BJQADEHCUNDUNNAAC6SE56CD5UF64G4WGRQKYPKSAFTRFN7OYYLZ47GRZA5JI","accepted":true}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2020-01-20T13:17:57.6465235Z","signature":"HOQBVZVB4BLEKVMISHESU73HF7EST2EIKI3MJZQQCROKT5KJMDVVMZT4AIUYATZMEVRRFFAOIPWKMWVTB23NSHOMMVZWQRWRFLIKVFY","accepted":true}}' headers: cache-control: - no-cache content-length: - '965' content-type: - - application/json - dataserviceversion: - - 5.2.1.544 (AzureUX-Store:master.c6eb8bde.191028-0801) + - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:03:35 GMT + - Mon, 20 Jan 2020 13:18:02 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=4327f3090a5b43f7b4821c2374826cd7a580e763791307bcfff20f84a98b5c22;Path=/;HttpOnly;Domain=storeapi.azure.com strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -443,6 +447,8 @@ interactions: - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -460,12 +466,12 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -517,7 +523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:03:36 GMT + - Mon, 20 Jan 2020 13:18:03 GMT expires: - '-1' pragma: @@ -545,8 +551,8 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -569,7 +575,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:03:37 GMT + - Mon, 20 Jan 2020 13:18:04 GMT expires: - '-1' pragma: @@ -602,32 +608,32 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2019-11-01T09:03:42.3793911Z","signature":"DIFFXYZATQPTOWT3RQRBJW4BLU3OEDOOQ57NJLUJRNQP2L5YJXH65IPN6N7FKD5L4S2JYBL7EXD76FX4GEV3CQDM4LURY3F4DFFRZMI","accepted":true}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2020-01-20T13:19:26.7962013Z","signature":"GFPXJJW5WSOECLMQSQDJOO4BPPPF5VDS5VJBRAK6UACCQ2X7TBYLKAEYKHGZGUDQ7RYXG3N3ZTEH2H3EIZ4BQ5NSPQPEIV73HLODKQI","accepted":true}}' headers: cache-control: - no-cache content-length: - '965' content-type: - - application/json - dataserviceversion: - - 5.2.1.544 (AzureUX-Store:master.c6eb8bde.191028-0801) + - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:03:48 GMT + - Mon, 20 Jan 2020 13:19:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Domain=storeapi.azure.com strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -636,14 +642,16 @@ interactions: - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: body: '{"properties": {"publisher": "fortinet", "product": "fortinet_fortigate-vm_v5", - "plan": "fortinet_fg-vm_payg", "licenseTextLink": "https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt", + "plan": "fortinet_fg-vm_payg", "licenseTextLink": "https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt", "privacyPolicyLink": "http://www.fortinet.com/doc/legal/EULA.pdf", "retrieveDatetime": - "2019-11-01T09:03:42.3793911Z", "signature": "DIFFXYZATQPTOWT3RQRBJW4BLU3OEDOOQ57NJLUJRNQP2L5YJXH65IPN6N7FKD5L4S2JYBL7EXD76FX4GEV3CQDM4LURY3F4DFFRZMI", + "2020-01-20T13:19:26.7962013Z", "signature": "GFPXJJW5WSOECLMQSQDJOO4BPPPF5VDS5VJBRAK6UACCQ2X7TBYLKAEYKHGZGUDQ7RYXG3N3ZTEH2H3EIZ4BQ5NSPQPEIV73HLODKQI", "accepted": false}}' headers: Accept: @@ -661,32 +669,32 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/Microsoft.MarketplaceOrdering/offertypes/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2019-11-01T09:03:08.5719522Z","signature":"7DIYTPKN4NDIW45CWWURTGYX253DPYGGFXNTG7WPJHV7V4FOV5S3NZOWJVJEZTB4X6LN4YQSJSBLSC5AKD6KZNPKOOBFCF2FFRZ3WDI","accepted":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/Microsoft.MarketplaceOrdering/offertypes/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2020-01-20T13:17:38.703315Z","signature":"E7JKHZKB35WOUCSJY6MECTCLRD3TTK44RIABAV6HCN35AAFZWHIO7CCTUPQ6NYAPTPWQTCEUODVVMDFHMJZC3SQIOF3CLERR44E6DEA","accepted":false}}' headers: cache-control: - no-cache content-length: - - '992' + - '991' content-type: - - application/json - dataserviceversion: - - 5.2.1.544 (AzureUX-Store:master.c6eb8bde.191028-0801) + - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:03:51 GMT + - Mon, 20 Jan 2020 13:19:37 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Domain=storeapi.azure.com strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -696,7 +704,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1192' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -714,12 +724,12 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -771,7 +781,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:03:52 GMT + - Mon, 20 Jan 2020 13:19:37 GMT expires: - '-1' pragma: @@ -799,8 +809,8 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -823,7 +833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:03:54 GMT + - Mon, 20 Jan 2020 13:19:38 GMT expires: - '-1' pragma: @@ -856,32 +866,32 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2019-11-01T09:03:59.3360755Z","signature":"MUPFKLFM4O6L6LWWIYKIGODK6JQ3SK6M4XXV6HTWKIMSLBKZV2NEADTTV3OQLPIXB24R3QOMJ6QGQKBD7YD3N7AUAOMB3OA2ODHGMEI","accepted":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2020-01-20T13:20:56.9570792Z","signature":"AXIFJMPCOTVW75YCSZMPXEGFFSAQAOMHG5BKRQ7ZFCZR6LFLHD6SLYXK3ONOTXKMZM3ABQNL35VGZ4VDW7LWIHPUIESSMDD3G3KBBNY","accepted":false}}' headers: cache-control: - no-cache content-length: - '966' content-type: - - application/json - dataserviceversion: - - 5.2.1.544 (AzureUX-Store:master.c6eb8bde.191028-0801) + - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:04:04 GMT + - Mon, 20 Jan 2020 13:21:02 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Domain=storeapi.azure.com strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -890,6 +900,8 @@ interactions: - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -907,32 +919,32 @@ interactions: ParameterSetName: - --publisher --offer --plan User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2019-11-01T09:04:08.7378728Z","signature":"BHTC2OXVFJJWCISDH7QABX4I2RZOKGI5IDFRZNOINNNVGSKLRPHXHMRFCBOMKTRZPRYQNJUGOX64UK27WXD5IIZEKZOLPSZ37VBY7TI","accepted":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2020-01-20T13:21:08.4165749Z","signature":"X5XNTKPORKFC6JJT7LHCXZAD5IN3DGCEEB5EZHWEE2USHTT5PUOXUEI5NOHZYRSV2EKXC4X7YOTA2YYY3BZE4H67U4APX5EBUULB4GA","accepted":false}}' headers: cache-control: - no-cache content-length: - '966' content-type: - - application/json - dataserviceversion: - - 5.2.1.544 (AzureUX-Store:master.c6eb8bde.191028-0801) + - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:04:14 GMT + - Mon, 20 Jan 2020 13:21:13 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=4327f3090a5b43f7b4821c2374826cd7a580e763791307bcfff20f84a98b5c22;Path=/;HttpOnly;Domain=storeapi.azure.com strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -941,14 +953,16 @@ interactions: - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: body: '{"properties": {"publisher": "fortinet", "product": "fortinet_fortigate-vm_v5", - "plan": "fortinet_fg-vm_payg", "licenseTextLink": "https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt", + "plan": "fortinet_fg-vm_payg", "licenseTextLink": "https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt", "privacyPolicyLink": "http://www.fortinet.com/doc/legal/EULA.pdf", "retrieveDatetime": - "2019-11-01T09:04:08.7378728Z", "signature": "BHTC2OXVFJJWCISDH7QABX4I2RZOKGI5IDFRZNOINNNVGSKLRPHXHMRFCBOMKTRZPRYQNJUGOX64UK27WXD5IIZEKZOLPSZ37VBY7TI", + "2020-01-20T13:21:08.4165749Z", "signature": "X5XNTKPORKFC6JJT7LHCXZAD5IN3DGCEEB5EZHWEE2USHTT5PUOXUEI5NOHZYRSV2EKXC4X7YOTA2YYY3BZE4H67U4APX5EBUULB4GA", "accepted": true}}' headers: Accept: @@ -966,32 +980,32 @@ interactions: ParameterSetName: - --publisher --offer --plan User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/Microsoft.MarketplaceOrdering/offertypes/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2019-11-01T09:04:08.7378728Z","signature":"BHTC2OXVFJJWCISDH7QABX4I2RZOKGI5IDFRZNOINNNVGSKLRPHXHMRFCBOMKTRZPRYQNJUGOX64UK27WXD5IIZEKZOLPSZ37VBY7TI","accepted":true}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/Microsoft.MarketplaceOrdering/offertypes/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2020-01-20T13:21:08.4165749Z","signature":"X5XNTKPORKFC6JJT7LHCXZAD5IN3DGCEEB5EZHWEE2USHTT5PUOXUEI5NOHZYRSV2EKXC4X7YOTA2YYY3BZE4H67U4APX5EBUULB4GA","accepted":true}}' headers: cache-control: - no-cache content-length: - '991' content-type: - - application/json - dataserviceversion: - - 5.2.1.544 (AzureUX-Store:master.c6eb8bde.191028-0801) + - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:04:22 GMT + - Mon, 20 Jan 2020 13:21:21 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=a703f806325944e1ff92f5b6964fbc06b4fdf5647d48c76a29966c392ea989b9;Path=/;HttpOnly;Domain=storeapi.azure.com strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1001,7 +1015,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1192' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -1019,32 +1035,32 @@ interactions: ParameterSetName: - --publisher --offer --plan User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2019-11-01T09:04:26.9464232Z","signature":"7PAR3YN2WJ3GRAGEXV2QPEYIDCIHFPDYXNLU64OB5VAAIKAKWKTSAPMZYTQXOO2RZOIAEBXVMW3DZ6CXGMYFGQCQJHHRLZINXYIDGMY","accepted":true}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2020-01-20T13:21:25.9366646Z","signature":"TQKY6XXBNX3K6LNTAR3HFSHRXAARCM6NIGSNDKCLQLU7ZUFHSSA5GETPJ3Y4PH24AEGQJZNYQA3A3G6BM3TOQ24U3ZJCFAG7GO4SKZY","accepted":true}}' headers: cache-control: - no-cache content-length: - '965' content-type: - - application/json - dataserviceversion: - - 5.2.1.544 (AzureUX-Store:master.c6eb8bde.191028-0801) + - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:04:32 GMT + - Mon, 20 Jan 2020 13:21:30 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e6542d98ba549c57708befaa0104ee3a0d8267c5ad730919ce48720c5d020975;Path=/;HttpOnly;Domain=storeapi.azure.com strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1053,6 +1069,8 @@ interactions: - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -1070,32 +1088,32 @@ interactions: ParameterSetName: - --publisher --offer --plan User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2019-11-01T09:04:37.071694Z","signature":"IHLEKQK7YAMSWY6AVK2TDMMCTRDEW5HKQ67IW4AKYX6UYNISHNBQA6AWOCO3B2X6255PLBGRAYAVJEOBJHNG7IYR64NUO5GJJFYEIXY","accepted":true}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2020-01-20T13:21:34.9562148Z","signature":"Q7YFLGIPEC2YYMI55OUN2PUHNUUPSVGU35NE67E3IRQ52CA5HKJJUR35SN2FXFBJ6PH5IUUT4AHFFD5GPUEUXMMYHMGU3FDC2DW3HLQ","accepted":true}}' headers: cache-control: - no-cache content-length: - - '964' + - '965' content-type: - - application/json - dataserviceversion: - - 5.2.1.544 (AzureUX-Store:master.c6eb8bde.191028-0801) + - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:04:42 GMT + - Mon, 20 Jan 2020 13:21:40 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=a703f806325944e1ff92f5b6964fbc06b4fdf5647d48c76a29966c392ea989b9;Path=/;HttpOnly;Domain=storeapi.azure.com strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1104,14 +1122,16 @@ interactions: - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: body: '{"properties": {"publisher": "fortinet", "product": "fortinet_fortigate-vm_v5", - "plan": "fortinet_fg-vm_payg", "licenseTextLink": "https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt", + "plan": "fortinet_fg-vm_payg", "licenseTextLink": "https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt", "privacyPolicyLink": "http://www.fortinet.com/doc/legal/EULA.pdf", "retrieveDatetime": - "2019-11-01T09:04:37.071694Z", "signature": "IHLEKQK7YAMSWY6AVK2TDMMCTRDEW5HKQ67IW4AKYX6UYNISHNBQA6AWOCO3B2X6255PLBGRAYAVJEOBJHNG7IYR64NUO5GJJFYEIXY", + "2020-01-20T13:21:34.9562148Z", "signature": "Q7YFLGIPEC2YYMI55OUN2PUHNUUPSVGU35NE67E3IRQ52CA5HKJJUR35SN2FXFBJ6PH5IUUT4AHFFD5GPUEUXMMYHMGU3FDC2DW3HLQ", "accepted": false}}' headers: Accept: @@ -1123,38 +1143,38 @@ interactions: Connection: - keep-alive Content-Length: - - '680' + - '681' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --publisher --offer --plan User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/Microsoft.MarketplaceOrdering/offertypes/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2019-11-01T09:04:08.7378728Z","signature":"BHTC2OXVFJJWCISDH7QABX4I2RZOKGI5IDFRZNOINNNVGSKLRPHXHMRFCBOMKTRZPRYQNJUGOX64UK27WXD5IIZEKZOLPSZ37VBY7TI","accepted":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/Microsoft.MarketplaceOrdering/offertypes/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2020-01-20T13:21:08.4165749Z","signature":"X5XNTKPORKFC6JJT7LHCXZAD5IN3DGCEEB5EZHWEE2USHTT5PUOXUEI5NOHZYRSV2EKXC4X7YOTA2YYY3BZE4H67U4APX5EBUULB4GA","accepted":false}}' headers: cache-control: - no-cache content-length: - '992' content-type: - - application/json - dataserviceversion: - - 5.2.1.544 (AzureUX-Store:master.c6eb8bde.191028-0801) + - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:04:47 GMT + - Mon, 20 Jan 2020 13:21:43 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=a703f806325944e1ff92f5b6964fbc06b4fdf5647d48c76a29966c392ea989b9;Path=/;HttpOnly;Domain=storeapi.azure.com strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1164,7 +1184,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1169' + - '1192' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -1182,32 +1204,32 @@ interactions: ParameterSetName: - --publisher --offer --plan User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-marketplaceordering/0.2.1 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a245R5VKDQTL7OVGO2KWZHZ3VNZPJD4ETPHJV4N7WFMSNUPPLV4V2ER7MINZUSVSFFMWDS4FJVROM3R3BFSIGXWS6YTVDL6AQZRX7ZXVKQ.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2019-11-01T09:04:51.7421818Z","signature":"FIKHGIHMDLNPDKXYZ66VBNXNSCGU4UVAPCZJ5CSFJEZTUMLOWVCHXZ66FAGZYXQQVDWO4VMUJEN2VBHWE7PE6Y4CZMZGBBP2LEI7LWA","accepted":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/fortinet/offers/fortinet_fortigate-vm_v5/plans/fortinet_fg-vm_payg/agreements/current","name":"fortinet_fg-vm_payg","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"fortinet","product":"fortinet_fortigate-vm_v5","plan":"fortinet_fg-vm_payg","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_FORTINET%253a24FORTINET%253a5FFORTIGATE%253a2DVM%253a5FV5%253a24FORTINET%253a5FFG%253a2DVM%253a5FPAYG%253a243YMMPVYGBMICVRJW7QKJ3IBZAC4YGLA4OY4DGJ2WK6SM2CDQ3QD3JCPY2UTR5BJAS43OEKEEMBHADH2SWB336HPI23ULY5Y3S46S3YY.txt","privacyPolicyLink":"http://www.fortinet.com/doc/legal/EULA.pdf","retrieveDatetime":"2020-01-20T13:21:48.3338694Z","signature":"KZCNZT7JYI5KOCKCOQRH2XI6CVKNAPWYNFLMIGPELLMD4MRCX3IAQ7QF4KUCNQNJMFJ35FQ5ZSXMEVZYNMBHQJKXRNNO7ABZLSTIO3A","accepted":false}}' headers: cache-control: - no-cache content-length: - '966' content-type: - - application/json - dataserviceversion: - - 5.2.1.544 (AzureUX-Store:master.c6eb8bde.191028-0801) + - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:04:57 GMT + - Mon, 20 Jan 2020 13:21:53 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Domain=storeapi.azure.com strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1216,6 +1238,8 @@ interactions: - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff + x-powered-by: + - ASP.NET status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_images_list_thru_services.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_images_list_thru_services.yaml index 46de57110c3..c5480342e91 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_images_list_thru_services.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_images_list_thru_services.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -135,6 +135,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arcblock\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/arcblock\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/arcserveusallc-marketing\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arista-networks\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/arista-networks\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ariwontollc\",\r\n @@ -149,6 +151,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/astadia-1148316\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/asyscosoftwarebv\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ataccama\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/ataccama\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"atlgaming\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/atlgaming\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"atmosera\",\r\n @@ -187,6 +191,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/azurecyclecloud\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureDatabricks\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureDatabricks\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azureopenshift\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/azureopenshift\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azuretesting\",\r\n @@ -215,6 +221,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/bayware\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bdy\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/bdy\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"betsol\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/betsol\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"beyondtrust\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/beyondtrust\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bi-builders-as\",\r\n @@ -261,6 +269,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/bravura-software-llc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bright-computing\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/bright-computing\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"brightcomputing\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/brightcomputing\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"brocade_communications\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/brocade_communications\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n @@ -281,6 +291,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/cautelalabs\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cavirin\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/cavirin\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cayosoftinc\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/cayosoftinc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"celum-gmbh\",\r\n @@ -365,6 +377,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codenvy\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/codenvy\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cognizant\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/cognizant\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cognosys\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/cognosys\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesity\",\r\n @@ -375,6 +389,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/collabcloudlimited\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"compellon\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/compellon\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"composable\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/composable\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"comunity\",\r\n @@ -445,6 +461,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datasunrise\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/datasunrise\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datavirtualitygmbh\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/datavirtualitygmbh\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datometry\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/datometry\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n @@ -535,6 +553,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/electric-cloud\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elevateiot\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/elevateiot\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eleven01\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/eleven01\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"emercoin\",\r\n @@ -585,6 +605,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/filecatalyst\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filemagellc\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/filemagellc\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fireeye\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/fireeye\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flashgrid-inc\",\r\n @@ -603,6 +625,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forcepoint-llc\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/forcepoint-llc\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forescout\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/forescout\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/formpipesoftwareab\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forscene\",\r\n @@ -637,6 +661,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/gitlab\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"globalscape\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/globalscape\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gluwareinc\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/gluwareinc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"graphistry\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/graphistry\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"graphitegtc\",\r\n @@ -701,6 +727,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/hyperglance\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hypergrid\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/hypergrid\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hystaxinc\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/hystaxinc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hytrust\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/hytrust\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"i-exceed-technology\",\r\n @@ -727,6 +755,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/incredibuild\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"industry-weapon\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/industry-weapon\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"influxdata\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/influxdata\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infoblox\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/infoblox\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infogix\",\r\n @@ -763,6 +793,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/ipswitch\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"irion\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/irion\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/ishlangu-load-balancer-adc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"issp-corporation\",\r\n @@ -801,6 +833,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/kadenallc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kali-linux\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/kali-linux\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kalkitech\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/kalkitech\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Kaspersky.Lab\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n @@ -831,6 +865,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/lancom-systems\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lansa\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/lansa\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lastline\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/lastline\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"leap-orbit\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/leap-orbit\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"leostream-corporation\",\r\n @@ -951,100 +987,390 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfbcde44d-56a5-46fe-b012-c009b46bbbc3-20200106083514\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testfbcde44d-56a5-46fe-b012-c009b46bbbc3-20200106083514\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Geneva\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Geneva.Edp\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Geneva.Edp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.KeyVault\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n @@ -1083,14 +1409,14 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Edp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Edp\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Monitoring.Edp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Test\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n @@ -1103,6 +1429,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Edp\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Edp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n @@ -1151,6 +1479,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test01\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n @@ -1243,6 +1573,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/mobilab\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"modern-systems\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/modern-systems\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/monitorcomputersystemsltd\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moogsoft\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/moogsoft\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n @@ -1255,6 +1587,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/multisoft-ab\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mwg_azure\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/mwg_azure\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"my-com\",\r\n @@ -1355,6 +1689,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/onapsis\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/oncore_cloud_services-4944214\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"onexgroup\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/onexgroup\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"onspecta\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/onspecta\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ontology\",\r\n @@ -1381,12 +1717,16 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/option3\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oraylisbi\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/oraylisbi\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orbs-network\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/orbs-network\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oriana\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/oriana\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oroinc\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/oroinc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osirium-ltd\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/osirium-ltd\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n @@ -1409,6 +1749,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/parallels\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"parasoft\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/parasoft\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pasifikciptamandiri\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/pasifikciptamandiri\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"passlogy\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/passlogy\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"paxata\",\r\n @@ -1423,6 +1765,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/pivotal\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"plesk\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/plesk\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pnop\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/pnop\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"portalarchitects\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/portalarchitects\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"portsysinc\",\r\n @@ -1431,6 +1775,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/postgres-pro\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/prestige_informatique-1090178\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prime-strategy\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/prime-strategy\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primekey\",\r\n @@ -1453,6 +1799,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"progelspa\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/progelspa\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"protiviti\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/protiviti\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptc\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/ptc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptsecurity\",\r\n @@ -1581,6 +1929,10 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/scalegrid\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scality\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/scality\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"schrockeninc\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/schrockeninc\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sci\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/sci\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scsk\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/scsk\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"secureworks\",\r\n @@ -1613,6 +1965,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/silver-peak-systems\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"simmachinesinc\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/simmachinesinc\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"simplifierag\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/simplifierag\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"simpligov\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/simpligov\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"simplygon\",\r\n @@ -1623,6 +1977,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/singapore-telecommunications-limited\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisenseltd\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/sisenseltd\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Site24x7\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Site24x7\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sktelecom\",\r\n @@ -1739,6 +2095,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/syncfusionbigdataplatfor\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"synechron-technologies\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/synechron-technologies\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"synnexcorp\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/synnexcorp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"syte\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/syte\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tableau\",\r\n @@ -1799,6 +2157,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Test1.NJHP.AppDefender\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"testpro\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/testpro\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thales-vormetric\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/thales-vormetric\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"things-board\",\r\n @@ -1811,6 +2171,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/thoughtspot-inc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tibco-software\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/tibco-software\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tidal-migrations\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/tidal-migrations\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tidalmediainc\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/tidalmediainc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tig\",\r\n @@ -1871,6 +2233,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/unitrends\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"unnisoft\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/unnisoft\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"unravel-data\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/unravel-data\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/unscramblsingaporepteltd-4999260\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"untangle\",\r\n @@ -1897,6 +2261,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/vemn\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veritas\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/veritas\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"versanetworks\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/versanetworks\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"versasec\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/versasec\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n @@ -1965,6 +2331,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"world-programming\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/world-programming\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"worxogo\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/worxogo\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n @@ -1997,6 +2365,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/zerto\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/zettalane_systems-5254599\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zevenet\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/zevenet\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zoomdata\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/zoomdata\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zscaler\",\r\n @@ -2006,11 +2376,11 @@ interactions: cache-control: - no-cache content-length: - - '209087' + - '266724' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:49:59 GMT + - Mon, 20 Jan 2020 13:17:28 GMT expires: - '-1' pragma: @@ -2043,8 +2413,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -2067,6 +2437,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0003-com-ubuntu-minimal-eoan-daily\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"test-ubuntu-premium-offer-0002\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/test-ubuntu-premium-offer-0002\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Ubuntu15.04Snappy\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Ubuntu15.04SnappyDocker\",\r\n @@ -2082,11 +2454,11 @@ interactions: cache-control: - no-cache content-length: - - '3519' + - '3795' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:00 GMT + - Mon, 20 Jan 2020 13:17:29 GMT expires: - '-1' pragma: @@ -2119,8 +2491,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -2246,7 +2618,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:00 GMT + - Mon, 20 Jan 2020 13:17:29 GMT expires: - '-1' pragma: @@ -2279,8 +2651,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -2300,7 +2672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:00 GMT + - Mon, 20 Jan 2020 13:17:30 GMT expires: - '-1' pragma: @@ -2333,8 +2705,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -2366,7 +2738,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:01 GMT + - Mon, 20 Jan 2020 13:17:30 GMT expires: - '-1' pragma: @@ -2399,8 +2771,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -2532,7 +2904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:01 GMT + - Mon, 20 Jan 2020 13:17:30 GMT expires: - '-1' pragma: @@ -2565,8 +2937,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -2599,16 +2971,18 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201903150\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201911070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '3708' + - '3993' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:01 GMT + - Mon, 20 Jan 2020 13:17:31 GMT expires: - '-1' pragma: @@ -2641,8 +3015,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -2671,16 +3045,18 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201903150\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201911070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '3138' + - '3423' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:01 GMT + - Mon, 20 Jan 2020 13:17:31 GMT expires: - '-1' pragma: @@ -2713,8 +3089,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -2739,16 +3115,18 @@ interactions: \ \"id\": \"/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.201903150\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/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.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/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.201911070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '2568' + - '2853' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:02 GMT + - Mon, 20 Jan 2020 13:17:31 GMT expires: - '-1' pragma: @@ -2781,8 +3159,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -2827,16 +3205,18 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201903150\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201911070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '5418' + - '5703' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:02 GMT + - Mon, 20 Jan 2020 13:17:31 GMT expires: - '-1' pragma: @@ -2869,8 +3249,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -2911,16 +3291,18 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201903150\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201911070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '4848' + - '5133' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:02 GMT + - Mon, 20 Jan 2020 13:17:32 GMT expires: - '-1' pragma: @@ -2953,17 +3335,15 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 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.5-DAILY-LTS/versions?api-version=2019-07-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201904020\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904020\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201904030\",\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201904030\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904030\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201904080\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904080\"\r\n @@ -2979,6 +3359,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904290\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201911070\"\r\n \ }\r\n]" headers: cache-control: @@ -2988,7 +3370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:03 GMT + - Mon, 20 Jan 2020 13:17:32 GMT expires: - '-1' pragma: @@ -3021,8 +3403,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -3175,16 +3557,18 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904290\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201911070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '20808' + - '21093' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:03 GMT + - Mon, 20 Jan 2020 13:17:32 GMT expires: - '-1' pragma: @@ -3217,8 +3601,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -3241,20 +3625,20 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201909050\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201909091\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201909091\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910100\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910100\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910110\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910110\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910150\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910210\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910210\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910240\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910240\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910300\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910310\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912090\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201912090\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912100\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201912100\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.202001070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001100\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.202001100\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.202001150\"\r\n \ }\r\n]" headers: cache-control: @@ -3264,7 +3648,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:03 GMT + - Mon, 20 Jan 2020 13:17:33 GMT expires: - '-1' pragma: @@ -3297,8 +3681,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -3479,16 +3863,24 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201910110\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910310\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202001070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '24624' + - '25756' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:03 GMT + - Mon, 20 Jan 2020 13:17:33 GMT expires: - '-1' pragma: @@ -3521,8 +3913,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -3591,16 +3983,24 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201910110\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910310\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202001070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '8838' + - '9978' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:04 GMT + - Mon, 20 Jan 2020 13:17:33 GMT expires: - '-1' pragma: @@ -3633,8 +4033,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -3665,16 +4065,46 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201910300\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910310\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911210\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911220\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911220\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911261\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911261\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201912040\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912090\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201912090\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912100\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201912100\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.202001070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001100\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.202001100\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.202001150\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '3531' + - '7941' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:04 GMT + - Mon, 20 Jan 2020 13:17:33 GMT expires: - '-1' pragma: @@ -3707,8 +4137,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -3727,16 +4157,24 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201910110\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910310\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202001070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '1731' + - '2883' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:04 GMT + - Mon, 20 Jan 2020 13:17:34 GMT expires: - '-1' pragma: @@ -3769,8 +4207,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -3789,16 +4227,24 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201910110\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910310\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202001070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '1743' + - '2903' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:04 GMT + - Mon, 20 Jan 2020 13:17:34 GMT expires: - '-1' pragma: @@ -3831,8 +4277,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -3859,28 +4305,30 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201909030\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201909140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201909140\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910140\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201910140\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910180\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201910180\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910210\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201910210\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910230\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201910230\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910290\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201910290\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201910300\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201912180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202001070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202001080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001120\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202001120\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202001150\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001161\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202001161\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '4627' + - '4916' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:05 GMT + - Mon, 20 Jan 2020 13:17:34 GMT expires: - '-1' pragma: @@ -3913,8 +4361,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -4015,16 +4463,22 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201910080\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910210\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201910210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201912050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201912180\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '13304' + - '14153' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:05 GMT + - Mon, 20 Jan 2020 13:17:35 GMT expires: - '-1' pragma: @@ -4057,8 +4511,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -4074,7 +4528,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:05 GMT + - Mon, 20 Jan 2020 13:17:35 GMT expires: - '-1' pragma: @@ -4107,8 +4561,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -4124,7 +4578,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:06 GMT + - Mon, 20 Jan 2020 13:17:35 GMT expires: - '-1' pragma: @@ -4157,8 +4611,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -4181,16 +4635,52 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201910290\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910300\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201910300\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911040\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911210\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911250\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911250\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911270\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911270\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201912040\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201912050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201912180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202001070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202001080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001120\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202001120\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202001150\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001161\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202001161\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '2355' + - '7647' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:06 GMT + - Mon, 20 Jan 2020 13:17:35 GMT expires: - '-1' pragma: @@ -4223,8 +4713,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -4247,16 +4737,22 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201910080\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910210\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201910210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201912050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201912180\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '2307' + - '3171' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:07 GMT + - Mon, 20 Jan 2020 13:17:36 GMT expires: - '-1' pragma: @@ -4289,8 +4785,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -4325,16 +4821,20 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201908230\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910030\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201910030\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201911080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911131\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201911131\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '3909' + - '4467' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:07 GMT + - Mon, 20 Jan 2020 13:17:36 GMT expires: - '-1' pragma: @@ -4367,8 +4867,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -4395,20 +4895,20 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908190\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201908210\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908210\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910200\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910200\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910220\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910220\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910230\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910230\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910250\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910250\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910290\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910290\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910300\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910310\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201912180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001060\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.202001060\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.202001080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001090\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.202001090\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.202001140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.202001150\"\r\n \ }\r\n]" headers: cache-control: @@ -4418,7 +4918,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:07 GMT + - Mon, 20 Jan 2020 13:17:36 GMT expires: - '-1' pragma: @@ -4451,8 +4951,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -4479,28 +4979,30 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908190\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201908200\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908200\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201910150\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910160\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201910160\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910170\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201910170\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910220\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201910220\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910230\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201910230\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910240\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201910240\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201912180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001060\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202001060\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202001070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202001080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202001140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202001150\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202001170\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '4563' + - '4848' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:07 GMT + - Mon, 20 Jan 2020 13:17:37 GMT expires: - '-1' pragma: @@ -4533,8 +5035,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -4587,16 +5089,58 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910300\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910310\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911060\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911060\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911131\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911131\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911210\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911220\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911220\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911260\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911260\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911270\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911270\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911280\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911280\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201912040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912040\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201912130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001060\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001060\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001090\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001090\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001150\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '6673' + - '12763' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:08 GMT + - Mon, 20 Jan 2020 13:17:37 GMT expires: - '-1' pragma: @@ -4629,8 +5173,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -4641,16 +5185,20 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201908230\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910030\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201910030\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201911080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911131\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201911131\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '571' + - '1139' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:08 GMT + - Mon, 20 Jan 2020 13:17:37 GMT expires: - '-1' pragma: @@ -4683,8 +5231,8 @@ interactions: ParameterSetName: - -l --publisher --offer -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -4767,16 +5315,62 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201910230\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910240\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201910240\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910290\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201910290\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201910300\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910310\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911060\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911060\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911150\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911210\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911220\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911220\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911270\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911270\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201912040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201912040\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201912130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201912130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201912180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001060\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202001060\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202001070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202001080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202001140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202001150\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202001170\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '11023' + - '17693' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:08 GMT + - Mon, 20 Jan 2020 13:17:37 GMT expires: - '-1' pragma: @@ -4809,12 +5403,12 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -4866,7 +5460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:09 GMT + - Mon, 20 Jan 2020 13:17:38 GMT expires: - '-1' pragma: @@ -4894,8 +5488,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -5016,6 +5610,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arcblock\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/arcblock\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/arcserveusallc-marketing\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arista-networks\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/arista-networks\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ariwontollc\",\r\n @@ -5030,6 +5626,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/astadia-1148316\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/asyscosoftwarebv\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ataccama\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/ataccama\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"atlgaming\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/atlgaming\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"atmosera\",\r\n @@ -5068,6 +5666,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/azurecyclecloud\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureDatabricks\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureDatabricks\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azureopenshift\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/azureopenshift\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azuretesting\",\r\n @@ -5096,6 +5696,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/bayware\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bdy\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/bdy\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"betsol\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/betsol\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"beyondtrust\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/beyondtrust\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bi-builders-as\",\r\n @@ -5142,6 +5744,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/bravura-software-llc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bright-computing\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/bright-computing\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"brightcomputing\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/brightcomputing\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"brocade_communications\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/brocade_communications\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n @@ -5162,6 +5766,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/cautelalabs\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cavirin\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/cavirin\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cayosoftinc\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/cayosoftinc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"celum-gmbh\",\r\n @@ -5246,6 +5852,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codenvy\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/codenvy\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cognizant\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/cognizant\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cognosys\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/cognosys\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesity\",\r\n @@ -5256,6 +5864,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/collabcloudlimited\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"compellon\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/compellon\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"composable\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/composable\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"comunity\",\r\n @@ -5326,6 +5936,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datasunrise\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/datasunrise\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datavirtualitygmbh\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/datavirtualitygmbh\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datometry\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/datometry\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n @@ -5416,6 +6028,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/electric-cloud\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elevateiot\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/elevateiot\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eleven01\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/eleven01\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"emercoin\",\r\n @@ -5466,6 +6080,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/filecatalyst\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filemagellc\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/filemagellc\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fireeye\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/fireeye\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flashgrid-inc\",\r\n @@ -5484,6 +6100,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forcepoint-llc\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/forcepoint-llc\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forescout\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/forescout\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/formpipesoftwareab\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forscene\",\r\n @@ -5518,6 +6136,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/gitlab\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"globalscape\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/globalscape\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gluwareinc\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/gluwareinc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"graphistry\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/graphistry\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"graphitegtc\",\r\n @@ -5582,6 +6202,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/hyperglance\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hypergrid\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/hypergrid\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hystaxinc\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/hystaxinc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hytrust\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/hytrust\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"i-exceed-technology\",\r\n @@ -5608,6 +6230,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/incredibuild\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"industry-weapon\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/industry-weapon\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"influxdata\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/influxdata\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infoblox\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/infoblox\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infogix\",\r\n @@ -5644,6 +6268,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/ipswitch\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"irion\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/irion\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/ishlangu-load-balancer-adc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"issp-corporation\",\r\n @@ -5682,6 +6308,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/kadenallc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kali-linux\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/kali-linux\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kalkitech\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/kalkitech\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Kaspersky.Lab\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n @@ -5712,6 +6340,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/lancom-systems\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lansa\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/lansa\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lastline\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/lastline\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"leap-orbit\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/leap-orbit\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"leostream-corporation\",\r\n @@ -5832,100 +6462,390 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfbcde44d-56a5-46fe-b012-c009b46bbbc3-20200106083514\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testfbcde44d-56a5-46fe-b012-c009b46bbbc3-20200106083514\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Geneva\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Geneva.Edp\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Geneva.Edp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.KeyVault\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n @@ -5964,14 +6884,14 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Edp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Edp\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Monitoring.Edp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Test\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n @@ -5984,6 +6904,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Edp\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Edp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n @@ -6032,6 +6954,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test01\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n @@ -6124,6 +7048,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/mobilab\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"modern-systems\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/modern-systems\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/monitorcomputersystemsltd\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moogsoft\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/moogsoft\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n @@ -6136,6 +7062,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/multisoft-ab\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mwg_azure\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/mwg_azure\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"my-com\",\r\n @@ -6236,6 +7164,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/onapsis\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/oncore_cloud_services-4944214\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"onexgroup\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/onexgroup\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"onspecta\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/onspecta\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ontology\",\r\n @@ -6262,12 +7192,16 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/option3\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oraylisbi\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/oraylisbi\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orbs-network\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/orbs-network\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oriana\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/oriana\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oroinc\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/oroinc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osirium-ltd\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/osirium-ltd\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n @@ -6290,6 +7224,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/parallels\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"parasoft\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/parasoft\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pasifikciptamandiri\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/pasifikciptamandiri\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"passlogy\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/passlogy\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"paxata\",\r\n @@ -6304,6 +7240,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/pivotal\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"plesk\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/plesk\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pnop\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/pnop\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"portalarchitects\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/portalarchitects\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"portsysinc\",\r\n @@ -6312,6 +7250,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/postgres-pro\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/prestige_informatique-1090178\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prime-strategy\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/prime-strategy\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primekey\",\r\n @@ -6334,6 +7274,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"progelspa\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/progelspa\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"protiviti\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/protiviti\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptc\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/ptc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptsecurity\",\r\n @@ -6462,6 +7404,10 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/scalegrid\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scality\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/scality\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"schrockeninc\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/schrockeninc\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sci\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/sci\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scsk\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/scsk\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"secureworks\",\r\n @@ -6494,6 +7440,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/silver-peak-systems\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"simmachinesinc\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/simmachinesinc\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"simplifierag\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/simplifierag\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"simpligov\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/simpligov\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"simplygon\",\r\n @@ -6504,6 +7452,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/singapore-telecommunications-limited\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisenseltd\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/sisenseltd\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Site24x7\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Site24x7\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sktelecom\",\r\n @@ -6620,6 +7570,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/syncfusionbigdataplatfor\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"synechron-technologies\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/synechron-technologies\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"synnexcorp\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/synnexcorp\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"syte\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/syte\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tableau\",\r\n @@ -6680,6 +7632,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Test1.NJHP.AppDefender\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"testpro\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/testpro\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thales-vormetric\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/thales-vormetric\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"things-board\",\r\n @@ -6692,6 +7646,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/thoughtspot-inc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tibco-software\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/tibco-software\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tidal-migrations\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/tidal-migrations\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tidalmediainc\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/tidalmediainc\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tig\",\r\n @@ -6752,6 +7708,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/unitrends\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"unnisoft\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/unnisoft\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"unravel-data\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/unravel-data\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/unscramblsingaporepteltd-4999260\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"untangle\",\r\n @@ -6778,6 +7736,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/vemn\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veritas\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/veritas\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"versanetworks\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/versanetworks\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"versasec\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/versasec\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n @@ -6846,6 +7806,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"world-programming\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/world-programming\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"worxogo\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/worxogo\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n @@ -6878,6 +7840,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/zerto\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/zettalane_systems-5254599\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zevenet\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/zevenet\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zoomdata\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/zoomdata\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zscaler\",\r\n @@ -6887,11 +7851,11 @@ interactions: cache-control: - no-cache content-length: - - '209087' + - '266724' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:10 GMT + - Mon, 20 Jan 2020 13:17:40 GMT expires: - '-1' pragma: @@ -6924,8 +7888,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -6948,6 +7912,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0003-com-ubuntu-minimal-eoan-daily\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"test-ubuntu-premium-offer-0002\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/test-ubuntu-premium-offer-0002\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Ubuntu15.04Snappy\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Ubuntu15.04SnappyDocker\",\r\n @@ -6963,11 +7929,11 @@ interactions: cache-control: - no-cache content-length: - - '3519' + - '3795' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:10 GMT + - Mon, 20 Jan 2020 13:17:40 GMT expires: - '-1' pragma: @@ -7000,8 +7966,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -7127,7 +8093,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:11 GMT + - Mon, 20 Jan 2020 13:17:41 GMT expires: - '-1' pragma: @@ -7160,8 +8126,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -7181,7 +8147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:11 GMT + - Mon, 20 Jan 2020 13:17:41 GMT expires: - '-1' pragma: @@ -7214,8 +8180,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -7247,7 +8213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:11 GMT + - Mon, 20 Jan 2020 13:17:41 GMT expires: - '-1' pragma: @@ -7280,8 +8246,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -7413,7 +8379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:12 GMT + - Mon, 20 Jan 2020 13:17:42 GMT expires: - '-1' pragma: @@ -7446,8 +8412,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -7480,16 +8446,18 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201903150\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201911070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '3708' + - '3993' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:12 GMT + - Mon, 20 Jan 2020 13:17:42 GMT expires: - '-1' pragma: @@ -7522,8 +8490,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -7552,16 +8520,18 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201903150\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201911070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '3138' + - '3423' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:12 GMT + - Mon, 20 Jan 2020 13:17:42 GMT expires: - '-1' pragma: @@ -7594,8 +8564,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -7620,16 +8590,18 @@ interactions: \ \"id\": \"/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.201903150\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/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.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/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.201911070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '2568' + - '2853' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:12 GMT + - Mon, 20 Jan 2020 13:17:43 GMT expires: - '-1' pragma: @@ -7662,8 +8634,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -7708,16 +8680,18 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201903150\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201911070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '5418' + - '5703' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:13 GMT + - Mon, 20 Jan 2020 13:17:43 GMT expires: - '-1' pragma: @@ -7750,8 +8724,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -7792,16 +8766,18 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201903150\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201911070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '4848' + - '5133' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:13 GMT + - Mon, 20 Jan 2020 13:17:43 GMT expires: - '-1' pragma: @@ -7834,17 +8810,15 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 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.5-DAILY-LTS/versions?api-version=2019-07-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201904020\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904020\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201904030\",\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201904030\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904030\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201904080\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904080\"\r\n @@ -7860,6 +8834,8 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904290\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201911070\"\r\n \ }\r\n]" headers: cache-control: @@ -7869,7 +8845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:13 GMT + - Mon, 20 Jan 2020 13:17:43 GMT expires: - '-1' pragma: @@ -7902,8 +8878,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -8056,16 +9032,18 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904290\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201905140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201905140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201911070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '20808' + - '21093' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:14 GMT + - Mon, 20 Jan 2020 13:17:44 GMT expires: - '-1' pragma: @@ -8098,8 +9076,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -8122,20 +9100,20 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201909050\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201909091\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201909091\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910100\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910100\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910110\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910110\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910150\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910210\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910210\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910240\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910240\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910300\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910310\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912090\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201912090\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912100\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201912100\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.202001070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001100\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.202001100\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.202001150\"\r\n \ }\r\n]" headers: cache-control: @@ -8145,7 +9123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:14 GMT + - Mon, 20 Jan 2020 13:17:44 GMT expires: - '-1' pragma: @@ -8178,8 +9156,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -8360,16 +9338,24 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201910110\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910310\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202001070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '24624' + - '25756' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:14 GMT + - Mon, 20 Jan 2020 13:17:44 GMT expires: - '-1' pragma: @@ -8402,8 +9388,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -8472,16 +9458,24 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201910110\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910310\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202001070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '8838' + - '9978' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:14 GMT + - Mon, 20 Jan 2020 13:17:45 GMT expires: - '-1' pragma: @@ -8514,8 +9508,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -8546,16 +9540,46 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201910300\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910310\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911210\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911220\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911220\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911261\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201911261\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201912040\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912090\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201912090\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912100\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201912100\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.202001070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001100\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.202001100\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.202001150\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '3531' + - '7941' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:15 GMT + - Mon, 20 Jan 2020 13:17:45 GMT expires: - '-1' pragma: @@ -8588,8 +9612,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -8608,16 +9632,24 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201910110\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910310\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202001070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '1731' + - '2883' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:15 GMT + - Mon, 20 Jan 2020 13:17:45 GMT expires: - '-1' pragma: @@ -8650,8 +9682,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -8670,16 +9702,24 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201910110\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201910310\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202001070\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '1743' + - '2903' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:15 GMT + - Mon, 20 Jan 2020 13:17:46 GMT expires: - '-1' pragma: @@ -8712,8 +9752,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -8740,28 +9780,30 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201909030\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201909140\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201909140\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910140\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201910140\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910180\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201910180\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910210\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201910210\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910230\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201910230\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910290\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201910290\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201910300\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201912180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202001070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202001080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001120\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202001120\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202001150\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001161\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202001161\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '4627' + - '4916' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:16 GMT + - Mon, 20 Jan 2020 13:17:46 GMT expires: - '-1' pragma: @@ -8794,8 +9836,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -8896,16 +9938,22 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201910080\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910210\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201910210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201912050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201912180\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '13304' + - '14153' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:16 GMT + - Mon, 20 Jan 2020 13:17:46 GMT expires: - '-1' pragma: @@ -8938,8 +9986,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -8955,7 +10003,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:16 GMT + - Mon, 20 Jan 2020 13:17:47 GMT expires: - '-1' pragma: @@ -8988,8 +10036,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -9005,7 +10053,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:16 GMT + - Mon, 20 Jan 2020 13:17:47 GMT expires: - '-1' pragma: @@ -9038,8 +10086,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -9062,16 +10110,52 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201910290\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910300\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201910300\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911040\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911210\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911250\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911250\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911270\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201911270\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201912040\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201912050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912110\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201912110\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.201912180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202001070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202001080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001120\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202001120\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202001150\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202001161\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202001161\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '2355' + - '7647' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:17 GMT + - Mon, 20 Jan 2020 13:17:47 GMT expires: - '-1' pragma: @@ -9104,8 +10188,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -9128,16 +10212,22 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201910080\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201910210\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201910210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201912050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201912180\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '2307' + - '3171' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:17 GMT + - Mon, 20 Jan 2020 13:17:47 GMT expires: - '-1' pragma: @@ -9170,8 +10260,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -9206,16 +10296,20 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201908230\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910030\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201910030\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201911080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911131\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201911131\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '3909' + - '4467' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:17 GMT + - Mon, 20 Jan 2020 13:17:48 GMT expires: - '-1' pragma: @@ -9248,8 +10342,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -9276,20 +10370,20 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908190\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201908210\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908210\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910200\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910200\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910220\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910220\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910230\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910230\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910250\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910250\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910290\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910290\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910300\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910310\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201912180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001060\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.202001060\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.202001080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001090\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.202001090\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.202001140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.202001150\"\r\n \ }\r\n]" headers: cache-control: @@ -9299,7 +10393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:17 GMT + - Mon, 20 Jan 2020 13:17:48 GMT expires: - '-1' pragma: @@ -9332,8 +10426,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -9360,28 +10454,30 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908190\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201908200\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908200\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201910150\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910160\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201910160\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910170\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201910170\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910220\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201910220\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910230\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201910230\"\r\n - \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910240\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201910240\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201912180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001060\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202001060\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202001070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202001080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202001140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202001150\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202001170\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '4563' + - '4848' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:18 GMT + - Mon, 20 Jan 2020 13:17:48 GMT expires: - '-1' pragma: @@ -9414,8 +10510,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -9468,16 +10564,58 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910300\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910310\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911060\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911060\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911131\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911131\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911210\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911220\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911220\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911260\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911260\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911270\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911270\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911280\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911280\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201912040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912040\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201912130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001060\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001060\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001090\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001090\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001150\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '6673' + - '12763' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:18 GMT + - Mon, 20 Jan 2020 13:17:50 GMT expires: - '-1' pragma: @@ -9510,8 +10648,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -9522,16 +10660,20 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201908230\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201910030\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201910030\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201911080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.04.201911131\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201911131\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '571' + - '1139' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:18 GMT + - Mon, 20 Jan 2020 13:17:50 GMT expires: - '-1' pragma: @@ -9564,8 +10706,8 @@ interactions: ParameterSetName: - -p -f -o --all User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -9648,16 +10790,62 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201910230\"\r\n \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910240\",\r\n \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201910240\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910290\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201910290\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201910300\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201910310\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201910310\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911050\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911050\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911060\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911060\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911150\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911210\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911210\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911220\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911220\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201911270\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201911270\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201912040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201912040\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201912130\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201912130\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201912170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201912170\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.201912180\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.201912180\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001060\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202001060\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202001070\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001080\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202001080\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202001140\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001150\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202001150\"\r\n + \ },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.10.202001170\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202001170\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '11023' + - '17693' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 07:50:19 GMT + - Mon, 20 Jan 2020 13:17:50 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_existing_ids_options.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_existing_ids_options.yaml index 21b7d6abe5d..82e8ccbc28b 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_existing_ids_options.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_existing_ids_options.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -n -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001","name":"cli_test_vmss_create_existing_ids000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-07T12:46:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001","name":"cli_test_vmss_create_existing_ids000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-11T11:41:10Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:30 GMT + - Tue, 11 Feb 2020 11:41:16 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: ParameterSetName: - -n -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -73,15 +73,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n - \ \"etag\": \"W/\\\"6088a7b3-3ae9-48da-adaf-0ff5bd58d846\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"19c37ef5-069b-4a90-9e40-15439486d287\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"a9dd96ad-1a53-4f82-839b-04735ba3f7d9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a34162a4-b1d2-4161-8303-c2296a729bda\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"6088a7b3-3ae9-48da-adaf-0ff5bd58d846\\\"\",\r\n + \ \"etag\": \"W/\\\"19c37ef5-069b-4a90-9e40-15439486d287\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -90,7 +90,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/06b7f3ea-5671-43b3-9324-e855202658cb?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b9eb82a6-7fe0-4641-a321-f517a327e360?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:35 GMT + - Tue, 11 Feb 2020 11:41:22 GMT expires: - '-1' pragma: @@ -111,9 +111,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1a2c1140-11c5-4228-983b-a7be5c6915cd + - 32993d9c-bbef-4030-883a-7e2049d0116f x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -131,22 +131,22 @@ interactions: ParameterSetName: - -n -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/06b7f3ea-5671-43b3-9324-e855202658cb?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b9eb82a6-7fe0-4641-a321-f517a327e360?api-version=2019-11-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:38 GMT + - Tue, 11 Feb 2020 11:41:27 GMT expires: - '-1' pragma: @@ -163,7 +163,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9a51c4fc-6819-49bb-b5c1-ab039cc5c5a3 + - 68cc246e-808b-4dfb-b71a-386061c4ec0f status: code: 200 message: OK @@ -181,39 +181,22 @@ interactions: ParameterSetName: - -n -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b9eb82a6-7fe0-4641-a321-f517a327e360?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n - \ \"etag\": \"W/\\\"15c47db7-340e-4b8d-9e78-ee739d6f9032\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"a9dd96ad-1a53-4f82-839b-04735ba3f7d9\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"15c47db7-340e-4b8d-9e78-ee739d6f9032\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1449' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:38 GMT - etag: - - W/"15c47db7-340e-4b8d-9e78-ee739d6f9032" + - Tue, 11 Feb 2020 11:41:38 GMT expires: - '-1' pragma: @@ -230,7 +213,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9205ac28-55c3-4ae5-a880-a0f80eb9de49 + - b66e33d6-d458-44c2-b8b8-6b00aa5b2391 status: code: 200 message: OK @@ -242,40 +225,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network lb create + - network vnet create Connection: - keep-alive ParameterSetName: - - --name -g --backend-pool-name + - -n -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b9eb82a6-7fe0-4641-a321-f517a327e360?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001","name":"cli_test_vmss_create_existing_ids000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-07T12:46:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '428' + - '29' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:40 GMT + - Tue, 11 Feb 2020 11:41:48 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 9e8223da-5320-4890-87b7-b1580aa2e20a status: code: 200 message: OK @@ -287,56 +275,67 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network lb create + - network vnet create Connection: - keep-alive ParameterSetName: - - --name -g --backend-pool-name + - -n -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_vmss_create_existing_ids000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet?api-version=2019-11-01 response: body: - string: '{"value":[]}' + string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n + \ \"etag\": \"W/\\\"89f70f7f-f527-42ff-b20d-c493a9ca84d9\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"a34162a4-b1d2-4161-8303-c2296a729bda\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n + \ \"etag\": \"W/\\\"89f70f7f-f527-42ff-b20d-c493a9ca84d9\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '12' + - '1449' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:40 GMT + - Tue, 11 Feb 2020 11:41:48 GMT + etag: + - W/"89f70f7f-f527-42ff-b20d-c493a9ca84d9" expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 8b090c4b-60c1-487a-b11c-c7e038a5bb7a status: code: 200 message: OK - request: - body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": - [{"apiVersion": "2019-11-01", "type": "Microsoft.Network/publicIPAddresses", - "name": "PublicIPvrflb", "location": "westus", "tags": {}, "dependsOn": [], - "properties": {"publicIPAllocationMethod": "Dynamic"}, "sku": {"name": "Basic"}}, - {"type": "Microsoft.Network/loadBalancers", "name": "vrflb", "location": "westus", - "tags": {}, "apiVersion": "2019-11-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPvrflb"], - "properties": {"backendAddressPools": [{"name": "mybepool"}], "frontendIPConfigurations": - [{"name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb"}, - "privateIPAddressVersion": "IPv4"}}]}, "sku": {"name": "Basic"}}], "outputs": - {"loadBalancer": {"type": "object", "value": "[reference(\''vrflb\'')]"}}}, - "parameters": {}, "mode": "Incremental"}}''' + body: null headers: Accept: - application/json @@ -346,119 +345,27 @@ interactions: - network lb create Connection: - keep-alive - Content-Length: - - '1189' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/lb_deploy_VhGNB3n68Rgc06UoTnrqQ1mTJ8ZYRpQV","name":"lb_deploy_VhGNB3n68Rgc06UoTnrqQ1mTJ8ZYRpQV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11421441168328816832","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-07T12:46:44.8355248Z","duration":"PT1.8581922S","correlationId":"a6663ce6-2b2e-4d51-8996-746f5ecd88b4","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPvrflb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrflb"}]}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/lb_deploy_VhGNB3n68Rgc06UoTnrqQ1mTJ8ZYRpQV/operationStatuses/08586205272825002823?api-version=2019-07-01 - cache-control: - - no-cache - content-length: - - '1355' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:46:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1192' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network lb create - Connection: - - keep-alive - ParameterSetName: - - --name -g --backend-pool-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205272825002823?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:47:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network lb create - Connection: - - keep-alive - ParameterSetName: - - --name -g --backend-pool-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205272825002823?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001?api-version=2019-07-01 response: body: - string: '{"status":"Running"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001","name":"cli_test_vmss_create_existing_ids000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-11T11:41:10Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '20' + - '428' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:47:47 GMT + - Tue, 11 Feb 2020 11:41:49 GMT expires: - '-1' pragma: @@ -486,22 +393,24 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205272825002823?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_vmss_create_existing_ids000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2019-07-01 response: body: - string: '{"status":"Running"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '20' + - '12' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:48:17 GMT + - Tue, 11 Feb 2020 11:41:50 GMT expires: - '-1' pragma: @@ -516,7 +425,18 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"apiVersion": "2019-11-01", "type": "Microsoft.Network/publicIPAddresses", + "name": "PublicIPvrflb", "location": "westus", "tags": {}, "dependsOn": [], + "properties": {"publicIPAllocationMethod": "Dynamic"}, "sku": {"name": "Basic"}}, + {"type": "Microsoft.Network/loadBalancers", "name": "vrflb", "location": "westus", + "tags": {}, "apiVersion": "2019-11-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPvrflb"], + "properties": {"backendAddressPools": [{"name": "mybepool"}], "frontendIPConfigurations": + [{"name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb"}, + "privateIPAddressVersion": "IPv4"}}]}, "sku": {"name": "Basic"}}], "outputs": + {"loadBalancer": {"type": "object", "value": "[reference(\''vrflb\'')]"}}}, + "parameters": {}, "mode": "Incremental"}}''' headers: Accept: - application/json @@ -526,81 +446,46 @@ interactions: - network lb create Connection: - keep-alive - ParameterSetName: - - --name -g --backend-pool-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205272825002823?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: + Content-Length: + - '1189' + Content-Type: - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 12:48:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network lb create - Connection: - - keep-alive ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205272825002823?api-version=2019-07-01 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"status":"Running"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/lb_deploy_XljjKPA7FhzdGp9FAvRQtz5pg5YtLj3W","name":"lb_deploy_XljjKPA7FhzdGp9FAvRQtz5pg5YtLj3W","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8157083743845406732","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-11T11:41:54.036649Z","duration":"PT1.9093488S","correlationId":"0fcee327-95ae-4144-9652-ba2a59a50607","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPvrflb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrflb"}]}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/lb_deploy_XljjKPA7FhzdGp9FAvRQtz5pg5YtLj3W/operationStatuses/08586201855733503150?api-version=2019-07-01 cache-control: - no-cache content-length: - - '20' + - '1353' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:49:20 GMT + - Tue, 11 Feb 2020 11:41:54 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -615,10 +500,10 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205272825002823?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855733503150?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -630,7 +515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:49:50 GMT + - Tue, 11 Feb 2020 11:42:25 GMT expires: - '-1' pragma: @@ -658,22 +543,22 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/lb_deploy_VhGNB3n68Rgc06UoTnrqQ1mTJ8ZYRpQV","name":"lb_deploy_VhGNB3n68Rgc06UoTnrqQ1mTJ8ZYRpQV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11421441168328816832","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-07T12:49:21.1882553Z","duration":"PT2M38.2109227S","correlationId":"a6663ce6-2b2e-4d51-8996-746f5ecd88b4","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPvrflb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrflb"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"f7b294bf-9f5d-4c09-b9bd-cd1db7fe5428","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"c95a819a-4b36-42ef-bf00-ce61fb952fc4\"","type":"Microsoft.Network/loadBalancers/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb"},"privateIPAddressVersion":"IPv4"}}],"backendAddressPools":[{"name":"mybepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool","etag":"W/\"c95a819a-4b36-42ef-bf00-ce61fb952fc4\"","properties":{"provisioningState":"Succeeded"},"type":"Microsoft.Network/loadBalancers/backendAddressPools"}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/lb_deploy_XljjKPA7FhzdGp9FAvRQtz5pg5YtLj3W","name":"lb_deploy_XljjKPA7FhzdGp9FAvRQtz5pg5YtLj3W","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8157083743845406732","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-11T11:42:14.3618402Z","duration":"PT22.23454S","correlationId":"0fcee327-95ae-4144-9652-ba2a59a50607","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPvrflb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrflb"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"fa6d808b-c139-4c82-8d84-cd73820cf120","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"181dd007-bc01-43f6-ad8e-e778ef7fefd6\"","type":"Microsoft.Network/loadBalancers/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb"},"privateIPAddressVersion":"IPv4"}}],"backendAddressPools":[{"name":"mybepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool","etag":"W/\"181dd007-bc01-43f6-ad8e-e778ef7fefd6\"","properties":{"provisioningState":"Succeeded"},"type":"Microsoft.Network/loadBalancers/backendAddressPools"}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb"}]}}' headers: cache-control: - no-cache content-length: - - '3212' + - '3207' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:49:51 GMT + - Tue, 11 Feb 2020 11:42:25 GMT expires: - '-1' pragma: @@ -701,12 +586,12 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -758,7 +643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:49:54 GMT + - Tue, 11 Feb 2020 11:42:27 GMT expires: - '-1' pragma: @@ -837,17 +722,17 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 07 Feb 2020 12:49:55 GMT + - Tue, 11 Feb 2020 11:42:29 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 07 Feb 2020 12:54:55 GMT + - Tue, 11 Feb 2020 11:47:29 GMT source-age: - - '186' + - '309' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding, Accept-Encoding + - Authorization,Accept-Encoding via: - 1.1 varnish (Varnish/6.0) - 1.1 varnish @@ -858,17 +743,17 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 821a2218482e6e5711994121588b857ce15997e1 + - 48d99aac91dfcad35f56c7b19c6bc09379b3db0d x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - 1EDC:3B8E:99D93:A61F0:5E3D4F3A + - 9858:1D24:CD69:E54C:5E41E866 x-served-by: - - cache-tyo19922-TYO + - cache-sin18037-SIN x-timer: - - S1581079795.309292,VS0,VE1 + - S1581421349.937139,VS0,VE228 x-xss-protection: - 1; mode=block status: @@ -889,7 +774,7 @@ interactions: - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -1407,7 +1292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:49:57 GMT + - Tue, 11 Feb 2020 11:42:30 GMT expires: - '-1' pragma: @@ -1436,7 +1321,7 @@ interactions: - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -1445,15 +1330,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n - \ \"etag\": \"W/\\\"15c47db7-340e-4b8d-9e78-ee739d6f9032\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"89f70f7f-f527-42ff-b20d-c493a9ca84d9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"a9dd96ad-1a53-4f82-839b-04735ba3f7d9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a34162a4-b1d2-4161-8303-c2296a729bda\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"15c47db7-340e-4b8d-9e78-ee739d6f9032\\\"\",\r\n + \ \"etag\": \"W/\\\"89f70f7f-f527-42ff-b20d-c493a9ca84d9\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1468,9 +1353,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:49:57 GMT + - Tue, 11 Feb 2020 11:42:31 GMT etag: - - W/"15c47db7-340e-4b8d-9e78-ee739d6f9032" + - W/"89f70f7f-f527-42ff-b20d-c493a9ca84d9" expires: - '-1' pragma: @@ -1487,7 +1372,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1b4f5e85-b003-4a1f-91fc-e7930ba78677 + - db7f6070-47e3-4f77-bf59-8b26384a91bb status: code: 200 message: OK @@ -1506,7 +1391,7 @@ interactions: - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -1515,20 +1400,20 @@ interactions: response: body: string: "{\r\n \"name\": \"vrflb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb\",\r\n - \ \"etag\": \"W/\\\"c95a819a-4b36-42ef-bf00-ce61fb952fc4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"181dd007-bc01-43f6-ad8e-e778ef7fefd6\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f7b294bf-9f5d-4c09-b9bd-cd1db7fe5428\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"fa6d808b-c139-4c82-8d84-cd73820cf120\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"c95a819a-4b36-42ef-bf00-ce61fb952fc4\\\"\",\r\n + \ \"etag\": \"W/\\\"181dd007-bc01-43f6-ad8e-e778ef7fefd6\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"mybepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool\",\r\n - \ \"etag\": \"W/\\\"c95a819a-4b36-42ef-bf00-ce61fb952fc4\\\"\",\r\n + \ \"etag\": \"W/\\\"181dd007-bc01-43f6-ad8e-e778ef7fefd6\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n \ },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n @@ -1542,9 +1427,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:49:59 GMT + - Tue, 11 Feb 2020 11:42:32 GMT etag: - - W/"c95a819a-4b36-42ef-bf00-ce61fb952fc4" + - W/"181dd007-bc01-43f6-ad8e-e778ef7fefd6" expires: - '-1' pragma: @@ -1561,14 +1446,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8b9a36d0-8677-403e-9f6d-f103bb84b08d + - d04a0759-c10d-4b53-861a-14bc445cfff7 status: code: 200 message: OK - request: body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "variables": {"storageAccountNames": - ["vrfvm7cb10", "vrfvm7cb11", "vrfvm7cb12", "vrfvm7cb13", "vrfvm7cb14"], "vhdContainers": + ["vrfvm031a0", "vrfvm031a1", "vrfvm031a2", "vrfvm031a3", "vrfvm031a4"], "vhdContainers": ["[concat(\''https://\'', variables(\''storageAccountNames\'')[0], \''.blob.core.windows.net/vrfcontainer\'')]", "[concat(\''https://\'', variables(\''storageAccountNames\'')[1], \''.blob.core.windows.net/vrfcontainer\'')]", "[concat(\''https://\'', variables(\''storageAccountNames\'')[2], \''.blob.core.windows.net/vrfcontainer\'')]", @@ -1584,12 +1469,12 @@ interactions: {"osDisk": {"name": "vrfosdisk", "caching": "ReadWrite", "createOption": "FromImage", "vhdContainers": "[variables(\''vhdContainers\'')]"}, "imageReference": {"publisher": "OpenLogic", "offer": "CentOS", "sku": "7.5", "version": "latest"}}, "osProfile": - {"computerNamePrefix": "vrfvm7cb1", "adminUsername": "ubuntu", "linuxConfiguration": + {"computerNamePrefix": "vrfvm031a", "adminUsername": "ubuntu", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/ubuntu/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "vrfvm7cb1Nic", "properties": {"primary": "true", "ipConfigurations": - [{"name": "vrfvm7cb1IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet"}, + [{"name": "vrfvm031aNic", "properties": {"primary": "true", "ipConfigurations": + [{"name": "vrfvm031aIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool"}]}}]}}]}}, "singlePlacementGroup": null}}], "outputs": {"VMSS": {"type": "object", "value": "[reference(resourceId(\''Microsoft.Compute/virtualMachineScaleSets\'', \''vrfvmss\''),providers(\''Microsoft.Compute\'', @@ -1612,7 +1497,7 @@ interactions: - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -1620,18 +1505,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/vmss_deploy_5Z67eWny0xpUomnjdJEUNw36Jgd9Zm6A","name":"vmss_deploy_5Z67eWny0xpUomnjdJEUNw36Jgd9Zm6A","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10450280924391989458","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-07T12:50:06.82088Z","duration":"PT2.7771277S","correlationId":"3d4c8911-11c1-418e-9af6-7e4e42204b74","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb10","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm7cb10"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb11","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm7cb11"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb12","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm7cb12"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb13","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm7cb13"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb14","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm7cb14"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vrfvmss"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/vmss_deploy_6gVLKrkvbS5IYnoAi4K5dXakWu5ugcPs","name":"vmss_deploy_6gVLKrkvbS5IYnoAi4K5dXakWu5ugcPs","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5191301628394991146","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-11T11:42:38.2424983Z","duration":"PT2.9606959S","correlationId":"fd0e8bc7-f225-49f9-add7-19fbfa905537","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a0","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm031a0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a1","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm031a1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm031a2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm031a3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a4","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm031a4"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vrfvmss"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/vmss_deploy_5Z67eWny0xpUomnjdJEUNw36Jgd9Zm6A/operationStatuses/08586205270814338743?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/vmss_deploy_6gVLKrkvbS5IYnoAi4K5dXakWu5ugcPs/operationStatuses/08586201855301958249?api-version=2019-07-01 cache-control: - no-cache content-length: - - '2575' + - '2576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:50:08 GMT + - Tue, 11 Feb 2020 11:42:40 GMT expires: - '-1' pragma: @@ -1641,7 +1526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -1660,10 +1545,142 @@ interactions: - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855301958249?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:43:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name + -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855301958249?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:43:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name + -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855301958249?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:44:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name + -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205270814338743?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855301958249?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1675,7 +1692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:50:40 GMT + - Tue, 11 Feb 2020 11:44:43 GMT expires: - '-1' pragma: @@ -1704,10 +1721,10 @@ interactions: - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205270814338743?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855301958249?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1719,7 +1736,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:51:10 GMT + - Tue, 11 Feb 2020 11:45:14 GMT expires: - '-1' pragma: @@ -1748,10 +1765,10 @@ interactions: - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205270814338743?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855301958249?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1763,7 +1780,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:51:41 GMT + - Tue, 11 Feb 2020 11:45:45 GMT expires: - '-1' pragma: @@ -1792,10 +1809,10 @@ interactions: - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205270814338743?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855301958249?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1807,7 +1824,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:52:12 GMT + - Tue, 11 Feb 2020 11:46:16 GMT expires: - '-1' pragma: @@ -1836,10 +1853,10 @@ interactions: - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205270814338743?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855301958249?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1851,7 +1868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:52:42 GMT + - Tue, 11 Feb 2020 11:46:46 GMT expires: - '-1' pragma: @@ -1880,10 +1897,10 @@ interactions: - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205270814338743?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855301958249?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1895,7 +1912,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:53:13 GMT + - Tue, 11 Feb 2020 11:47:17 GMT expires: - '-1' pragma: @@ -1924,10 +1941,10 @@ interactions: - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205270814338743?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855301958249?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1939,7 +1956,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:53:43 GMT + - Tue, 11 Feb 2020 11:47:47 GMT expires: - '-1' pragma: @@ -1968,10 +1985,10 @@ interactions: - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205270814338743?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855301958249?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -1983,7 +2000,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:54:14 GMT + - Tue, 11 Feb 2020 11:48:17 GMT expires: - '-1' pragma: @@ -2012,24 +2029,24 @@ interactions: - --image --os-disk-name --admin-username --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/vmss_deploy_5Z67eWny0xpUomnjdJEUNw36Jgd9Zm6A","name":"vmss_deploy_5Z67eWny0xpUomnjdJEUNw36Jgd9Zm6A","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10450280924391989458","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-07T12:53:50.1706038Z","duration":"PT3M46.1268515S","correlationId":"3d4c8911-11c1-418e-9af6-7e4e42204b74","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb10","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm7cb10"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb11","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm7cb11"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb12","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm7cb12"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb13","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm7cb13"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb14","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm7cb14"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vrfvmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vrfvm7cb1","adminUsername":"ubuntu","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/ubuntu/.ssh/authorized_keys","keyData":"ssh-rsa + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Resources/deployments/vmss_deploy_6gVLKrkvbS5IYnoAi4K5dXakWu5ugcPs","name":"vmss_deploy_6gVLKrkvbS5IYnoAi4K5dXakWu5ugcPs","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5191301628394991146","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-11T11:48:05.6510785Z","duration":"PT5M30.3692761S","correlationId":"fd0e8bc7-f225-49f9-add7-19fbfa905537","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a0","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm031a0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a1","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm031a1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm031a2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm031a3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a4","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm031a4"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vrfvmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vrfvm031a","adminUsername":"ubuntu","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/ubuntu/.ssh/authorized_keys","keyData":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"vhdContainers":["https://vrfvm7cb10.blob.core.windows.net/vrfcontainer","https://vrfvm7cb11.blob.core.windows.net/vrfcontainer","https://vrfvm7cb12.blob.core.windows.net/vrfcontainer","https://vrfvm7cb13.blob.core.windows.net/vrfcontainer","https://vrfvm7cb14.blob.core.windows.net/vrfcontainer"],"name":"vrfosdisk","createOption":"FromImage","caching":"ReadWrite"},"imageReference":{"publisher":"OpenLogic","offer":"CentOS","sku":"7.5","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vrfvm7cb1Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vrfvm7cb1IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"9b776ced-9ac7-4521-a4f6-17da692e5894"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb10"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb11"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb12"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb13"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm7cb14"}]}}' + test@example.com\n"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"vhdContainers":["https://vrfvm031a0.blob.core.windows.net/vrfcontainer","https://vrfvm031a1.blob.core.windows.net/vrfcontainer","https://vrfvm031a2.blob.core.windows.net/vrfcontainer","https://vrfvm031a3.blob.core.windows.net/vrfcontainer","https://vrfvm031a4.blob.core.windows.net/vrfcontainer"],"name":"vrfosdisk","createOption":"FromImage","caching":"ReadWrite"},"imageReference":{"publisher":"OpenLogic","offer":"CentOS","sku":"7.5","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vrfvm031aNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vrfvm031aIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"681e50d5-e160-4c46-a9fc-2b5eaecc5b56"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Storage/storageAccounts/vrfvm031a4"}]}}' headers: cache-control: - no-cache content-length: - - '6477' + - '6476' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:54:14 GMT + - Tue, 11 Feb 2020 11:48:18 GMT expires: - '-1' pragma: @@ -2057,7 +2074,7 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -2071,7 +2088,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"vrfvm7cb1\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"vrfvm031a\",\r\n \"adminUsername\": \"ubuntu\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/ubuntu/.ssh/authorized_keys\",\r\n \"keyData\": @@ -2080,19 +2097,19 @@ interactions: \ \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n - \ \"vhdContainers\": [\r\n \"https://vrfvm7cb10.blob.core.windows.net/vrfcontainer\",\r\n - \ \"https://vrfvm7cb11.blob.core.windows.net/vrfcontainer\",\r\n - \ \"https://vrfvm7cb12.blob.core.windows.net/vrfcontainer\",\r\n - \ \"https://vrfvm7cb13.blob.core.windows.net/vrfcontainer\",\r\n - \ \"https://vrfvm7cb14.blob.core.windows.net/vrfcontainer\"\r\n + \ \"vhdContainers\": [\r\n \"https://vrfvm031a0.blob.core.windows.net/vrfcontainer\",\r\n + \ \"https://vrfvm031a1.blob.core.windows.net/vrfcontainer\",\r\n + \ \"https://vrfvm031a2.blob.core.windows.net/vrfcontainer\",\r\n + \ \"https://vrfvm031a3.blob.core.windows.net/vrfcontainer\",\r\n + \ \"https://vrfvm031a4.blob.core.windows.net/vrfcontainer\"\r\n \ ],\r\n \"name\": \"vrfosdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \ \"sku\": \"7.5\",\r\n \"version\": \"latest\"\r\n }\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vrfvm7cb1Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vrfvm7cb1IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool\"}]}}]}}]}\r\n + \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vrfvm031aNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vrfvm031aIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"9b776ced-9ac7-4521-a4f6-17da692e5894\"\r\n }\r\n}" + \"681e50d5-e160-4c46-a9fc-2b5eaecc5b56\"\r\n }\r\n}" headers: cache-control: - no-cache @@ -2101,7 +2118,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:54:16 GMT + - Tue, 11 Feb 2020 11:48:20 GMT expires: - '-1' pragma: @@ -2118,7 +2135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;392,Microsoft.Compute/GetVMScaleSet30Min;2557 + - Microsoft.Compute/GetVMScaleSet3Min;395,Microsoft.Compute/GetVMScaleSet30Min;2580 status: code: 200 message: OK @@ -2136,7 +2153,7 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -2145,13 +2162,13 @@ interactions: response: body: string: "{\r\n \"name\": \"vrflb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb\",\r\n - \ \"etag\": \"W/\\\"2db8d093-1bbb-42dc-8fd8-f8ffaee64d15\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c1eb557e-b07d-4007-a92c-cc97e7817a34\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f7b294bf-9f5d-4c09-b9bd-cd1db7fe5428\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"fa6d808b-c139-4c82-8d84-cd73820cf120\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"2db8d093-1bbb-42dc-8fd8-f8ffaee64d15\\\"\",\r\n + \ \"etag\": \"W/\\\"c1eb557e-b07d-4007-a92c-cc97e7817a34\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -2159,13 +2176,13 @@ interactions: \ },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n \ }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"mybepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool\",\r\n - \ \"etag\": \"W/\\\"2db8d093-1bbb-42dc-8fd8-f8ffaee64d15\\\"\",\r\n + \ \"etag\": \"W/\\\"c1eb557e-b07d-4007-a92c-cc97e7817a34\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"backendIPConfigurations\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvm7cb1Nic/ipConfigurations/vrfvm7cb1IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1/networkInterfaces/vrfvm7cb1Nic/ipConfigurations/vrfvm7cb1IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/2/networkInterfaces/vrfvm7cb1Nic/ipConfigurations/vrfvm7cb1IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/3/networkInterfaces/vrfvm7cb1Nic/ipConfigurations/vrfvm7cb1IPConfig\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvm031aNic/ipConfigurations/vrfvm031aIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1/networkInterfaces/vrfvm031aNic/ipConfigurations/vrfvm031aIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/2/networkInterfaces/vrfvm031aNic/ipConfigurations/vrfvm031aIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/3/networkInterfaces/vrfvm031aNic/ipConfigurations/vrfvm031aIPConfig\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n \ \"inboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n \"sku\": @@ -2178,9 +2195,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:54:17 GMT + - Tue, 11 Feb 2020 11:48:22 GMT etag: - - W/"2db8d093-1bbb-42dc-8fd8-f8ffaee64d15" + - W/"c1eb557e-b07d-4007-a92c-cc97e7817a34" expires: - '-1' pragma: @@ -2197,7 +2214,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0c4abd52-42c9-40c8-b111-5a82fec019c1 + - 0667f56e-a386-416a-b302-3810b400427f status: code: 200 message: OK @@ -2215,7 +2232,7 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -2224,21 +2241,21 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n - \ \"etag\": \"W/\\\"1312c260-879a-416b-9184-af8f783a313d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c92a6ba4-bda4-4ddc-be6c-8f5119f61124\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"a9dd96ad-1a53-4f82-839b-04735ba3f7d9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a34162a4-b1d2-4161-8303-c2296a729bda\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"1312c260-879a-416b-9184-af8f783a313d\\\"\",\r\n + \ \"etag\": \"W/\\\"c92a6ba4-bda4-4ddc-be6c-8f5119f61124\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvm7cb1Nic/ipConfigurations/vrfvm7cb1IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1/networkInterfaces/vrfvm7cb1Nic/ipConfigurations/vrfvm7cb1IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/2/networkInterfaces/vrfvm7cb1Nic/ipConfigurations/vrfvm7cb1IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/3/networkInterfaces/vrfvm7cb1Nic/ipConfigurations/vrfvm7cb1IPConfig\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvm031aNic/ipConfigurations/vrfvm031aIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1/networkInterfaces/vrfvm031aNic/ipConfigurations/vrfvm031aIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/2/networkInterfaces/vrfvm031aNic/ipConfigurations/vrfvm031aIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_ids000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/3/networkInterfaces/vrfvm031aNic/ipConfigurations/vrfvm031aIPConfig\"\r\n \ }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n @@ -2252,9 +2269,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:54:19 GMT + - Tue, 11 Feb 2020 11:48:22 GMT etag: - - W/"1312c260-879a-416b-9184-af8f783a313d" + - W/"c92a6ba4-bda4-4ddc-be6c-8f5119f61124" expires: - '-1' pragma: @@ -2271,7 +2288,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 54af695f-ac1e-4a4f-a918-19112c2c81ec + - fdebbc69-c269-4793-a0f6-c8e4134d85c3 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_existing_options.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_existing_options.yaml index b174b2342ed..0d43c82c7d8 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_existing_options.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_existing_options.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -n -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001","name":"cli_test_vmss_create_existing_options000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-07T12:43:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001","name":"cli_test_vmss_create_existing_options000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-11T11:41:13Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:22 GMT + - Tue, 11 Feb 2020 11:41:18 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: ParameterSetName: - -n -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -73,15 +73,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n - \ \"etag\": \"W/\\\"75e49bd6-178f-4620-b06f-c4b629f67c31\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"464c0807-a922-4b03-8986-89388c4b9cdb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"1c98baa6-b9eb-4a0f-a195-3ec807d01d7d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"409e8a81-dd7b-471b-a7b0-f94b70dad6af\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"75e49bd6-178f-4620-b06f-c4b629f67c31\\\"\",\r\n + \ \"etag\": \"W/\\\"464c0807-a922-4b03-8986-89388c4b9cdb\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -90,7 +90,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f5da00f5-c83c-4c4e-b895-5a2a369b4de0?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/70119c22-17aa-4d7c-90ce-01a1dfa1a493?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:30 GMT + - Tue, 11 Feb 2020 11:41:24 GMT expires: - '-1' pragma: @@ -111,9 +111,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b7b0bef3-6419-4962-9aa9-3c5f46ad3b7d + - dbc08e64-5fbd-4a4e-8732-6d2080872a68 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -131,10 +131,110 @@ interactions: ParameterSetName: - -n -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f5da00f5-c83c-4c4e-b895-5a2a369b4de0?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/70119c22-17aa-4d7c-90ce-01a1dfa1a493?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:41:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1be56303-1850-42a2-91b8-fc1f32db69e9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet-name + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/70119c22-17aa-4d7c-90ce-01a1dfa1a493?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:41:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 74a5562c-75f6-4d99-a877-847ca66a806a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet-name + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/70119c22-17aa-4d7c-90ce-01a1dfa1a493?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -146,7 +246,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:34 GMT + - Tue, 11 Feb 2020 11:41:48 GMT expires: - '-1' pragma: @@ -163,7 +263,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f9291596-4990-45ca-a4d5-90bedcdc4bbd + - 1d98b004-47b2-46f2-a5e7-b39870ec72c1 status: code: 200 message: OK @@ -181,22 +281,22 @@ interactions: ParameterSetName: - -n -g --subnet-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n - \ \"etag\": \"W/\\\"91ada5e8-16be-4389-ad90-1f28aa075e75\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"255cc3fe-ec4c-415c-aa7c-d1b0d741db49\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"1c98baa6-b9eb-4a0f-a195-3ec807d01d7d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"409e8a81-dd7b-471b-a7b0-f94b70dad6af\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"91ada5e8-16be-4389-ad90-1f28aa075e75\\\"\",\r\n + \ \"etag\": \"W/\\\"255cc3fe-ec4c-415c-aa7c-d1b0d741db49\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -211,9 +311,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:34 GMT + - Tue, 11 Feb 2020 11:41:49 GMT etag: - - W/"91ada5e8-16be-4389-ad90-1f28aa075e75" + - W/"255cc3fe-ec4c-415c-aa7c-d1b0d741db49" expires: - '-1' pragma: @@ -230,7 +330,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fdffd12e-b3b2-430a-ba81-8012544f1aaa + - be098e45-8c53-4246-bb16-85fbff01f199 status: code: 200 message: OK @@ -248,7 +348,7 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -256,7 +356,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001","name":"cli_test_vmss_create_existing_options000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-07T12:43:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001","name":"cli_test_vmss_create_existing_options000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-02-11T11:41:13Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -265,7 +365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:35 GMT + - Tue, 11 Feb 2020 11:41:49 GMT expires: - '-1' pragma: @@ -293,7 +393,7 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -310,7 +410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:36 GMT + - Tue, 11 Feb 2020 11:41:50 GMT expires: - '-1' pragma: @@ -353,7 +453,7 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -361,18 +461,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/lb_deploy_xpv98NU2Rdx5PRdWR1JwIXyNgLlnwMZq","name":"lb_deploy_xpv98NU2Rdx5PRdWR1JwIXyNgLlnwMZq","type":"Microsoft.Resources/deployments","properties":{"templateHash":"331148395508355788","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-07T12:43:40.5633735Z","duration":"PT1.5165542S","correlationId":"3ca39b53-ccf9-43f3-b658-373402b70183","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPvrflb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrflb"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/lb_deploy_yree7jX4EdJMp0Ecpl7Zx8ZLCIwFymkq","name":"lb_deploy_yree7jX4EdJMp0Ecpl7Zx8ZLCIwFymkq","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5019687561436705369","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-11T11:41:54.2598197Z","duration":"PT1.5321493S","correlationId":"3fff324b-52c2-4ad5-aea6-ff320c7969fd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPvrflb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrflb"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/lb_deploy_xpv98NU2Rdx5PRdWR1JwIXyNgLlnwMZq/operationStatuses/08586205274664307927?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/lb_deploy_yree7jX4EdJMp0Ecpl7Zx8ZLCIwFymkq/operationStatuses/08586201855727499434?api-version=2019-07-01 cache-control: - no-cache content-length: - - '1353' + - '1354' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:43:40 GMT + - Tue, 11 Feb 2020 11:41:54 GMT expires: - '-1' pragma: @@ -382,7 +482,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 201 message: Created @@ -400,10 +500,53 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855727499434?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:42:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network lb create + Connection: + - keep-alive + ParameterSetName: + - --name -g --backend-pool-name + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205274664307927?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855727499434?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -415,7 +558,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:44:12 GMT + - Tue, 11 Feb 2020 11:42:55 GMT expires: - '-1' pragma: @@ -443,10 +586,10 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205274664307927?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855727499434?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -458,7 +601,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:44:43 GMT + - Tue, 11 Feb 2020 11:43:27 GMT expires: - '-1' pragma: @@ -486,10 +629,10 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205274664307927?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855727499434?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -501,7 +644,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:45:14 GMT + - Tue, 11 Feb 2020 11:43:57 GMT expires: - '-1' pragma: @@ -529,10 +672,10 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205274664307927?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855727499434?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -544,7 +687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:45:44 GMT + - Tue, 11 Feb 2020 11:44:27 GMT expires: - '-1' pragma: @@ -572,10 +715,10 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205274664307927?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855727499434?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -587,7 +730,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:14 GMT + - Tue, 11 Feb 2020 11:44:59 GMT expires: - '-1' pragma: @@ -615,10 +758,53 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205274664307927?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855727499434?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:45:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network lb create + Connection: + - keep-alive + ParameterSetName: + - --name -g --backend-pool-name + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201855727499434?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -630,7 +816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:45 GMT + - Tue, 11 Feb 2020 11:45:59 GMT expires: - '-1' pragma: @@ -658,22 +844,22 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/lb_deploy_xpv98NU2Rdx5PRdWR1JwIXyNgLlnwMZq","name":"lb_deploy_xpv98NU2Rdx5PRdWR1JwIXyNgLlnwMZq","type":"Microsoft.Resources/deployments","properties":{"templateHash":"331148395508355788","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-07T12:46:39.4553122Z","duration":"PT3M0.4084929S","correlationId":"3ca39b53-ccf9-43f3-b658-373402b70183","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPvrflb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrflb"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"9b407e0a-82ec-4cfe-9f2b-3db76fca4118","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"0ac1ef30-da79-4383-9b74-8143a64a2689\"","type":"Microsoft.Network/loadBalancers/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb"},"privateIPAddressVersion":"IPv4"}}],"backendAddressPools":[{"name":"mybepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool","etag":"W/\"0ac1ef30-da79-4383-9b74-8143a64a2689\"","properties":{"provisioningState":"Succeeded"},"type":"Microsoft.Network/loadBalancers/backendAddressPools"}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/lb_deploy_yree7jX4EdJMp0Ecpl7Zx8ZLCIwFymkq","name":"lb_deploy_yree7jX4EdJMp0Ecpl7Zx8ZLCIwFymkq","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5019687561436705369","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-11T11:45:35.0028341Z","duration":"PT3M42.2751637S","correlationId":"3fff324b-52c2-4ad5-aea6-ff320c7969fd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPvrflb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrflb"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"c7c3f4ea-f97a-4c1d-af1b-702c221cd452","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"4b6e7c28-4c65-4ea3-8b42-c9275e2e9ce9\"","type":"Microsoft.Network/loadBalancers/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb"},"privateIPAddressVersion":"IPv4"}}],"backendAddressPools":[{"name":"mybepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool","etag":"W/\"4b6e7c28-4c65-4ea3-8b42-c9275e2e9ce9\"","properties":{"provisioningState":"Succeeded"},"type":"Microsoft.Network/loadBalancers/backendAddressPools"}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb"}]}}' headers: cache-control: - no-cache content-length: - - '3209' + - '3211' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:45 GMT + - Tue, 11 Feb 2020 11:46:00 GMT expires: - '-1' pragma: @@ -701,12 +887,12 @@ interactions: ParameterSetName: - --name -g --backend-pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East @@ -758,7 +944,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:47 GMT + - Tue, 11 Feb 2020 11:46:03 GMT expires: - '-1' pragma: @@ -837,17 +1023,17 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:49 GMT + - Tue, 11 Feb 2020 11:46:04 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 07 Feb 2020 12:51:49 GMT + - Tue, 11 Feb 2020 11:51:04 GMT source-age: - - '0' + - '206' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding, Accept-Encoding + - Authorization,Accept-Encoding via: - 1.1 varnish (Varnish/6.0) - 1.1 varnish @@ -858,17 +1044,17 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 989def94d9ecb9055c075b57b9e02f4ad7c71cbc + - 9de632a8cf28407be30d8d15d9c3f399ef830c54 x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - 1EDC:3B8E:99D93:A61F0:5E3D4F3A + - D034:576D:935D9:9D222:5E42932D x-served-by: - - cache-tyo19946-TYO + - cache-sin18042-SIN x-timer: - - S1581079609.811904,VS0,VE256 + - S1581421564.068108,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -889,7 +1075,7 @@ interactions: - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -1407,7 +1593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:49 GMT + - Tue, 11 Feb 2020 11:46:04 GMT expires: - '-1' pragma: @@ -1436,7 +1622,7 @@ interactions: - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -1445,7 +1631,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfsubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"91ada5e8-16be-4389-ad90-1f28aa075e75\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"255cc3fe-ec4c-415c-aa7c-d1b0d741db49\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -1458,9 +1644,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:50 GMT + - Tue, 11 Feb 2020 11:46:05 GMT etag: - - W/"91ada5e8-16be-4389-ad90-1f28aa075e75" + - W/"255cc3fe-ec4c-415c-aa7c-d1b0d741db49" expires: - '-1' pragma: @@ -1477,7 +1663,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 830048fd-ba50-48d2-99ac-bf26f9bca5df + - 30bf3b7f-6d35-4d34-9179-ae8615ad1a39 status: code: 200 message: OK @@ -1496,7 +1682,7 @@ interactions: - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -1505,20 +1691,20 @@ interactions: response: body: string: "{\r\n \"name\": \"vrflb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb\",\r\n - \ \"etag\": \"W/\\\"0ac1ef30-da79-4383-9b74-8143a64a2689\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4b6e7c28-4c65-4ea3-8b42-c9275e2e9ce9\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9b407e0a-82ec-4cfe-9f2b-3db76fca4118\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"c7c3f4ea-f97a-4c1d-af1b-702c221cd452\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"0ac1ef30-da79-4383-9b74-8143a64a2689\\\"\",\r\n + \ \"etag\": \"W/\\\"4b6e7c28-4c65-4ea3-8b42-c9275e2e9ce9\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/publicIPAddresses/PublicIPvrflb\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"mybepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool\",\r\n - \ \"etag\": \"W/\\\"0ac1ef30-da79-4383-9b74-8143a64a2689\\\"\",\r\n + \ \"etag\": \"W/\\\"4b6e7c28-4c65-4ea3-8b42-c9275e2e9ce9\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n \ },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n @@ -1532,9 +1718,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:51 GMT + - Tue, 11 Feb 2020 11:46:06 GMT etag: - - W/"0ac1ef30-da79-4383-9b74-8143a64a2689" + - W/"4b6e7c28-4c65-4ea3-8b42-c9275e2e9ce9" expires: - '-1' pragma: @@ -1551,14 +1737,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2908ed2b-52ee-48b5-9e8c-529d2fbddf46 + - 0d8bc888-7a62-4eb0-bf1c-52ff5b94ec5d status: code: 200 message: OK - request: body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "variables": {"storageAccountNames": - ["vrfvm84170", "vrfvm84171", "vrfvm84172", "vrfvm84173", "vrfvm84174"], "vhdContainers": + ["vrfvme8560", "vrfvme8561", "vrfvme8562", "vrfvme8563", "vrfvme8564"], "vhdContainers": ["[concat(\''https://\'', variables(\''storageAccountNames\'')[0], \''.blob.core.windows.net/vrfcontainer\'')]", "[concat(\''https://\'', variables(\''storageAccountNames\'')[1], \''.blob.core.windows.net/vrfcontainer\'')]", "[concat(\''https://\'', variables(\''storageAccountNames\'')[2], \''.blob.core.windows.net/vrfcontainer\'')]", @@ -1574,12 +1760,12 @@ interactions: {"osDisk": {"name": "vrfosdisk", "caching": "ReadWrite", "createOption": "FromImage", "vhdContainers": "[variables(\''vhdContainers\'')]"}, "imageReference": {"publisher": "OpenLogic", "offer": "CentOS", "sku": "7.5", "version": "latest"}}, "osProfile": - {"computerNamePrefix": "vrfvm8417", "adminUsername": "ubuntu", "linuxConfiguration": + {"computerNamePrefix": "vrfvme856", "adminUsername": "ubuntu", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/ubuntu/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "vrfvm8417Nic", "properties": {"primary": "true", "ipConfigurations": - [{"name": "vrfvm8417IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet"}, + [{"name": "vrfvme856Nic", "properties": {"primary": "true", "ipConfigurations": + [{"name": "vrfvme856IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool"}]}}]}}]}}, "singlePlacementGroup": null}}], "outputs": {"VMSS": {"type": "object", "value": "[reference(resourceId(\''Microsoft.Compute/virtualMachineScaleSets\'', \''vrfvmss\''),providers(\''Microsoft.Compute\'', @@ -1602,7 +1788,7 @@ interactions: - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -1610,18 +1796,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_LVHxOIKLaz2EoQc9UejpPhtJ9pxZ23I9","name":"vmss_deploy_LVHxOIKLaz2EoQc9UejpPhtJ9pxZ23I9","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3728170114391946043","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-07T12:46:56.631896Z","duration":"PT2.0837156S","correlationId":"d0f8b4d3-ff85-4b1a-a358-52f77839185c","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84170","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm84170"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84171","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm84171"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84172","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm84172"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84173","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm84173"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84174","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm84174"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vrfvmss"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_hvP5xaf7WiMujm8AaZuRtsEXLRDDH943","name":"vmss_deploy_hvP5xaf7WiMujm8AaZuRtsEXLRDDH943","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16525725166673608574","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-02-11T11:46:11.4642661Z","duration":"PT2.5301224S","correlationId":"0384f89b-23d2-475a-a46c-b5855974c88b","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8560","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvme8560"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8561","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvme8561"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8562","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvme8562"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8563","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvme8563"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8564","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvme8564"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vrfvmss"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_LVHxOIKLaz2EoQc9UejpPhtJ9pxZ23I9/operationStatuses/08586205272709294545?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_hvP5xaf7WiMujm8AaZuRtsEXLRDDH943/operationStatuses/08586201853165434944?api-version=2019-07-01 cache-control: - no-cache content-length: - - '2575' + - '2577' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:46:57 GMT + - Tue, 11 Feb 2020 11:46:12 GMT expires: - '-1' pragma: @@ -1631,7 +1817,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -1650,10 +1836,98 @@ interactions: - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853165434944?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:46:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name + -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853165434944?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 11 Feb 2020 11:47:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name + -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205272709294545?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853165434944?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1665,7 +1939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:47:28 GMT + - Tue, 11 Feb 2020 11:47:45 GMT expires: - '-1' pragma: @@ -1694,10 +1968,10 @@ interactions: - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205272709294545?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853165434944?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1709,7 +1983,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:47:59 GMT + - Tue, 11 Feb 2020 11:48:15 GMT expires: - '-1' pragma: @@ -1738,10 +2012,10 @@ interactions: - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205272709294545?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853165434944?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1753,7 +2027,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:48:30 GMT + - Tue, 11 Feb 2020 11:48:47 GMT expires: - '-1' pragma: @@ -1782,10 +2056,10 @@ interactions: - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205272709294545?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853165434944?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1797,7 +2071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:49:00 GMT + - Tue, 11 Feb 2020 11:49:18 GMT expires: - '-1' pragma: @@ -1826,10 +2100,10 @@ interactions: - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205272709294545?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853165434944?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1841,7 +2115,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:49:30 GMT + - Tue, 11 Feb 2020 11:49:51 GMT expires: - '-1' pragma: @@ -1870,10 +2144,10 @@ interactions: - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205272709294545?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853165434944?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1885,7 +2159,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:50:01 GMT + - Tue, 11 Feb 2020 11:50:23 GMT expires: - '-1' pragma: @@ -1914,10 +2188,10 @@ interactions: - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586205272709294545?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586201853165434944?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -1929,7 +2203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:50:31 GMT + - Tue, 11 Feb 2020 11:50:54 GMT expires: - '-1' pragma: @@ -1958,24 +2232,24 @@ interactions: - --image --os-disk-name --admin-username --vnet-name --subnet -l --vm-sku --storage-container-name -g --name --load-balancer --ssh-key-value --backend-pool-name --use-unmanaged-disk User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_LVHxOIKLaz2EoQc9UejpPhtJ9pxZ23I9","name":"vmss_deploy_LVHxOIKLaz2EoQc9UejpPhtJ9pxZ23I9","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3728170114391946043","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-07T12:50:21.3949384Z","duration":"PT3M26.846758S","correlationId":"d0f8b4d3-ff85-4b1a-a358-52f77839185c","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84170","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm84170"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84171","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm84171"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84172","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm84172"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84173","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm84173"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84174","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvm84174"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vrfvmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vrfvm8417","adminUsername":"ubuntu","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/ubuntu/.ssh/authorized_keys","keyData":"ssh-rsa + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_hvP5xaf7WiMujm8AaZuRtsEXLRDDH943","name":"vmss_deploy_hvP5xaf7WiMujm8AaZuRtsEXLRDDH943","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16525725166673608574","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-02-11T11:50:51.2924181Z","duration":"PT4M42.3582744S","correlationId":"0384f89b-23d2-475a-a46c-b5855974c88b","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8560","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvme8560"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8561","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvme8561"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8562","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvme8562"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8563","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvme8563"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8564","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vrfvme8564"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vrfvmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vrfvme856","adminUsername":"ubuntu","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/ubuntu/.ssh/authorized_keys","keyData":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"vhdContainers":["https://vrfvm84170.blob.core.windows.net/vrfcontainer","https://vrfvm84171.blob.core.windows.net/vrfcontainer","https://vrfvm84172.blob.core.windows.net/vrfcontainer","https://vrfvm84173.blob.core.windows.net/vrfcontainer","https://vrfvm84174.blob.core.windows.net/vrfcontainer"],"name":"vrfosdisk","createOption":"FromImage","caching":"ReadWrite"},"imageReference":{"publisher":"OpenLogic","offer":"CentOS","sku":"7.5","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vrfvm8417Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vrfvm8417IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"ff751566-48f9-49ce-8dc1-e097794f3063"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84170"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84171"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84172"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84173"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvm84174"}]}}' + test@example.com\n"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"vhdContainers":["https://vrfvme8560.blob.core.windows.net/vrfcontainer","https://vrfvme8561.blob.core.windows.net/vrfcontainer","https://vrfvme8562.blob.core.windows.net/vrfcontainer","https://vrfvme8563.blob.core.windows.net/vrfcontainer","https://vrfvme8564.blob.core.windows.net/vrfcontainer"],"name":"vrfosdisk","createOption":"FromImage","caching":"ReadWrite"},"imageReference":{"publisher":"OpenLogic","offer":"CentOS","sku":"7.5","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vrfvme856Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vrfvme856IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"153fcc99-8ed0-40c4-b12b-5ac5d5759b31"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8560"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8561"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8562"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8563"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Storage/storageAccounts/vrfvme8564"}]}}' headers: cache-control: - no-cache content-length: - - '6475' + - '6477' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:50:32 GMT + - Tue, 11 Feb 2020 11:50:55 GMT expires: - '-1' pragma: @@ -2003,7 +2277,7 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -2017,7 +2291,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"vrfvm8417\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"vrfvme856\",\r\n \"adminUsername\": \"ubuntu\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/ubuntu/.ssh/authorized_keys\",\r\n \"keyData\": @@ -2026,19 +2300,19 @@ interactions: \ \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n - \ \"vhdContainers\": [\r\n \"https://vrfvm84170.blob.core.windows.net/vrfcontainer\",\r\n - \ \"https://vrfvm84171.blob.core.windows.net/vrfcontainer\",\r\n - \ \"https://vrfvm84172.blob.core.windows.net/vrfcontainer\",\r\n - \ \"https://vrfvm84173.blob.core.windows.net/vrfcontainer\",\r\n - \ \"https://vrfvm84174.blob.core.windows.net/vrfcontainer\"\r\n + \ \"vhdContainers\": [\r\n \"https://vrfvme8560.blob.core.windows.net/vrfcontainer\",\r\n + \ \"https://vrfvme8561.blob.core.windows.net/vrfcontainer\",\r\n + \ \"https://vrfvme8562.blob.core.windows.net/vrfcontainer\",\r\n + \ \"https://vrfvme8563.blob.core.windows.net/vrfcontainer\",\r\n + \ \"https://vrfvme8564.blob.core.windows.net/vrfcontainer\"\r\n \ ],\r\n \"name\": \"vrfosdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \ \"sku\": \"7.5\",\r\n \"version\": \"latest\"\r\n }\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vrfvm8417Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vrfvm8417IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool\"}]}}]}}]}\r\n + \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vrfvme856Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vrfvme856IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"ff751566-48f9-49ce-8dc1-e097794f3063\"\r\n }\r\n}" + \"153fcc99-8ed0-40c4-b12b-5ac5d5759b31\"\r\n }\r\n}" headers: cache-control: - no-cache @@ -2047,7 +2321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:50:34 GMT + - Tue, 11 Feb 2020 11:50:57 GMT expires: - '-1' pragma: @@ -2064,7 +2338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;383,Microsoft.Compute/GetVMScaleSet30Min;2570 + - Microsoft.Compute/GetVMScaleSet3Min;391,Microsoft.Compute/GetVMScaleSet30Min;2575 status: code: 200 message: OK @@ -2082,7 +2356,7 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -2091,13 +2365,13 @@ interactions: response: body: string: "{\r\n \"name\": \"vrflb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb\",\r\n - \ \"etag\": \"W/\\\"50a9e608-d596-4e6f-b8c8-09ee242f2b8f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e41e7025-6558-423a-bbc4-a2c3b32ebbf2\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9b407e0a-82ec-4cfe-9f2b-3db76fca4118\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"c7c3f4ea-f97a-4c1d-af1b-702c221cd452\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"50a9e608-d596-4e6f-b8c8-09ee242f2b8f\\\"\",\r\n + \ \"etag\": \"W/\\\"e41e7025-6558-423a-bbc4-a2c3b32ebbf2\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -2105,13 +2379,11 @@ interactions: \ },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n \ }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"mybepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/loadBalancers/vrflb/backendAddressPools/mybepool\",\r\n - \ \"etag\": \"W/\\\"50a9e608-d596-4e6f-b8c8-09ee242f2b8f\\\"\",\r\n + \ \"etag\": \"W/\\\"e41e7025-6558-423a-bbc4-a2c3b32ebbf2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"backendIPConfigurations\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvm8417Nic/ipConfigurations/vrfvm8417IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1/networkInterfaces/vrfvm8417Nic/ipConfigurations/vrfvm8417IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/2/networkInterfaces/vrfvm8417Nic/ipConfigurations/vrfvm8417IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/3/networkInterfaces/vrfvm8417Nic/ipConfigurations/vrfvm8417IPConfig\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/2/networkInterfaces/vrfvme856Nic/ipConfigurations/vrfvme856IPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/3/networkInterfaces/vrfvme856Nic/ipConfigurations/vrfvme856IPConfig\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n \ \"inboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n \"sku\": @@ -2120,13 +2392,13 @@ interactions: cache-control: - no-cache content-length: - - '3537' + - '2855' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:50:34 GMT + - Tue, 11 Feb 2020 11:50:58 GMT etag: - - W/"50a9e608-d596-4e6f-b8c8-09ee242f2b8f" + - W/"e41e7025-6558-423a-bbc4-a2c3b32ebbf2" expires: - '-1' pragma: @@ -2143,7 +2415,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e4e82493-11a6-4579-ac6e-6270c7178d0c + - f69e34a2-b38b-43cc-b46e-491b1254e611 status: code: 200 message: OK @@ -2161,7 +2433,7 @@ interactions: ParameterSetName: - --name -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -2170,21 +2442,19 @@ interactions: response: body: string: "{\r\n \"name\": \"vrfvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet\",\r\n - \ \"etag\": \"W/\\\"6572ae42-e0e1-44fb-bfd4-e33849362318\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"bd744552-3cc2-4602-af75-b133d1badf7b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"1c98baa6-b9eb-4a0f-a195-3ec807d01d7d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"409e8a81-dd7b-471b-a7b0-f94b70dad6af\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"vrfsubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Network/virtualNetworks/vrfvnet/subnets/vrfsubnet\",\r\n - \ \"etag\": \"W/\\\"6572ae42-e0e1-44fb-bfd4-e33849362318\\\"\",\r\n + \ \"etag\": \"W/\\\"bd744552-3cc2-4602-af75-b133d1badf7b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvm8417Nic/ipConfigurations/vrfvm8417IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1/networkInterfaces/vrfvm8417Nic/ipConfigurations/vrfvm8417IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/2/networkInterfaces/vrfvm8417Nic/ipConfigurations/vrfvm8417IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/3/networkInterfaces/vrfvm8417Nic/ipConfigurations/vrfvm8417IPConfig\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/2/networkInterfaces/vrfvme856Nic/ipConfigurations/vrfvme856IPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/3/networkInterfaces/vrfvme856Nic/ipConfigurations/vrfvme856IPConfig\"\r\n \ }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n @@ -2194,13 +2464,13 @@ interactions: cache-control: - no-cache content-length: - - '2859' + - '2177' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 12:50:37 GMT + - Tue, 11 Feb 2020 11:50:59 GMT etag: - - W/"6572ae42-e0e1-44fb-bfd4-e33849362318" + - W/"bd744552-3cc2-4602-af75-b133d1badf7b" expires: - '-1' pragma: @@ -2217,7 +2487,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 91be9f07-b6e7-4b9c-8d7c-eb2915959ff6 + - cfa2ee1c-cd5c-48f5-b784-1934c3d109e3 status: code: 200 message: OK