From 755597ce313cd99075c9e1f1b6bdb30de775c42a Mon Sep 17 00:00:00 2001 From: Travis Prescott Date: Tue, 6 Feb 2018 10:51:33 -0800 Subject: [PATCH] "run_tests" script enhancements (#5468) * Test script enhancements. * Code review feedback * Update travis.yml file. * Update .travis.yml config. --- .travis.yml | 4 +- azure-cli2017.pyproj | 10 +- scripts/ci/test_automation.sh | 4 +- ..._validators.py => test_core_validators.py} | 0 .../cli/core/tests/test_generic_update.py | 2 +- .../azure/cli/testsdk/base.py | 28 +- .../tests/latest/test_acr_commands_mock.py | 2 +- ...t_validators.py => test_lab_validators.py} | 0 ...monitor_diagnostic_settings_scenario.yaml} | 0 ...aml => test_monitor_metrics_scenario.yaml} | 0 .../test_monitor_diagnostic_settings.py | 2 +- .../tests/latest/test_monitor_metrics.py | 2 +- .../tests/latest/recordings/test_dns.yaml | 1086 ++++++----- .../test_network_express_route.yaml | 1110 +++++------ .../latest/recordings/test_network_lb.yaml | 616 +++--- .../latest/recordings/test_network_nic.yaml | 1736 +++++++++-------- .../latest/recordings/test_network_nsg.yaml | 539 ++--- .../test_network_route_table_operation.yaml | 287 +-- .../latest/recordings/test_network_vnet.yaml | 567 +++--- .../tests/latest/test_network_commands.py | 29 - .../latest/zone_files/zone1.txt_export.txt | 2 +- .../latest/zone_files/zone2.txt_export.txt | 2 +- .../latest/zone_files/zone3.txt_export.txt | 2 +- .../latest/zone_files/zone4.txt_export.txt | 2 +- .../latest/zone_files/zone5.txt_export.txt | 2 +- .../latest/zone_files/zone6.txt_export.txt | 2 +- ...{test_custom.py => test_profile_custom.py} | 0 ...test_custom.py => test_resource_custom.py} | 0 .../{test_custom.py => test_role_custom.py} | 0 test_failures.txt | 0 tools/automation/tests/__init__.py | 243 ++- tools/automation/tests/main.py | 99 +- tools/automation/tests/nose_helper.py | 6 +- tools/automation/utilities/display.py | 12 + tools/automation/utilities/path.py | 13 +- tools/setup.py | 1 - 36 files changed, 3363 insertions(+), 3047 deletions(-) rename src/azure-cli-core/azure/cli/core/tests/{test_validators.py => test_core_validators.py} (100%) rename src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/tests/latest/{test_validators.py => test_lab_validators.py} (100%) rename src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/recordings/{test_monitor_diagnostic_settings.yaml => test_monitor_diagnostic_settings_scenario.yaml} (100%) rename src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/recordings/{test_monitor_metrics.yaml => test_monitor_metrics_scenario.yaml} (100%) rename src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/tests/latest/{test_custom.py => test_profile_custom.py} (100%) rename src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/{test_custom.py => test_resource_custom.py} (100%) rename src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/{test_custom.py => test_role_custom.py} (100%) create mode 100644 test_failures.txt diff --git a/.travis.yml b/.travis.yml index f33a0eef04a..a329584d6d0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,11 +23,11 @@ jobs: python: 3.6 - stage: verify env: PURPOSE='Automation' - script: ./scripts/ci/test_automation.sh + script: travis_wait 30 ./scripts/ci/test_automation.sh python: 3.6 - stage: verify env: PURPOSE='Automation' - script: ./scripts/ci/test_automation.sh + script: travis_wait 30 ./scripts/ci/test_automation.sh python: 2.7 - stage: verify script: ./scripts/ci/test_static.sh diff --git a/azure-cli2017.pyproj b/azure-cli2017.pyproj index 6957b6a120e..aaf648b446d 100644 --- a/azure-cli2017.pyproj +++ b/azure-cli2017.pyproj @@ -64,7 +64,7 @@ - + @@ -395,7 +395,7 @@ - + @@ -448,7 +448,7 @@ - + @@ -488,7 +488,7 @@ - + @@ -502,7 +502,7 @@ - + diff --git a/scripts/ci/test_automation.sh b/scripts/ci/test_automation.sh index 1958abad58e..cc5f0c9a51c 100755 --- a/scripts/ci/test_automation.sh +++ b/scripts/ci/test_automation.sh @@ -41,7 +41,7 @@ title "Switch profile to $target_profile" az cloud set -n AzureCloud --profile $target_profile -title 'Runing tests' -coverage run -m automation test --parallel --ci +title 'Running tests' +coverage run -m automation test --ci coverage combine codecov diff --git a/src/azure-cli-core/azure/cli/core/tests/test_validators.py b/src/azure-cli-core/azure/cli/core/tests/test_core_validators.py similarity index 100% rename from src/azure-cli-core/azure/cli/core/tests/test_validators.py rename to src/azure-cli-core/azure/cli/core/tests/test_core_validators.py diff --git a/src/azure-cli-core/azure/cli/core/tests/test_generic_update.py b/src/azure-cli-core/azure/cli/core/tests/test_generic_update.py index a26742b0014..56c1abd10f6 100644 --- a/src/azure-cli-core/azure/cli/core/tests/test_generic_update.py +++ b/src/azure-cli-core/azure/cli/core/tests/test_generic_update.py @@ -97,7 +97,7 @@ class GenericUpdateTest(unittest.TestCase): def setUpClass(cls): logging.getLogger().setLevel(logging.ERROR) - def test_generic_update(self): # pylint: disable=too-many-statements + def test_generic_update_scenario(self): # pylint: disable=too-many-statements my_obj, loader_cls = _prepare_test_loader() cli = TestCli(commands_loader_cls=loader_cls) diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/base.py b/src/azure-cli-testsdk/azure/cli/testsdk/base.py index 42e877bb8a7..3b1bcb8fda0 100644 --- a/src/azure-cli-testsdk/azure/cli/testsdk/base.py +++ b/src/azure-cli-testsdk/azure/cli/testsdk/base.py @@ -4,7 +4,6 @@ # -------------------------------------------------------------------------------------------- import os -import subprocess import json import shlex import logging @@ -164,26 +163,23 @@ def get_subscription_id(self): class ExecutionResult(object): - def __init__(self, cli_ctx, command, expect_failure=False, in_process=True): + def __init__(self, cli_ctx, command, expect_failure=False): self.output = '' self.applog = '' + self.command_coverage = {} - if in_process: - self._in_process_execute(cli_ctx, command, expect_failure=expect_failure) - else: - self._out_of_process_execute(command) + self._in_process_execute(cli_ctx, command, expect_failure=expect_failure) + log_val = ('Logging ' + self.applog) if self.applog else '' if expect_failure and self.exit_code == 0: - logger.error('Command "%s" => %d. (It did not fail as expected) Output: %s. %s', command, - self.exit_code, self.output, ('Logging ' + self.applog) if self.applog else '') + logger.error('Command "%s" => %d. (It did not fail as expected). %s\n', command, + self.exit_code, log_val) raise AssertionError('The command did not fail as it was expected.') elif not expect_failure and self.exit_code != 0: - logger.error('Command "%s" => %d. Output: %s. %s', command, self.exit_code, self.output, - ('Logging ' + self.applog) if self.applog else '') + logger.error('Command "%s" => %d. %s\n', command, self.exit_code, log_val) raise AssertionError('The command failed. Exit code: {}'.format(self.exit_code)) - logger.info('Command "%s" => %d. Output: %s. %s', command, self.exit_code, self.output, - ('Logging ' + self.applog) if self.applog else '') + logger.info('Command "%s" => %d. %s\n', command, self.exit_code, log_val) self.json_value = None self.skip_assert = os.environ.get(ENV_SKIP_ASSERT, None) == 'True' @@ -246,13 +242,5 @@ def _in_process_execute(self, cli_ctx, command, expect_failure=False): stdout_buf.close() logging_buf.close() - def _out_of_process_execute(self, command): - try: - self.output = subprocess.check_output(shlex.split(command)).decode('utf-8') - self.exit_code = 0 - except subprocess.CalledProcessError as error: - self.exit_code, self.output = error.returncode, error.output.decode('utf-8') - self.process_error = error - execute = ExecutionResult diff --git a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/tests/latest/test_acr_commands_mock.py b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/tests/latest/test_acr_commands_mock.py index 7ffbe56578c..bff6a3e8e11 100644 --- a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/tests/latest/test_acr_commands_mock.py +++ b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/tests/latest/test_acr_commands_mock.py @@ -29,7 +29,7 @@ from azure.cli.testsdk import TestCli -class AcrCommandsTests(unittest.TestCase): +class AcrMockCommandsTests(unittest.TestCase): @mock.patch('azure.cli.command_modules.acr.repository.get_access_credentials', autospec=True) @mock.patch('requests.get', autospec=True) diff --git a/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/tests/latest/test_validators.py b/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/tests/latest/test_lab_validators.py similarity index 100% rename from src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/tests/latest/test_validators.py rename to src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/tests/latest/test_lab_validators.py diff --git a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/recordings/test_monitor_diagnostic_settings.yaml b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/recordings/test_monitor_diagnostic_settings_scenario.yaml similarity index 100% rename from src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/recordings/test_monitor_diagnostic_settings.yaml rename to src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/recordings/test_monitor_diagnostic_settings_scenario.yaml diff --git a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/recordings/test_monitor_metrics.yaml b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/recordings/test_monitor_metrics_scenario.yaml similarity index 100% rename from src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/recordings/test_monitor_metrics.yaml rename to src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/recordings/test_monitor_metrics_scenario.yaml diff --git a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/test_monitor_diagnostic_settings.py b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/test_monitor_diagnostic_settings.py index dd4ff4ae9c3..9c793c21db2 100644 --- a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/test_monitor_diagnostic_settings.py +++ b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/test_monitor_diagnostic_settings.py @@ -10,7 +10,7 @@ class TestMonitorDiagnosticSettings(ScenarioTest): @ResourceGroupPreparer(location='southcentralus') @StorageAccountPreparer(location='southcentralus') - def test_monitor_diagnostic_settings(self, resource_group, storage_account): + def test_monitor_diagnostic_settings_scenario(self, resource_group, storage_account): nsg_name = self.create_random_name(prefix='nsg', length=16) self.cmd('network nsg create -n {} -g {}'.format(nsg_name, resource_group)) diff --git a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/test_monitor_metrics.py b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/test_monitor_metrics.py index a22dca263df..39468254ae4 100644 --- a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/test_monitor_metrics.py +++ b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/latest/test_monitor_metrics.py @@ -9,7 +9,7 @@ class TestMonitorMetrics(ScenarioTest): @ResourceGroupPreparer(location='southcentralus') @StorageAccountPreparer() - def test_monitor_metrics(self, resource_group, storage_account): + def test_monitor_metrics_scenario(self, resource_group, storage_account): resource_id = self.cmd( 'az storage account show -n {} -g {} --query id -otsv'.format(storage_account, resource_group)).output diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_dns.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_dns.yaml index 1ce76a5a34f..4dc292ecfbe 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_dns.yaml +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_dns.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus", "tags": {"use": "az-test"}}' + body: !!python/unicode '{"location": "westus", "tags": {"use": "az-test"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -8,23 +8,23 @@ interactions: Connection: [keep-alive] Content-Length: ['50'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001","name":"cli_test_dns000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001","name":"cli_test_dns000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:43 GMT'] + date: ['Fri, 02 Feb 2018 22:31:21 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: null @@ -34,18 +34,19 @@ interactions: CommandName: [network dns zone list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_exportiel2sbh7vmrtjm4slcpiwu2ukcy6hs5quk3qfnca3iqvmndun\/providers\/Microsoft.Network\/dnszones\/zone1.com","name":"zone1.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3b23-616bbb93d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.azure-dns.com.","ns2-09.azure-dns.net.","ns3-09.azure-dns.org.","ns4-09.azure-dns.info."],"numberOfRecordSets":16}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/tjp-zone\/providers\/Microsoft.Network\/dnszones\/abc.com","name":"abc.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b619-ee34b193d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.azure-dns.com.","ns2-01.azure-dns.net.","ns3-01.azure-dns.org.","ns4-01.azure-dns.info."],"numberOfRecordSets":4}}]}'} + body: {string: !!python/unicode '{"value":[]}'} headers: cache-control: [private] - content-length: ['979'] + content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:44 GMT'] + date: ['Fri, 02 Feb 2018 22:31:21 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -56,7 +57,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"location": "global"}' + body: !!python/unicode '{"location": "global"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -64,19 +65,20 @@ interactions: Connection: [keep-alive] Content-Length: ['22'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-36e8-a98dbb93d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.azure-dns.com.","ns2-03.azure-dns.net.","ns3-03.azure-dns.org.","ns4-03.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7f88-c38e759cd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.azure-dns.com.","ns2-05.azure-dns.net.","ns3-05.azure-dns.org.","ns4-05.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}'} headers: cache-control: [private] content-length: ['540'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:47 GMT'] - etag: [00000002-0000-0000-36e8-a98dbb93d301] + date: ['Fri, 02 Feb 2018 22:31:23 GMT'] + etag: [00000002-0000-0000-7f88-c38e759cd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -92,18 +94,19 @@ interactions: CommandName: [network dns zone list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-36e8-a98dbb93d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.azure-dns.com.","ns2-03.azure-dns.net.","ns3-03.azure-dns.org.","ns4-03.azure-dns.info."],"numberOfRecordSets":2}}]}'} + body: {string: !!python/unicode '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7f88-c38e759cd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.azure-dns.com.","ns2-05.azure-dns.net.","ns3-05.azure-dns.org.","ns4-05.azure-dns.info."],"numberOfRecordSets":2}}]}'} headers: cache-control: [private] content-length: ['532'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:48 GMT'] + date: ['Fri, 02 Feb 2018 22:31:26 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -121,19 +124,20 @@ interactions: CommandName: [network dns zone show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-36e8-a98dbb93d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.azure-dns.com.","ns2-03.azure-dns.net.","ns3-03.azure-dns.org.","ns4-03.azure-dns.info."],"numberOfRecordSets":2}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7f88-c38e759cd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.azure-dns.com.","ns2-05.azure-dns.net.","ns3-05.azure-dns.org.","ns4-05.azure-dns.info."],"numberOfRecordSets":2}}'} headers: cache-control: [private] content-length: ['520'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:49 GMT'] - etag: [00000002-0000-0000-36e8-a98dbb93d301] + date: ['Fri, 02 Feb 2018 22:31:26 GMT'] + etag: [00000002-0000-0000-7f88-c38e759cd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -144,7 +148,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"properties": {"TTL": 3600}}' + body: !!python/unicode '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -152,19 +156,20 @@ interactions: Connection: [keep-alive] Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7cb29d92-b3ca-43d4-a645-e83b01ec4fcc","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"dd77e77d-80f3-4c67-be11-db3f040519db","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} headers: cache-control: [private] content-length: ['385'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:50 GMT'] - etag: [7cb29d92-b3ca-43d4-a645-e83b01ec4fcc] + date: ['Fri, 02 Feb 2018 22:31:27 GMT'] + etag: [dd77e77d-80f3-4c67-be11-db3f040519db] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -180,19 +185,20 @@ interactions: CommandName: [network dns record-set a add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7cb29d92-b3ca-43d4-a645-e83b01ec4fcc","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"dd77e77d-80f3-4c67-be11-db3f040519db","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} headers: cache-control: [private] content-length: ['385'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:52 GMT'] - etag: [7cb29d92-b3ca-43d4-a645-e83b01ec4fcc] + date: ['Fri, 02 Feb 2018 22:31:28 GMT'] + etag: [dd77e77d-80f3-4c67-be11-db3f040519db] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -203,8 +209,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "7cb29d92-b3ca-43d4-a645-e83b01ec4fcc", "properties": {"TTL": - 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' + body: !!python/unicode '{"etag": "dd77e77d-80f3-4c67-be11-db3f040519db", "properties": + {"ARecords": [{"ipv4Address": "10.0.0.10"}], "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -212,19 +218,20 @@ interactions: Connection: [keep-alive] Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"63754486-b223-4d0d-8977-44833584f939","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"fe0c4897-4f5b-4933-9431-b524238b1129","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:52 GMT'] - etag: [63754486-b223-4d0d-8977-44833584f939] + date: ['Fri, 02 Feb 2018 22:31:30 GMT'] + etag: [fe0c4897-4f5b-4933-9431-b524238b1129] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -242,19 +249,21 @@ interactions: CommandName: [network dns record-set a add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2017-09-01 response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsaalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} + body: {string: !!python/unicode '{"code":"NotFound","message":"The resource record + ''myrsaalt'' does not exist in resource group ''cli_test_dns000001'' of subscription + ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} headers: cache-control: [private] content-length: ['229'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:53 GMT'] + date: ['Fri, 02 Feb 2018 22:31:29 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -263,7 +272,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: - body: '{"properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' + body: !!python/unicode '{"properties": {"ARecords": [{"ipv4Address": "10.0.0.10"}], + "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -271,19 +281,20 @@ interactions: Connection: [keep-alive] Content-Length: ['73'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"4b1d72ee-8cf1-4545-9061-442e508aa5b4","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"93956429-c6a6-47df-ac84-1702295e3caa","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] content-length: ['421'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:54 GMT'] - etag: [4b1d72ee-8cf1-4545-9061-442e508aa5b4] + date: ['Fri, 02 Feb 2018 22:31:31 GMT'] + etag: [93956429-c6a6-47df-ac84-1702295e3caa] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -292,7 +303,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: - body: '{"properties": {"TTL": 3600}}' + body: !!python/unicode '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -300,19 +311,20 @@ interactions: Connection: [keep-alive] Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"f9de9fc3-30d8-486b-9825-837d64337a67","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"fead577f-1ed0-42a0-a42e-0da6b4410803","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} headers: cache-control: [private] content-length: ['403'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:56 GMT'] - etag: [f9de9fc3-30d8-486b-9825-837d64337a67] + date: ['Fri, 02 Feb 2018 22:31:33 GMT'] + etag: [fead577f-1ed0-42a0-a42e-0da6b4410803] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -328,19 +340,20 @@ interactions: CommandName: [network dns record-set aaaa add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"f9de9fc3-30d8-486b-9825-837d64337a67","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"fead577f-1ed0-42a0-a42e-0da6b4410803","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} headers: cache-control: [private] content-length: ['403'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:57 GMT'] - etag: [f9de9fc3-30d8-486b-9825-837d64337a67] + date: ['Fri, 02 Feb 2018 22:31:34 GMT'] + etag: [fead577f-1ed0-42a0-a42e-0da6b4410803] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -351,8 +364,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "f9de9fc3-30d8-486b-9825-837d64337a67", "properties": {"TTL": - 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' + body: !!python/unicode '{"etag": "fead577f-1ed0-42a0-a42e-0da6b4410803", "properties": + {"AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}], "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -360,19 +373,20 @@ interactions: Connection: [keep-alive] Content-Length: ['135'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"b3783da1-84da-4378-aa66-5e6180ec63e4","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1f333501-0733-4f00-8fbe-43915319ab37","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] content-length: ['441'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:57 GMT'] - etag: [b3783da1-84da-4378-aa66-5e6180ec63e4] + date: ['Fri, 02 Feb 2018 22:31:35 GMT'] + etag: [1f333501-0733-4f00-8fbe-43915319ab37] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -390,19 +404,21 @@ interactions: CommandName: [network dns record-set aaaa add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsaaaaalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} + body: {string: !!python/unicode '{"code":"NotFound","message":"The resource record + ''myrsaaaaalt'' does not exist in resource group ''cli_test_dns000001'' of + subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} headers: cache-control: [private] content-length: ['232'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:58 GMT'] + date: ['Fri, 02 Feb 2018 22:31:36 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -411,7 +427,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: - body: '{"properties": {"TTL": 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' + body: !!python/unicode '{"properties": {"AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}], + "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -419,19 +436,20 @@ interactions: Connection: [keep-alive] Content-Length: ['87'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"32c8ee68-cec4-4eb3-a498-66ce067f75d1","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"dcc5d935-a62a-4475-9ac3-402fe496cad7","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] content-length: ['450'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 19:59:59 GMT'] - etag: [32c8ee68-cec4-4eb3-a498-66ce067f75d1] + date: ['Fri, 02 Feb 2018 22:31:37 GMT'] + etag: [dcc5d935-a62a-4475-9ac3-402fe496cad7] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -440,7 +458,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: - body: '{"properties": {"TTL": 3600}}' + body: !!python/unicode '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -448,19 +466,20 @@ interactions: Connection: [keep-alive] Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"28f5341d-b125-4ebe-bc36-a3ef836ef4f9","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"68541afd-312a-43fa-a41e-88fe23eebcb3","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:01 GMT'] - etag: [28f5341d-b125-4ebe-bc36-a3ef836ef4f9] + date: ['Fri, 02 Feb 2018 22:31:38 GMT'] + etag: [68541afd-312a-43fa-a41e-88fe23eebcb3] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -476,19 +495,20 @@ interactions: CommandName: [network dns record-set caa add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"28f5341d-b125-4ebe-bc36-a3ef836ef4f9","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"68541afd-312a-43fa-a41e-88fe23eebcb3","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:03 GMT'] - etag: [28f5341d-b125-4ebe-bc36-a3ef836ef4f9] + date: ['Fri, 02 Feb 2018 22:31:39 GMT'] + etag: [68541afd-312a-43fa-a41e-88fe23eebcb3] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -499,8 +519,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "28f5341d-b125-4ebe-bc36-a3ef836ef4f9", "properties": {"TTL": - 3600, "caaRecords": [{"flags": 0, "tag": "foo", "value": "my value"}]}}' + body: !!python/unicode '{"etag": "68541afd-312a-43fa-a41e-88fe23eebcb3", "properties": + {"caaRecords": [{"tag": "foo", "flags": 0, "value": "my value"}], "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -508,20 +528,21 @@ interactions: Connection: [keep-alive] Content-Length: ['142'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"27016d0a-86b5-479c-8e6b-25e9ad641379","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"69a9f5e6-77c4-458f-853e-5184d9724b04","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my value"}]}}'} headers: cache-control: [private] content-length: ['439'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:04 GMT'] - etag: [27016d0a-86b5-479c-8e6b-25e9ad641379] + date: ['Fri, 02 Feb 2018 22:31:40 GMT'] + etag: [69a9f5e6-77c4-458f-853e-5184d9724b04] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -539,19 +560,21 @@ interactions: CommandName: [network dns record-set caa add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2017-09-01 response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrscaaalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} + body: {string: !!python/unicode '{"code":"NotFound","message":"The resource record + ''myrscaaalt'' does not exist in resource group ''cli_test_dns000001'' of + subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} headers: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:04 GMT'] + date: ['Fri, 02 Feb 2018 22:31:41 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -560,8 +583,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: - body: '{"properties": {"TTL": 3600, "caaRecords": [{"flags": 0, "tag": "foo", - "value": "my value"}]}}' + body: !!python/unicode '{"properties": {"caaRecords": [{"tag": "foo", "flags": + 0, "value": "my value"}], "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -569,29 +592,30 @@ interactions: Connection: [keep-alive] Content-Length: ['94'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"75d35b32-69c5-4751-ba92-85baf090cea6","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"b7c13bef-5711-4bce-8e61-891b771a125d","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my value"}]}}'} headers: cache-control: [private] content-length: ['448'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:05 GMT'] - etag: [75d35b32-69c5-4751-ba92-85baf090cea6] + date: ['Fri, 02 Feb 2018 22:31:42 GMT'] + etag: [b7c13bef-5711-4bce-8e61-891b771a125d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: - body: '{"properties": {"TTL": 3600}}' + body: !!python/unicode '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -599,19 +623,20 @@ interactions: Connection: [keep-alive] Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"353c8f31-9a3b-4871-9a0b-4fbdb526bd05","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"7f34b17d-946f-4e2a-a7ab-0d5ea47b0a31","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} headers: cache-control: [private] content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:07 GMT'] - etag: [353c8f31-9a3b-4871-9a0b-4fbdb526bd05] + date: ['Fri, 02 Feb 2018 22:31:45 GMT'] + etag: [7f34b17d-946f-4e2a-a7ab-0d5ea47b0a31] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -627,19 +652,20 @@ interactions: CommandName: [network dns record-set cname set-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"353c8f31-9a3b-4871-9a0b-4fbdb526bd05","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"7f34b17d-946f-4e2a-a7ab-0d5ea47b0a31","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} headers: cache-control: [private] content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:08 GMT'] - etag: [353c8f31-9a3b-4871-9a0b-4fbdb526bd05] + date: ['Fri, 02 Feb 2018 22:31:45 GMT'] + etag: [7f34b17d-946f-4e2a-a7ab-0d5ea47b0a31] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -650,8 +676,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "353c8f31-9a3b-4871-9a0b-4fbdb526bd05", "properties": {"TTL": - 3600, "CNAMERecord": {"cname": "mycname"}}}' + body: !!python/unicode '{"etag": "7f34b17d-946f-4e2a-a7ab-0d5ea47b0a31", "properties": + {"CNAMERecord": {"cname": "mycname"}, "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -659,19 +685,20 @@ interactions: Connection: [keep-alive] Content-Length: ['114'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"7656e597-1e45-4553-baf6-ed82f6fecf10","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"c6fd012b-7dd8-4ffb-a81c-c89a1afc3796","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] content-length: ['425'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:09 GMT'] - etag: [7656e597-1e45-4553-baf6-ed82f6fecf10] + date: ['Fri, 02 Feb 2018 22:31:46 GMT'] + etag: [c6fd012b-7dd8-4ffb-a81c-c89a1afc3796] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -689,19 +716,21 @@ interactions: CommandName: [network dns record-set cname set-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2017-09-01 response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrscnamealt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} + body: {string: !!python/unicode '{"code":"NotFound","message":"The resource record + ''myrscnamealt'' does not exist in resource group ''cli_test_dns000001'' of + subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} headers: cache-control: [private] content-length: ['233'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:09 GMT'] + date: ['Fri, 02 Feb 2018 22:31:47 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -710,7 +739,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: - body: '{"properties": {"TTL": 3600, "CNAMERecord": {"cname": "mycname"}}}' + body: !!python/unicode '{"properties": {"CNAMERecord": {"cname": "mycname"}, "TTL": + 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -718,19 +748,20 @@ interactions: Connection: [keep-alive] Content-Length: ['66'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"8bf21082-61fc-467a-9199-e4b192c2a646","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"9e3dc276-1377-427f-a421-ee7257f67e8b","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:10 GMT'] - etag: [8bf21082-61fc-467a-9199-e4b192c2a646] + date: ['Fri, 02 Feb 2018 22:31:48 GMT'] + etag: [9e3dc276-1377-427f-a421-ee7257f67e8b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -739,7 +770,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: - body: '{"properties": {"TTL": 3600}}' + body: !!python/unicode '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -747,19 +778,20 @@ interactions: Connection: [keep-alive] Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"ad22520e-46f7-410d-861c-0083c5dd148e","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"170dee63-be8a-4a3c-8e4f-ea1f773c62a2","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} headers: cache-control: [private] content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:12 GMT'] - etag: [ad22520e-46f7-410d-861c-0083c5dd148e] + date: ['Fri, 02 Feb 2018 22:31:50 GMT'] + etag: [170dee63-be8a-4a3c-8e4f-ea1f773c62a2] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -775,19 +807,20 @@ interactions: CommandName: [network dns record-set mx add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"ad22520e-46f7-410d-861c-0083c5dd148e","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"170dee63-be8a-4a3c-8e4f-ea1f773c62a2","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} headers: cache-control: [private] content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:13 GMT'] - etag: [ad22520e-46f7-410d-861c-0083c5dd148e] + date: ['Fri, 02 Feb 2018 22:31:51 GMT'] + etag: [170dee63-be8a-4a3c-8e4f-ea1f773c62a2] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -798,8 +831,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "ad22520e-46f7-410d-861c-0083c5dd148e", "properties": {"TTL": - 3600, "MXRecords": [{"preference": 13, "exchange": "12"}]}}' + body: !!python/unicode '{"etag": "170dee63-be8a-4a3c-8e4f-ea1f773c62a2", "properties": + {"MXRecords": [{"preference": 13, "exchange": "12"}], "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -807,19 +840,20 @@ interactions: Connection: [keep-alive] Content-Length: ['130'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"0dca3309-e17a-4a2f-89ac-4467f838b504","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"a36d9917-5290-46b7-9c15-20a3e08c3e00","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:13 GMT'] - etag: [0dca3309-e17a-4a2f-89ac-4467f838b504] + date: ['Fri, 02 Feb 2018 22:31:51 GMT'] + etag: [a36d9917-5290-46b7-9c15-20a3e08c3e00] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -837,19 +871,21 @@ interactions: CommandName: [network dns record-set mx add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2017-09-01 response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsmxalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} + body: {string: !!python/unicode '{"code":"NotFound","message":"The resource record + ''myrsmxalt'' does not exist in resource group ''cli_test_dns000001'' of subscription + ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} headers: cache-control: [private] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:15 GMT'] + date: ['Fri, 02 Feb 2018 22:31:53 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -858,8 +894,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: - body: '{"properties": {"TTL": 3600, "MXRecords": [{"preference": 13, "exchange": - "12"}]}}' + body: !!python/unicode '{"properties": {"MXRecords": [{"preference": 13, "exchange": + "12"}], "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -867,19 +903,20 @@ interactions: Connection: [keep-alive] Content-Length: ['82'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"43a17a9b-d780-4189-9ea7-e4b47578991b","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"56f4ccf2-1a04-4203-b310-ce79af5e9363","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] content-length: ['433'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:16 GMT'] - etag: [43a17a9b-d780-4189-9ea7-e4b47578991b] + date: ['Fri, 02 Feb 2018 22:31:53 GMT'] + etag: [56f4ccf2-1a04-4203-b310-ce79af5e9363] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -888,7 +925,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: - body: '{"properties": {"TTL": 3600}}' + body: !!python/unicode '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -896,19 +933,20 @@ interactions: Connection: [keep-alive] Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"6795dfcc-7b54-462e-8fcb-add30e81d067","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"8ac50581-0a0d-4281-9345-8f0746f53051","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} headers: cache-control: [private] content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:17 GMT'] - etag: [6795dfcc-7b54-462e-8fcb-add30e81d067] + date: ['Fri, 02 Feb 2018 22:31:54 GMT'] + etag: [8ac50581-0a0d-4281-9345-8f0746f53051] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -924,19 +962,20 @@ interactions: CommandName: [network dns record-set ns add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"6795dfcc-7b54-462e-8fcb-add30e81d067","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"8ac50581-0a0d-4281-9345-8f0746f53051","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} headers: cache-control: [private] content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:18 GMT'] - etag: [6795dfcc-7b54-462e-8fcb-add30e81d067] + date: ['Fri, 02 Feb 2018 22:31:55 GMT'] + etag: [8ac50581-0a0d-4281-9345-8f0746f53051] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -947,8 +986,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "6795dfcc-7b54-462e-8fcb-add30e81d067", "properties": {"TTL": - 3600, "NSRecords": [{"nsdname": "foobar.com"}]}}' + body: !!python/unicode '{"etag": "8ac50581-0a0d-4281-9345-8f0746f53051", "properties": + {"NSRecords": [{"nsdname": "foobar.com"}], "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -956,19 +995,20 @@ interactions: Connection: [keep-alive] Content-Length: ['119'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"8fbb1e04-9af0-4dc6-a088-57705387c1d7","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"85c829e1-41f5-411f-b2ca-caac27a144c1","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['415'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:19 GMT'] - etag: [8fbb1e04-9af0-4dc6-a088-57705387c1d7] + date: ['Fri, 02 Feb 2018 22:31:56 GMT'] + etag: [85c829e1-41f5-411f-b2ca-caac27a144c1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -986,19 +1026,21 @@ interactions: CommandName: [network dns record-set ns add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2017-09-01 response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsnsalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} + body: {string: !!python/unicode '{"code":"NotFound","message":"The resource record + ''myrsnsalt'' does not exist in resource group ''cli_test_dns000001'' of subscription + ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} headers: cache-control: [private] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:20 GMT'] + date: ['Fri, 02 Feb 2018 22:31:57 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1007,7 +1049,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: - body: '{"properties": {"TTL": 3600, "NSRecords": [{"nsdname": "foobar.com"}]}}' + body: !!python/unicode '{"properties": {"NSRecords": [{"nsdname": "foobar.com"}], + "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1015,19 +1058,20 @@ interactions: Connection: [keep-alive] Content-Length: ['71'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"95eb985b-e2b6-4261-af37-7ada6d6938cc","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"34699ffe-d9c7-465c-9c4e-9e101c15376b","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:21 GMT'] - etag: [95eb985b-e2b6-4261-af37-7ada6d6938cc] + date: ['Fri, 02 Feb 2018 22:31:58 GMT'] + etag: [34699ffe-d9c7-465c-9c4e-9e101c15376b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1036,7 +1080,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: - body: '{"properties": {"TTL": 3600}}' + body: !!python/unicode '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1044,19 +1088,20 @@ interactions: Connection: [keep-alive] Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"73070731-8092-48f6-aef3-7255d0c54ba2","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"ec148112-8ac4-475c-9952-ee8e3206dbd4","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:23 GMT'] - etag: [73070731-8092-48f6-aef3-7255d0c54ba2] + date: ['Fri, 02 Feb 2018 22:31:59 GMT'] + etag: [ec148112-8ac4-475c-9952-ee8e3206dbd4] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1072,19 +1117,20 @@ interactions: CommandName: [network dns record-set ptr add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"73070731-8092-48f6-aef3-7255d0c54ba2","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"ec148112-8ac4-475c-9952-ee8e3206dbd4","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:24 GMT'] - etag: [73070731-8092-48f6-aef3-7255d0c54ba2] + date: ['Fri, 02 Feb 2018 22:32:00 GMT'] + etag: [ec148112-8ac4-475c-9952-ee8e3206dbd4] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1095,8 +1141,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "73070731-8092-48f6-aef3-7255d0c54ba2", "properties": {"TTL": - 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' + body: !!python/unicode '{"etag": "ec148112-8ac4-475c-9952-ee8e3206dbd4", "properties": + {"PTRRecords": [{"ptrdname": "foobar.com"}], "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1104,19 +1150,20 @@ interactions: Connection: [keep-alive] Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"d07a54df-324b-4714-952f-c18416c35914","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"9ffa7e5d-fb5d-4eb3-aa64-b38a8347eb0f","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['422'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:25 GMT'] - etag: [d07a54df-324b-4714-952f-c18416c35914] + date: ['Fri, 02 Feb 2018 22:32:01 GMT'] + etag: [9ffa7e5d-fb5d-4eb3-aa64-b38a8347eb0f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1134,19 +1181,21 @@ interactions: CommandName: [network dns record-set ptr add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2017-09-01 response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsptralt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} + body: {string: !!python/unicode '{"code":"NotFound","message":"The resource record + ''myrsptralt'' does not exist in resource group ''cli_test_dns000001'' of + subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} headers: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:26 GMT'] + date: ['Fri, 02 Feb 2018 22:32:02 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1155,7 +1204,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: - body: '{"properties": {"TTL": 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' + body: !!python/unicode '{"properties": {"PTRRecords": [{"ptrdname": "foobar.com"}], + "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1163,19 +1213,20 @@ interactions: Connection: [keep-alive] Content-Length: ['73'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"6cd94c80-0350-4d01-b78d-79dc7de45fdc","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"5d416c15-a6a5-427c-93d5-abdd57a46aa8","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['431'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:27 GMT'] - etag: [6cd94c80-0350-4d01-b78d-79dc7de45fdc] + date: ['Fri, 02 Feb 2018 22:32:03 GMT'] + etag: [5d416c15-a6a5-427c-93d5-abdd57a46aa8] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1184,7 +1235,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: - body: '{"properties": {"TTL": 3600}}' + body: !!python/unicode '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1192,19 +1243,20 @@ interactions: Connection: [keep-alive] Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"1e3e8f6c-2e1b-4ed8-960f-a822ea6437b4","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"600f6a63-372d-4d5f-97b2-8152ad551325","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:27 GMT'] - etag: [1e3e8f6c-2e1b-4ed8-960f-a822ea6437b4] + date: ['Fri, 02 Feb 2018 22:32:04 GMT'] + etag: [600f6a63-372d-4d5f-97b2-8152ad551325] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1220,19 +1272,20 @@ interactions: CommandName: [network dns record-set srv add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"1e3e8f6c-2e1b-4ed8-960f-a822ea6437b4","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"600f6a63-372d-4d5f-97b2-8152ad551325","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:28 GMT'] - etag: [1e3e8f6c-2e1b-4ed8-960f-a822ea6437b4] + date: ['Fri, 02 Feb 2018 22:32:05 GMT'] + etag: [600f6a63-372d-4d5f-97b2-8152ad551325] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1243,8 +1296,9 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "1e3e8f6c-2e1b-4ed8-960f-a822ea6437b4", "properties": {"TTL": - 3600, "SRVRecords": [{"priority": 1, "weight": 50, "port": 1234, "target": "target.com"}]}}' + body: !!python/unicode '{"etag": "600f6a63-372d-4d5f-97b2-8152ad551325", "properties": + {"SRVRecords": [{"priority": 1, "port": 1234, "weight": 50, "target": "target.com"}], + "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1252,19 +1306,20 @@ interactions: Connection: [keep-alive] Content-Length: ['162'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"bf124308-13f6-4c37-8ffb-776abe17989d","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"1f8c372d-7fe4-43cf-9c18-1e4b06ea92bc","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] content-length: ['457'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:29 GMT'] - etag: [bf124308-13f6-4c37-8ffb-776abe17989d] + date: ['Fri, 02 Feb 2018 22:32:06 GMT'] + etag: [1f8c372d-7fe4-43cf-9c18-1e4b06ea92bc] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1282,19 +1337,21 @@ interactions: CommandName: [network dns record-set srv add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2017-09-01 response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrssrvalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} + body: {string: !!python/unicode '{"code":"NotFound","message":"The resource record + ''myrssrvalt'' does not exist in resource group ''cli_test_dns000001'' of + subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} headers: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:30 GMT'] + date: ['Fri, 02 Feb 2018 22:32:06 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1303,8 +1360,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: - body: '{"properties": {"TTL": 3600, "SRVRecords": [{"priority": 1, "weight": 50, - "port": 1234, "target": "target.com"}]}}' + body: !!python/unicode '{"properties": {"SRVRecords": [{"priority": 1, "port": + 1234, "weight": 50, "target": "target.com"}], "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1312,19 +1369,20 @@ interactions: Connection: [keep-alive] Content-Length: ['114'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"025ebe1a-dedc-4fbd-b730-d0c2c5c34d95","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"7f1c8794-40aa-4808-8a71-ea9393f92dd5","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] content-length: ['466'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:30 GMT'] - etag: [025ebe1a-dedc-4fbd-b730-d0c2c5c34d95] + date: ['Fri, 02 Feb 2018 22:32:08 GMT'] + etag: [7f1c8794-40aa-4808-8a71-ea9393f92dd5] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1333,7 +1391,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: - body: '{"properties": {"TTL": 3600}}' + body: !!python/unicode '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1341,19 +1399,20 @@ interactions: Connection: [keep-alive] Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"95a40d99-3c68-487d-9a5e-eb7165090fd9","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a30df145-0d4c-4507-aee5-5f5d90c77c54","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:32 GMT'] - etag: [95a40d99-3c68-487d-9a5e-eb7165090fd9] + date: ['Fri, 02 Feb 2018 22:32:08 GMT'] + etag: [a30df145-0d4c-4507-aee5-5f5d90c77c54] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1369,19 +1428,20 @@ interactions: CommandName: [network dns record-set txt add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"95a40d99-3c68-487d-9a5e-eb7165090fd9","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a30df145-0d4c-4507-aee5-5f5d90c77c54","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:34 GMT'] - etag: [95a40d99-3c68-487d-9a5e-eb7165090fd9] + date: ['Fri, 02 Feb 2018 22:32:09 GMT'] + etag: [a30df145-0d4c-4507-aee5-5f5d90c77c54] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1392,8 +1452,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "95a40d99-3c68-487d-9a5e-eb7165090fd9", "properties": {"TTL": - 3600, "TXTRecords": [{"value": ["some_text"]}]}}' + body: !!python/unicode '{"etag": "a30df145-0d4c-4507-aee5-5f5d90c77c54", "properties": + {"TXTRecords": [{"value": ["some_text"]}], "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1401,26 +1461,27 @@ interactions: Connection: [keep-alive] Content-Length: ['119'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f85ef000-0bac-414c-bf26-35865b017dd3","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"408033b7-c3a8-4aaf-b315-4844d35e09bb","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] content-length: ['420'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:34 GMT'] - etag: [f85ef000-0bac-414c-bf26-35865b017dd3] + date: ['Fri, 02 Feb 2018 22:32:11 GMT'] + etag: [408033b7-c3a8-4aaf-b315-4844d35e09bb] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1431,19 +1492,21 @@ interactions: CommandName: [network dns record-set txt add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2017-09-01 response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrstxtalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} + body: {string: !!python/unicode '{"code":"NotFound","message":"The resource record + ''myrstxtalt'' does not exist in resource group ''cli_test_dns000001'' of + subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} headers: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:34 GMT'] + date: ['Fri, 02 Feb 2018 22:32:11 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1452,7 +1515,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: - body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["some_text"]}]}}' + body: !!python/unicode '{"properties": {"TXTRecords": [{"value": ["some_text"]}], + "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1460,19 +1524,20 @@ interactions: Connection: [keep-alive] Content-Length: ['71'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"d48afbfe-8e70-4858-9fce-13bcd158a799","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f3b5b619-e1a2-4d67-9289-68d5bba8ca5e","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] content-length: ['429'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:36 GMT'] - etag: [d48afbfe-8e70-4858-9fce-13bcd158a799] + date: ['Fri, 02 Feb 2018 22:32:12 GMT'] + etag: [f3b5b619-e1a2-4d67-9289-68d5bba8ca5e] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1488,19 +1553,20 @@ interactions: CommandName: [network dns record-set a add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"63754486-b223-4d0d-8977-44833584f939","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"fe0c4897-4f5b-4933-9431-b524238b1129","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:37 GMT'] - etag: [63754486-b223-4d0d-8977-44833584f939] + date: ['Fri, 02 Feb 2018 22:32:14 GMT'] + etag: [fe0c4897-4f5b-4933-9431-b524238b1129] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1511,8 +1577,9 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "63754486-b223-4d0d-8977-44833584f939", "properties": {"TTL": - 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}, {"ipv4Address": "10.0.0.11"}]}}' + body: !!python/unicode '{"etag": "fe0c4897-4f5b-4933-9431-b524238b1129", "properties": + {"ARecords": [{"ipv4Address": "10.0.0.10"}, {"ipv4Address": "10.0.0.11"}], "TTL": + 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1520,19 +1587,20 @@ interactions: Connection: [keep-alive] Content-Length: ['151'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7634e8b2-74db-4296-bcd8-bb1030634a27","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8a47cdcb-d511-41df-8a7f-46759b7ec228","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['440'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:38 GMT'] - etag: [7634e8b2-74db-4296-bcd8-bb1030634a27] + date: ['Fri, 02 Feb 2018 22:32:15 GMT'] + etag: [8a47cdcb-d511-41df-8a7f-46759b7ec228] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1550,19 +1618,20 @@ interactions: CommandName: [network dns record-set soa update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"bfb52337-dd02-4908-a1a0-fdd7dbd25f1b","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-03.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"dec934c8-5a6d-4c33-99a9-4a2e4db14cab","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-05.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} headers: cache-control: [private] content-length: ['540'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:39 GMT'] - etag: [bfb52337-dd02-4908-a1a0-fdd7dbd25f1b] + date: ['Fri, 02 Feb 2018 22:32:15 GMT'] + etag: [dec934c8-5a6d-4c33-99a9-4a2e4db14cab] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1580,19 +1649,20 @@ interactions: CommandName: [network dns record-set soa update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"bfb52337-dd02-4908-a1a0-fdd7dbd25f1b","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-03.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"dec934c8-5a6d-4c33-99a9-4a2e4db14cab","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-05.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} headers: cache-control: [private] content-length: ['540'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:40 GMT'] - etag: [bfb52337-dd02-4908-a1a0-fdd7dbd25f1b] + date: ['Fri, 02 Feb 2018 22:32:16 GMT'] + etag: [dec934c8-5a6d-4c33-99a9-4a2e4db14cab] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1603,9 +1673,10 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "bfb52337-dd02-4908-a1a0-fdd7dbd25f1b", "properties": {"TTL": - 3600, "SOARecord": {"host": "ns1-03.azure-dns.com.", "email": "foo.com", "serialNumber": - 123, "refreshTime": 60, "retryTime": 90, "expireTime": 30, "minimumTTL": 20}}}' + body: !!python/unicode '{"etag": "dec934c8-5a6d-4c33-99a9-4a2e4db14cab", "properties": + {"SOARecord": {"expireTime": 30, "email": "foo.com", "minimumTTL": 20, "retryTime": + 90, "serialNumber": 123, "host": "ns1-05.azure-dns.com.", "refreshTime": 60}, + "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1613,19 +1684,20 @@ interactions: Connection: [keep-alive] Content-Length: ['238'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"19b7b819-2d00-4261-b389-3232670e28d7","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-03.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"e0e9fb2e-ce1e-4a21-82c6-c2217e663c6b","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-05.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} headers: cache-control: [private] content-length: ['507'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:41 GMT'] - etag: [19b7b819-2d00-4261-b389-3232670e28d7] + date: ['Fri, 02 Feb 2018 22:32:17 GMT'] + etag: [e0e9fb2e-ce1e-4a21-82c6-c2217e663c6b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1643,19 +1715,21 @@ interactions: CommandName: [network dns record-set txt add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2017-09-01 response: - body: {string: '{"code":"NotFound","message":"The resource record ''longtxt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} + body: {string: !!python/unicode '{"code":"NotFound","message":"The resource record + ''longtxt'' does not exist in resource group ''cli_test_dns000001'' of subscription + ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} headers: cache-control: [private] content-length: ['228'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:43 GMT'] + date: ['Fri, 02 Feb 2018 22:32:17 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1664,8 +1738,9 @@ interactions: x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: - body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234", - "56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}' + body: !!python/unicode '{"properties": {"TXTRecords": [{"value": ["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234", + "56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}], + "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1673,19 +1748,20 @@ interactions: Connection: [keep-alive] Content-Length: ['566'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"e1c16de1-695c-4b2f-bd85-d20c20553cd5","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"b7a3487f-d029-4401-8165-1e8ca0318f54","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} headers: cache-control: [private] content-length: ['914'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:43 GMT'] - etag: [e1c16de1-695c-4b2f-bd85-d20c20553cd5] + date: ['Fri, 02 Feb 2018 22:32:18 GMT'] + etag: [b7a3487f-d029-4401-8165-1e8ca0318f54] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1701,19 +1777,20 @@ interactions: CommandName: [network dns zone show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-36e8-a98dbb93d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.azure-dns.com.","ns2-03.azure-dns.net.","ns3-03.azure-dns.org.","ns4-03.azure-dns.info."],"numberOfRecordSets":21}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7f88-c38e759cd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.azure-dns.com.","ns2-05.azure-dns.net.","ns3-05.azure-dns.org.","ns4-05.azure-dns.info."],"numberOfRecordSets":21}}'} headers: cache-control: [private] content-length: ['521'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:44 GMT'] - etag: [00000002-0000-0000-36e8-a98dbb93d301] + date: ['Fri, 02 Feb 2018 22:32:19 GMT'] + etag: [00000002-0000-0000-7f88-c38e759cd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1731,19 +1808,20 @@ interactions: CommandName: [network dns record-set a show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7634e8b2-74db-4296-bcd8-bb1030634a27","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8a47cdcb-d511-41df-8a7f-46759b7ec228","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['440'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:45 GMT'] - etag: [7634e8b2-74db-4296-bcd8-bb1030634a27] + date: ['Fri, 02 Feb 2018 22:32:19 GMT'] + etag: [8a47cdcb-d511-41df-8a7f-46759b7ec228] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1761,20 +1839,21 @@ interactions: CommandName: [network dns record-set list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/recordsets?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"38707436-cda7-4ed3-b2ac-85c28e025eb7","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-03.azure-dns.com."},{"nsdname":"ns2-03.azure-dns.net."},{"nsdname":"ns3-03.azure-dns.org."},{"nsdname":"ns4-03.azure-dns.info."}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"19b7b819-2d00-4261-b389-3232670e28d7","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-03.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"e1c16de1-695c-4b2f-bd85-d20c20553cd5","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7634e8b2-74db-4296-bcd8-bb1030634a27","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"b3783da1-84da-4378-aa66-5e6180ec63e4","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"32c8ee68-cec4-4eb3-a498-66ce067f75d1","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"4b1d72ee-8cf1-4545-9061-442e508aa5b4","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"27016d0a-86b5-479c-8e6b-25e9ad641379","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"75d35b32-69c5-4751-ba92-85baf090cea6","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"7656e597-1e45-4553-baf6-ed82f6fecf10","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"8bf21082-61fc-467a-9199-e4b192c2a646","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"0dca3309-e17a-4a2f-89ac-4467f838b504","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"43a17a9b-d780-4189-9ea7-e4b47578991b","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"8fbb1e04-9af0-4dc6-a088-57705387c1d7","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"95eb985b-e2b6-4261-af37-7ada6d6938cc","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"d07a54df-324b-4714-952f-c18416c35914","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"6cd94c80-0350-4d01-b78d-79dc7de45fdc","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"bf124308-13f6-4c37-8ffb-776abe17989d","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"025ebe1a-dedc-4fbd-b730-d0c2c5c34d95","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f85ef000-0bac-414c-bf26-35865b017dd3","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"d48afbfe-8e70-4858-9fce-13bcd158a799","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} + body: {string: !!python/unicode '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"4d077d8d-e3d4-4fb3-ab36-055f68bfe1cd","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-05.azure-dns.com."},{"nsdname":"ns2-05.azure-dns.net."},{"nsdname":"ns3-05.azure-dns.org."},{"nsdname":"ns4-05.azure-dns.info."}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"e0e9fb2e-ce1e-4a21-82c6-c2217e663c6b","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-05.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"b7a3487f-d029-4401-8165-1e8ca0318f54","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8a47cdcb-d511-41df-8a7f-46759b7ec228","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1f333501-0733-4f00-8fbe-43915319ab37","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"dcc5d935-a62a-4475-9ac3-402fe496cad7","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"93956429-c6a6-47df-ac84-1702295e3caa","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"69a9f5e6-77c4-458f-853e-5184d9724b04","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"b7c13bef-5711-4bce-8e61-891b771a125d","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"c6fd012b-7dd8-4ffb-a81c-c89a1afc3796","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"9e3dc276-1377-427f-a421-ee7257f67e8b","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"a36d9917-5290-46b7-9c15-20a3e08c3e00","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"56f4ccf2-1a04-4203-b310-ce79af5e9363","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"85c829e1-41f5-411f-b2ca-caac27a144c1","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"34699ffe-d9c7-465c-9c4e-9e101c15376b","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"9ffa7e5d-fb5d-4eb3-aa64-b38a8347eb0f","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"5d416c15-a6a5-427c-93d5-abdd57a46aa8","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"1f8c372d-7fe4-43cf-9c18-1e4b06ea92bc","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"7f1c8794-40aa-4808-8a71-ea9393f92dd5","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"408033b7-c3a8-4aaf-b315-4844d35e09bb","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f3b5b619-e1a2-4d67-9289-68d5bba8ca5e","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} headers: cache-control: [private] content-length: ['9792'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:47 GMT'] + date: ['Fri, 02 Feb 2018 22:32:20 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1792,18 +1871,19 @@ interactions: CommandName: [network dns record-set txt list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"e1c16de1-695c-4b2f-bd85-d20c20553cd5","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f85ef000-0bac-414c-bf26-35865b017dd3","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"d48afbfe-8e70-4858-9fce-13bcd158a799","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} + body: {string: !!python/unicode '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"b7a3487f-d029-4401-8165-1e8ca0318f54","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"408033b7-c3a8-4aaf-b315-4844d35e09bb","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f3b5b619-e1a2-4d67-9289-68d5bba8ca5e","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} headers: cache-control: [private] content-length: ['1777'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:47 GMT'] + date: ['Fri, 02 Feb 2018 22:32:21 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1821,31 +1901,32 @@ interactions: CommandName: [network dns record-set a remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7634e8b2-74db-4296-bcd8-bb1030634a27","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8a47cdcb-d511-41df-8a7f-46759b7ec228","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['440'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:48 GMT'] - etag: [7634e8b2-74db-4296-bcd8-bb1030634a27] + date: ['Fri, 02 Feb 2018 22:32:22 GMT'] + etag: [8a47cdcb-d511-41df-8a7f-46759b7ec228] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "7634e8b2-74db-4296-bcd8-bb1030634a27", "properties": {"TTL": - 3600, "ARecords": [{"ipv4Address": "10.0.0.11"}]}}' + body: !!python/unicode '{"etag": "8a47cdcb-d511-41df-8a7f-46759b7ec228", "properties": + {"ARecords": [{"ipv4Address": "10.0.0.11"}], "TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1853,26 +1934,27 @@ interactions: Connection: [keep-alive] Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"979c6e42-20be-49f6-9240-a7a4580ae741","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"f2503c7d-e73d-478f-86df-64b343bc43ab","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:48 GMT'] - etag: [979c6e42-20be-49f6-9240-a7a4580ae741] + date: ['Fri, 02 Feb 2018 22:32:23 GMT'] + etag: [f2503c7d-e73d-478f-86df-64b343bc43ab] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1883,19 +1965,20 @@ interactions: CommandName: [network dns record-set aaaa remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"b3783da1-84da-4378-aa66-5e6180ec63e4","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1f333501-0733-4f00-8fbe-43915319ab37","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] content-length: ['441'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:49 GMT'] - etag: [b3783da1-84da-4378-aa66-5e6180ec63e4] + date: ['Fri, 02 Feb 2018 22:32:23 GMT'] + etag: [1f333501-0733-4f00-8fbe-43915319ab37] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1914,17 +1997,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [private] content-length: ['0'] - date: ['Mon, 22 Jan 2018 20:00:50 GMT'] + date: ['Fri, 02 Feb 2018 22:32:24 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1940,20 +2024,21 @@ interactions: CommandName: [network dns record-set caa remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"27016d0a-86b5-479c-8e6b-25e9ad641379","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"69a9f5e6-77c4-458f-853e-5184d9724b04","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my value"}]}}'} headers: cache-control: [private] content-length: ['439'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:52 GMT'] - etag: [27016d0a-86b5-479c-8e6b-25e9ad641379] + date: ['Fri, 02 Feb 2018 22:32:24 GMT'] + etag: [69a9f5e6-77c4-458f-853e-5184d9724b04] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1972,17 +2057,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [private] content-length: ['0'] - date: ['Mon, 22 Jan 2018 20:00:53 GMT'] + date: ['Fri, 02 Feb 2018 22:32:25 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1998,19 +2084,20 @@ interactions: CommandName: [network dns record-set cname remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"7656e597-1e45-4553-baf6-ed82f6fecf10","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"c6fd012b-7dd8-4ffb-a81c-c89a1afc3796","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] content-length: ['425'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:54 GMT'] - etag: [7656e597-1e45-4553-baf6-ed82f6fecf10] + date: ['Fri, 02 Feb 2018 22:32:26 GMT'] + etag: [c6fd012b-7dd8-4ffb-a81c-c89a1afc3796] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2029,17 +2116,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [private] content-length: ['0'] - date: ['Mon, 22 Jan 2018 20:00:55 GMT'] + date: ['Fri, 02 Feb 2018 22:32:27 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2055,19 +2143,20 @@ interactions: CommandName: [network dns record-set mx remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"0dca3309-e17a-4a2f-89ac-4467f838b504","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"a36d9917-5290-46b7-9c15-20a3e08c3e00","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:56 GMT'] - etag: [0dca3309-e17a-4a2f-89ac-4467f838b504] + date: ['Fri, 02 Feb 2018 22:32:28 GMT'] + etag: [a36d9917-5290-46b7-9c15-20a3e08c3e00] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2086,17 +2175,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [private] content-length: ['0'] - date: ['Mon, 22 Jan 2018 20:00:57 GMT'] + date: ['Fri, 02 Feb 2018 22:32:29 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2112,19 +2202,20 @@ interactions: CommandName: [network dns record-set ns remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"8fbb1e04-9af0-4dc6-a088-57705387c1d7","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"85c829e1-41f5-411f-b2ca-caac27a144c1","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['415'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:00:58 GMT'] - etag: [8fbb1e04-9af0-4dc6-a088-57705387c1d7] + date: ['Fri, 02 Feb 2018 22:32:29 GMT'] + etag: [85c829e1-41f5-411f-b2ca-caac27a144c1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2143,17 +2234,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [private] content-length: ['0'] - date: ['Mon, 22 Jan 2018 20:01:00 GMT'] + date: ['Fri, 02 Feb 2018 22:32:31 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2169,19 +2261,20 @@ interactions: CommandName: [network dns record-set ptr remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"d07a54df-324b-4714-952f-c18416c35914","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"9ffa7e5d-fb5d-4eb3-aa64-b38a8347eb0f","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['422'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:01:00 GMT'] - etag: [d07a54df-324b-4714-952f-c18416c35914] + date: ['Fri, 02 Feb 2018 22:32:32 GMT'] + etag: [9ffa7e5d-fb5d-4eb3-aa64-b38a8347eb0f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2200,17 +2293,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [private] content-length: ['0'] - date: ['Mon, 22 Jan 2018 20:01:01 GMT'] + date: ['Fri, 02 Feb 2018 22:32:33 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2226,19 +2320,20 @@ interactions: CommandName: [network dns record-set srv remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"bf124308-13f6-4c37-8ffb-776abe17989d","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"1f8c372d-7fe4-43cf-9c18-1e4b06ea92bc","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] content-length: ['457'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:01:02 GMT'] - etag: [bf124308-13f6-4c37-8ffb-776abe17989d] + date: ['Fri, 02 Feb 2018 22:32:34 GMT'] + etag: [1f8c372d-7fe4-43cf-9c18-1e4b06ea92bc] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2257,17 +2352,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [private] content-length: ['0'] - date: ['Mon, 22 Jan 2018 20:01:02 GMT'] + date: ['Fri, 02 Feb 2018 22:32:34 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2283,26 +2379,27 @@ interactions: CommandName: [network dns record-set txt remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f85ef000-0bac-414c-bf26-35865b017dd3","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"408033b7-c3a8-4aaf-b315-4844d35e09bb","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] content-length: ['420'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:01:03 GMT'] - etag: [f85ef000-0bac-414c-bf26-35865b017dd3] + date: ['Fri, 02 Feb 2018 22:32:35 GMT'] + etag: [408033b7-c3a8-4aaf-b315-4844d35e09bb] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2314,17 +2411,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [private] content-length: ['0'] - date: ['Mon, 22 Jan 2018 20:01:04 GMT'] + date: ['Fri, 02 Feb 2018 22:32:37 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2340,19 +2438,20 @@ interactions: CommandName: [network dns record-set a show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"979c6e42-20be-49f6-9240-a7a4580ae741","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"f2503c7d-e73d-478f-86df-64b343bc43ab","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:01:05 GMT'] - etag: [979c6e42-20be-49f6-9240-a7a4580ae741] + date: ['Fri, 02 Feb 2018 22:32:37 GMT'] + etag: [f2503c7d-e73d-478f-86df-64b343bc43ab] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2370,26 +2469,27 @@ interactions: CommandName: [network dns record-set a remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"979c6e42-20be-49f6-9240-a7a4580ae741","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: !!python/unicode '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"f2503c7d-e73d-478f-86df-64b343bc43ab","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:01:06 GMT'] - etag: [979c6e42-20be-49f6-9240-a7a4580ae741] + date: ['Fri, 02 Feb 2018 22:32:37 GMT'] + etag: [f2503c7d-e73d-478f-86df-64b343bc43ab] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2401,17 +2501,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [private] content-length: ['0'] - date: ['Mon, 22 Jan 2018 20:01:07 GMT'] + date: ['Fri, 02 Feb 2018 22:32:39 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2427,19 +2528,21 @@ interactions: CommandName: [network dns record-set a show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does - not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} + body: {string: !!python/unicode '{"code":"NotFound","message":"The resource record + ''myrsa'' does not exist in resource group ''cli_test_dns000001'' of subscription + ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} headers: cache-control: [private] content-length: ['226'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:01:08 GMT'] + date: ['Fri, 02 Feb 2018 22:32:39 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2456,16 +2559,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [private] - date: ['Mon, 22 Jan 2018 20:01:09 GMT'] + date: ['Fri, 02 Feb 2018 22:32:40 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2481,19 +2585,21 @@ interactions: CommandName: [network dns record-set a show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does - not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} + body: {string: !!python/unicode '{"code":"NotFound","message":"The resource record + ''myrsa'' does not exist in resource group ''cli_test_dns000001'' of subscription + ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'} headers: cache-control: [private] content-length: ['226'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:01:09 GMT'] + date: ['Fri, 02 Feb 2018 22:32:40 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2510,19 +2616,20 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636522480711358141e7db8900?api-version=2017-09-01'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636532075620652302dabde6d8?api-version=2017-09-01'] cache-control: [private] content-length: ['0'] - date: ['Mon, 22 Jan 2018 20:01:11 GMT'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone636522480711358141e7db8900?api-version=2017-09-01'] + date: ['Fri, 02 Feb 2018 22:32:42 GMT'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone636532075620652302dabde6d8?api-version=2017-09-01'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2538,18 +2645,19 @@ interactions: CommandName: [network dns zone delete] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 dnsmanagementclient/1.2.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636522480711358141e7db8900?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636532075620652302dabde6d8?api-version=2017-09-01 response: - body: {string: '{"status":"Succeeded"}'} + body: {string: !!python/unicode '{"status":"Succeeded"}'} headers: cache-control: [private] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Mon, 22 Jan 2018 20:01:15 GMT'] + date: ['Fri, 02 Feb 2018 22:32:45 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2568,22 +2676,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.25 - msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.26] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 22 Jan 2018 20:01:16 GMT'] + date: ['Fri, 02 Feb 2018 22:32:47 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TTTI3VzdOT0szU1JZRlo3VlhMTTZDQkNaWUpQS0Q2VXw0Mzc5MDMwRjc3QTAxQkRELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TSEtOSDRPR0U1NFFGVE9KWkNQNzZQWkZXNk8yWEhTSnwzMzdGQThDOEIwMjdEQjFELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1185'] + x-ms-ratelimit-remaining-subscription-writes: ['1192'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route.yaml index d270eeefdcb..a48c02587f1 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route.yaml +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus", "tags": {"use": "az-test"}}' + body: !!python/unicode '{"location": "westus", "tags": {"use": "az-test"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -8,23 +8,23 @@ interactions: Connection: [keep-alive] Content-Length: ['50'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001","name":"cli_test_express_route000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001","name":"cli_test_express_route000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:22:31 GMT'] + date: ['Fri, 02 Feb 2018 22:31:21 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -34,14 +34,15 @@ interactions: CommandName: [network express-route list-service-providers] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/expressRouteServiceProviders?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"AT&T Netbond\ - \ Test\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/expressRouteServiceProviders/\"\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"AT&T Netbond Test\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/expressRouteServiceProviders/\"\ ,\r\n \"type\": \"Microsoft.Network/expressRouteServiceProviders\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"peeringLocations\": [\r\n \"Area51\",\r\n \ @@ -256,7 +257,7 @@ interactions: cache-control: [no-cache] content-length: ['14421'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:22:35 GMT'] + date: ['Fri, 02 Feb 2018 22:31:25 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -272,29 +273,29 @@ interactions: CommandName: [network express-route create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001","name":"cli_test_express_route000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001","name":"cli_test_express_route000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:22:36 GMT'] + date: ['Fri, 02 Feb 2018 22:31:26 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"location": "westus", "sku": {"tier": "Premium", "family": "MeteredData", - "name": "Premium_MeteredData"}, "properties": {"serviceProviderProperties": - {"peeringLocation": "Area51", "bandwidthInMbps": 50, "serviceProviderName": - "Microsoft ER Test"}}}' + body: !!python/unicode '{"sku": {"tier": "Premium", "name": "Premium_MeteredData", + "family": "MeteredData"}, "location": "westus", "properties": {"serviceProviderProperties": + {"serviceProviderName": "Microsoft ER Test", "bandwidthInMbps": 50, "peeringLocation": + "Area51"}}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -302,17 +303,19 @@ interactions: Connection: [keep-alive] Content-Length: ['249'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"4a7c33fe-525d-41f8-aa7e-153a640243e4\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ + ,\r\n \"etag\": \"W/\\\"6bc2e569-8914-472c-97d2-fbe7d641355a\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"resourceGuid\": \"a2d72f94-342b-4bb6-a543-3e5934c42839\",\r\n \ + ,\r\n \"resourceGuid\": \"aeab8973-e6c2-4e13-b84a-fa590c458f1d\",\r\n \ \ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\"\ : {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\"\ : \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\ @@ -322,16 +325,16 @@ interactions: ,\r\n \"tier\": \"Premium\",\r\n \"family\": \"MeteredData\"\r\n }\r\ \n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fee54788-ce18-4947-bb51-1b8c58e37e04?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0659c90e-3b12-456d-a7d6-f562bc0dda9c?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['1013'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:22:37 GMT'] + date: ['Fri, 02 Feb 2018 22:31:27 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: null @@ -341,18 +344,47 @@ interactions: CommandName: [network express-route create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0659c90e-3b12-456d-a7d6-f562bc0dda9c?api-version=2017-11-01 + response: + body: {string: !!python/unicode "{\r\n \"status\": \"InProgress\"\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['30'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 02 Feb 2018 22:31: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] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network express-route create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fee54788-ce18-4947-bb51-1b8c58e37e04?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0659c90e-3b12-456d-a7d6-f562bc0dda9c?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"InProgress\"\r\n}"} headers: cache-control: [no-cache] content-length: ['30'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:22:47 GMT'] + date: ['Fri, 02 Feb 2018 22:31:49 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -368,18 +400,19 @@ interactions: CommandName: [network express-route create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fee54788-ce18-4947-bb51-1b8c58e37e04?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0659c90e-3b12-456d-a7d6-f562bc0dda9c?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:22:58 GMT'] + date: ['Fri, 02 Feb 2018 22:31:58 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -395,22 +428,24 @@ interactions: CommandName: [network express-route create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"6b30e8a6-a41e-40a9-b0d3-bdfeb2f00bf2\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ + ,\r\n \"etag\": \"W/\\\"5332da2b-5d5d-4bc3-b915-ec83d8298877\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"a2d72f94-342b-4bb6-a543-3e5934c42839\",\r\n \ + ,\r\n \"resourceGuid\": \"aeab8973-e6c2-4e13-b84a-fa590c458f1d\",\r\n \ \ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\"\ : {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\"\ : \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\ : \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\"\ - : \"\",\r\n \"serviceKey\": \"06f854d7-97df-4711-b4ab-c0c272586ee2\",\r\ + : \"\",\r\n \"serviceKey\": \"f8ecf287-de54-441c-b3d5-cc49fcfdbf6e\",\r\ \n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n\ \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"\ Premium\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}"} @@ -418,7 +453,7 @@ interactions: cache-control: [no-cache] content-length: ['1044'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:22:59 GMT'] + date: ['Fri, 02 Feb 2018 22:31:59 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -434,49 +469,35 @@ interactions: CommandName: [network express-route list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/expressRouteCircuits?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"circuit1\",\r\ - \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"6b30e8a6-a41e-40a9-b0d3-bdfeb2f00bf2\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ + ,\r\n \"etag\": \"W/\\\"5332da2b-5d5d-4bc3-b915-ec83d8298877\\\"\",\r\ \n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\ location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"a2d72f94-342b-4bb6-a543-3e5934c42839\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"aeab8973-e6c2-4e13-b84a-fa590c458f1d\"\ ,\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \ \ \"serviceProviderProperties\": {\r\n \"serviceProviderName\"\ : \"Microsoft ER Test\",\r\n \"peeringLocation\": \"Area51\",\r\n\ \ \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\ : \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"\ - gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"06f854d7-97df-4711-b4ab-c0c272586ee2\"\ + gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"f8ecf287-de54-441c-b3d5-cc49fcfdbf6e\"\ ,\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n\ \ },\r\n \"sku\": {\r\n \"name\": \"Premium_MeteredData\"\ ,\r\n \"tier\": \"Premium\",\r\n \"family\": \"MeteredData\"\ - \r\n }\r\n },\r\n {\r\n \"name\": \"circuit1\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peeringvntxgevo4npmlm5yrtxh2d5utfvj4dbqsxxwqhcp/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"d798cae3-eff5-478e-8221-f7cf96901a33\\\"\",\r\ - \n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\ - location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"81b903b0-5e29-44e8-a665-cacff2104afd\"\ - ,\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \ - \ \"serviceProviderProperties\": {\r\n \"serviceProviderName\"\ - : \"Microsoft ER Test\",\r\n \"peeringLocation\": \"Area51\",\r\n\ - \ \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\ - : \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"\ - gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"66662fd9-26d6-4523-9093-54c258c192b6\"\ - ,\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n\ - \ },\r\n \"sku\": {\r\n \"name\": \"Premium_MeteredData\"\ - ,\r\n \"tier\": \"Premium\",\r\n \"family\": \"MeteredData\"\ - \r\n }\r\n },\r\n {\r\n \"name\": \"erc548138\",\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg09908/providers/Microsoft.Network/expressRouteCircuits/erc548138\"\ - ,\r\n \"etag\": \"W/\\\"fa0b13db-1bae-46c8-9dbf-e225cfa7d02a\\\"\",\r\ + \r\n }\r\n },\r\n {\r\n \"name\": \"erc265002\",\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg17653/providers/Microsoft.Network/expressRouteCircuits/erc265002\"\ + ,\r\n \"etag\": \"W/\\\"bfe226dc-0e5c-4c8e-ba25-89c8f021ed51\\\"\",\r\ \n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\ location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\ \r\n },\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Failed\",\r\n \"resourceGuid\": \"96becaca-6de8-4c61-a1ef-c4c2ebd6ceb7\"\ + \ \"Failed\",\r\n \"resourceGuid\": \"4d24728b-9cba-425f-ab05-b1c41d32fc1a\"\ ,\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \ \ \"serviceProviderProperties\": {\r\n \"serviceProviderName\"\ : \"Equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \ @@ -484,14 +505,14 @@ interactions: : \"Disabled\",\r\n \"allowClassicOperations\": false,\r\n \"\ serviceKey\": \"00000000-0000-0000-0000-000000000000\",\r\n \"serviceProviderProvisioningState\"\ : \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\":\ - \ \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \"\ - family\": \"MeteredData\"\r\n }\r\n },\r\n {\r\n \"name\"\ - : \"erc509328\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg46793/providers/Microsoft.Network/expressRouteCircuits/erc509328\"\ - ,\r\n \"etag\": \"W/\\\"75474e30-db76-40ee-a514-ebeef711b579\\\"\",\r\ + \ \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \ + \ \"family\": \"MeteredData\"\r\n }\r\n },\r\n {\r\n \"name\"\ + : \"erc251027\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg43438/providers/Microsoft.Network/expressRouteCircuits/erc251027\"\ + ,\r\n \"etag\": \"W/\\\"b1b7a183-1173-4d89-8525-f8738efcac14\\\"\",\r\ \n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\ location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\ \r\n },\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Failed\",\r\n \"resourceGuid\": \"2500d1d1-5fe0-4aea-8a69-f4a5df017342\"\ + \ \"Failed\",\r\n \"resourceGuid\": \"acaafe06-d218-42d8-b5b8-6e13667c128a\"\ ,\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \ \ \"serviceProviderProperties\": {\r\n \"serviceProviderName\"\ : \"Equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \ @@ -501,12 +522,12 @@ interactions: : \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\":\ \ \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \ \ \"family\": \"MeteredData\"\r\n }\r\n },\r\n {\r\n \"name\"\ - : \"erc82205f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg64706/providers/Microsoft.Network/expressRouteCircuits/erc82205f\"\ - ,\r\n \"etag\": \"W/\\\"92cd54fa-21d2-4296-946c-d0e79fcbb1b7\\\"\",\r\ + : \"erc189041\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg60700/providers/Microsoft.Network/expressRouteCircuits/erc189041\"\ + ,\r\n \"etag\": \"W/\\\"23f63625-631b-49f0-a2f8-a745460098f7\\\"\",\r\ \n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\ location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\ \r\n },\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Failed\",\r\n \"resourceGuid\": \"354d617d-149e-496d-9c18-6bedbd6f9e19\"\ + \ \"Failed\",\r\n \"resourceGuid\": \"8d3177e7-3da4-44d7-a90b-15e76f8bad51\"\ ,\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \ \ \"serviceProviderProperties\": {\r\n \"serviceProviderName\"\ : \"Equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \ @@ -514,14 +535,14 @@ interactions: : \"Disabled\",\r\n \"allowClassicOperations\": false,\r\n \"\ serviceKey\": \"00000000-0000-0000-0000-000000000000\",\r\n \"serviceProviderProvisioningState\"\ : \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\":\ - \ \"Standard_MeteredData\",\r\n \"tier\": \"Standard\",\r\n \ - \ \"family\": \"MeteredData\"\r\n }\r\n },\r\n {\r\n \"name\"\ - : \"erc23667b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg77456/providers/Microsoft.Network/expressRouteCircuits/erc23667b\"\ - ,\r\n \"etag\": \"W/\\\"3ca1991f-dae6-463e-a358-53a93cb35a13\\\"\",\r\ + \ \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \"\ + family\": \"MeteredData\"\r\n }\r\n },\r\n {\r\n \"name\"\ + : \"erc92269d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg75375/providers/Microsoft.Network/expressRouteCircuits/erc92269d\"\ + ,\r\n \"etag\": \"W/\\\"72e3a392-f1cc-4913-a5a7-0ad3f9007089\\\"\",\r\ \n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\ location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\ \r\n },\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Failed\",\r\n \"resourceGuid\": \"73ebbd20-f950-4bc0-a0d1-b3763a7c2554\"\ + \ \"Failed\",\r\n \"resourceGuid\": \"b54df58b-fdd1-4d77-99bc-3cdbb83c7e84\"\ ,\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \ \ \"serviceProviderProperties\": {\r\n \"serviceProviderName\"\ : \"Equinix\",\r\n \"peeringLocation\": \"Silicon Valley\",\r\n \ @@ -533,9 +554,9 @@ interactions: family\": \"MeteredData\"\r\n }\r\n }\r\n ]\r\n}"} headers: cache-control: [no-cache] - content-length: ['6772'] + content-length: ['5613'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:23:05 GMT'] + date: ['Fri, 02 Feb 2018 22:32:03 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -551,24 +572,25 @@ interactions: CommandName: [network express-route list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"circuit1\",\r\ - \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"6b30e8a6-a41e-40a9-b0d3-bdfeb2f00bf2\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ + ,\r\n \"etag\": \"W/\\\"5332da2b-5d5d-4bc3-b915-ec83d8298877\\\"\",\r\ \n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\ location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"a2d72f94-342b-4bb6-a543-3e5934c42839\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"aeab8973-e6c2-4e13-b84a-fa590c458f1d\"\ ,\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \ \ \"serviceProviderProperties\": {\r\n \"serviceProviderName\"\ : \"Microsoft ER Test\",\r\n \"peeringLocation\": \"Area51\",\r\n\ \ \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\ : \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"\ - gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"06f854d7-97df-4711-b4ab-c0c272586ee2\"\ + gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"f8ecf287-de54-441c-b3d5-cc49fcfdbf6e\"\ ,\r\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n\ \ },\r\n \"sku\": {\r\n \"name\": \"Premium_MeteredData\"\ ,\r\n \"tier\": \"Premium\",\r\n \"family\": \"MeteredData\"\ @@ -577,7 +599,7 @@ interactions: cache-control: [no-cache] content-length: ['1181'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:23:07 GMT'] + date: ['Fri, 02 Feb 2018 22:32:05 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -593,22 +615,24 @@ interactions: CommandName: [network express-route show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"6b30e8a6-a41e-40a9-b0d3-bdfeb2f00bf2\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ + ,\r\n \"etag\": \"W/\\\"5332da2b-5d5d-4bc3-b915-ec83d8298877\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"a2d72f94-342b-4bb6-a543-3e5934c42839\",\r\n \ + ,\r\n \"resourceGuid\": \"aeab8973-e6c2-4e13-b84a-fa590c458f1d\",\r\n \ \ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\"\ : {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\"\ : \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\ : \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\"\ - : \"\",\r\n \"serviceKey\": \"06f854d7-97df-4711-b4ab-c0c272586ee2\",\r\ + : \"\",\r\n \"serviceKey\": \"f8ecf287-de54-441c-b3d5-cc49fcfdbf6e\",\r\ \n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n\ \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"\ Premium\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}"} @@ -616,7 +640,7 @@ interactions: cache-control: [no-cache] content-length: ['1044'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:23:08 GMT'] + date: ['Fri, 02 Feb 2018 22:32:06 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -632,19 +656,20 @@ interactions: CommandName: [network express-route get-stats] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/stats?api-version=2017-11-01 response: - body: {string: "{\r\n \"primaryBytesIn\": 0,\r\n \"primaryBytesOut\": 0,\r\n\ - \ \"secondaryBytesIn\": 0,\r\n \"secondaryBytesOut\": 0\r\n}"} + body: {string: !!python/unicode "{\r\n \"primaryBytesIn\": 0,\r\n \"primaryBytesOut\"\ + : 0,\r\n \"secondaryBytesIn\": 0,\r\n \"secondaryBytesOut\": 0\r\n}"} headers: cache-control: [no-cache] content-length: ['105'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:23:09 GMT'] + date: ['Fri, 02 Feb 2018 22:32:07 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -660,22 +685,24 @@ interactions: CommandName: [network express-route update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"6b30e8a6-a41e-40a9-b0d3-bdfeb2f00bf2\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ + ,\r\n \"etag\": \"W/\\\"5332da2b-5d5d-4bc3-b915-ec83d8298877\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"a2d72f94-342b-4bb6-a543-3e5934c42839\",\r\n \ + ,\r\n \"resourceGuid\": \"aeab8973-e6c2-4e13-b84a-fa590c458f1d\",\r\n \ \ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\"\ : {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\"\ : \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\ : \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\"\ - : \"\",\r\n \"serviceKey\": \"06f854d7-97df-4711-b4ab-c0c272586ee2\",\r\ + : \"\",\r\n \"serviceKey\": \"f8ecf287-de54-441c-b3d5-cc49fcfdbf6e\",\r\ \n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n\ \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"\ Premium\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}"} @@ -683,7 +710,7 @@ interactions: cache-control: [no-cache] content-length: ['1044'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:23:10 GMT'] + date: ['Fri, 02 Feb 2018 22:32:07 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -692,13 +719,14 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"location": "westus", "tags": {"test": "Test"}, "sku": {"tier": "Standard", - "family": "MeteredData", "name": "Premium_MeteredData"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1", - "properties": {"authorizations": [], "gatewayManagerEtag": "", "serviceProviderProperties": - {"peeringLocation": "Area51", "bandwidthInMbps": 50, "serviceProviderName": - "Microsoft ER Test"}, "provisioningState": "Succeeded", "serviceKey": "06f854d7-97df-4711-b4ab-c0c272586ee2", - "serviceProviderProvisioningState": "NotProvisioned", "circuitProvisioningState": - "Enabled", "peerings": [], "allowClassicOperations": false}}''' + body: !!python/unicode '{"sku": {"tier": "Standard", "name": "Premium_MeteredData", + "family": "MeteredData"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1", + "location": "westus", "properties": {"allowClassicOperations": false, "serviceKey": + "f8ecf287-de54-441c-b3d5-cc49fcfdbf6e", "serviceProviderProvisioningState": + "NotProvisioned", "circuitProvisioningState": "Enabled", "authorizations": [], + "gatewayManagerEtag": "", "peerings": [], "serviceProviderProperties": {"serviceProviderName": + "Microsoft ER Test", "bandwidthInMbps": 50, "peeringLocation": "Area51"}, "provisioningState": + "Succeeded"}, "tags": {"test": "Test"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -706,66 +734,41 @@ interactions: Connection: [keep-alive] Content-Length: ['764'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"bd252944-7856-442c-89d5-869566cf3676\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ + ,\r\n \"etag\": \"W/\\\"c9d1b580-ea85-47b8-ac7c-dbcdd6ec0f66\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {\r\n \"test\": \"Test\"\r\n },\r\n \"properties\"\ : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\ - a2d72f94-342b-4bb6-a543-3e5934c42839\",\r\n \"peerings\": [],\r\n \"\ + aeab8973-e6c2-4e13-b84a-fa590c458f1d\",\r\n \"peerings\": [],\r\n \"\ authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"\ serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\"\ : \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\ : \"Disabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\"\ - : \"\",\r\n \"serviceKey\": \"06f854d7-97df-4711-b4ab-c0c272586ee2\",\r\ + : \"\",\r\n \"serviceKey\": \"f8ecf287-de54-441c-b3d5-cc49fcfdbf6e\",\r\ \n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n\ \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"\ Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f85f2bfc-cd68-429f-ba6e-7418e6432e5a?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0bfaea91-1d1f-4668-91e4-4fe57c7b7c8a?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['1084'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:23:11 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-ms-ratelimit-remaining-subscription-writes: ['1196'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network express-route update] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f85f2bfc-cd68-429f-ba6e-7418e6432e5a?api-version=2017-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, 19 Dec 2017 04:23:22 GMT'] + date: ['Fri, 02 Feb 2018 22:32: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-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -775,18 +778,19 @@ interactions: CommandName: [network express-route update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f85f2bfc-cd68-429f-ba6e-7418e6432e5a?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0bfaea91-1d1f-4668-91e4-4fe57c7b7c8a?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:23:32 GMT'] + date: ['Fri, 02 Feb 2018 22:32:19 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -802,23 +806,25 @@ interactions: CommandName: [network express-route update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"9b1174b4-6d84-474a-b161-47c6dd986300\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ + ,\r\n \"etag\": \"W/\\\"7b756c05-6aeb-4e36-83d9-db6a82365de6\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {\r\n \"test\": \"Test\"\r\n },\r\n \"properties\"\ : {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\ - \ \"a2d72f94-342b-4bb6-a543-3e5934c42839\",\r\n \"peerings\": [],\r\n \ + \ \"aeab8973-e6c2-4e13-b84a-fa590c458f1d\",\r\n \"peerings\": [],\r\n \ \ \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \ \ \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\"\ : \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\ : \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\"\ - : \"\",\r\n \"serviceKey\": \"06f854d7-97df-4711-b4ab-c0c272586ee2\",\r\ + : \"\",\r\n \"serviceKey\": \"f8ecf287-de54-441c-b3d5-cc49fcfdbf6e\",\r\ \n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n\ \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"\ Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}"} @@ -826,7 +832,7 @@ interactions: cache-control: [no-cache] content-length: ['1084'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:23:33 GMT'] + date: ['Fri, 02 Feb 2018 22:32:19 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -835,7 +841,7 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{}' + body: !!python/unicode '{}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -843,28 +849,29 @@ interactions: Connection: [keep-alive] Content-Length: ['2'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\ - ,\r\n \"etag\": \"W/\\\"5a0ac99f-7ef4-41c8-8bcb-1323287e8e0a\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\ + ,\r\n \"etag\": \"W/\\\"8a3a9f88-c2f4-4642-92a8-23261ce5dec4\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ - authorizationKey\": \"0e345feb-d92a-4c35-b099-ad8d553dce55\",\r\n \"authorizationUseStatus\"\ + authorizationKey\": \"c7eaa3ac-9950-4d3c-a085-a81d704b0925\",\r\n \"authorizationUseStatus\"\ : \"Available\"\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d308d228-e69d-45b9-b068-8b322c2ba67d?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9a8b1410-5d11-4c88-a400-68ab7b522936?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['485'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:23:34 GMT'] + date: ['Fri, 02 Feb 2018 22:32:22 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -874,18 +881,19 @@ interactions: CommandName: [network express-route auth create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d308d228-e69d-45b9-b068-8b322c2ba67d?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9a8b1410-5d11-4c88-a400-68ab7b522936?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:23:45 GMT'] + date: ['Fri, 02 Feb 2018 22:32:32 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -901,22 +909,23 @@ interactions: CommandName: [network express-route auth create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\ - ,\r\n \"etag\": \"W/\\\"0d62c52a-d716-4eba-852e-fe7aa5e7f4de\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\ + ,\r\n \"etag\": \"W/\\\"4f04589e-8c83-47b4-a6fd-387bbfee6993\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - authorizationKey\": \"0e345feb-d92a-4c35-b099-ad8d553dce55\",\r\n \"authorizationUseStatus\"\ + authorizationKey\": \"c7eaa3ac-9950-4d3c-a085-a81d704b0925\",\r\n \"authorizationUseStatus\"\ : \"Available\"\r\n }\r\n}"} headers: cache-control: [no-cache] content-length: ['486'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:23:45 GMT'] + date: ['Fri, 02 Feb 2018 22:32:33 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -932,24 +941,25 @@ interactions: CommandName: [network express-route auth list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"auth1\",\r\n\ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\ - ,\r\n \"etag\": \"W/\\\"0d62c52a-d716-4eba-852e-fe7aa5e7f4de\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\ + ,\r\n \"etag\": \"W/\\\"4f04589e-8c83-47b4-a6fd-387bbfee6993\\\"\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"authorizationKey\": \"0e345feb-d92a-4c35-b099-ad8d553dce55\"\ + ,\r\n \"authorizationKey\": \"c7eaa3ac-9950-4d3c-a085-a81d704b0925\"\ ,\r\n \"authorizationUseStatus\": \"Available\"\r\n }\r\n }\r\ \n ]\r\n}"} headers: cache-control: [no-cache] content-length: ['551'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:23:46 GMT'] + date: ['Fri, 02 Feb 2018 22:32:35 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -965,22 +975,23 @@ interactions: CommandName: [network express-route auth show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\ - ,\r\n \"etag\": \"W/\\\"0d62c52a-d716-4eba-852e-fe7aa5e7f4de\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\ + ,\r\n \"etag\": \"W/\\\"4f04589e-8c83-47b4-a6fd-387bbfee6993\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - authorizationKey\": \"0e345feb-d92a-4c35-b099-ad8d553dce55\",\r\n \"authorizationUseStatus\"\ + authorizationKey\": \"c7eaa3ac-9950-4d3c-a085-a81d704b0925\",\r\n \"authorizationUseStatus\"\ : \"Available\"\r\n }\r\n}"} headers: cache-control: [no-cache] content-length: ['486'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:23:47 GMT'] + date: ['Fri, 02 Feb 2018 22:32:36 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -997,24 +1008,25 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-11-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/84efc025-3ed3-4520-a6ae-ce7f2a8f3ea3?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b3c8a55-7612-4e72-83b4-8ea72f920a46?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 04:23:48 GMT'] + date: ['Fri, 02 Feb 2018 22:32:36 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/84efc025-3ed3-4520-a6ae-ce7f2a8f3ea3?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4b3c8a55-7612-4e72-83b4-8ea72f920a46?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1193'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -1024,72 +1036,19 @@ interactions: CommandName: [network express-route auth delete] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/84efc025-3ed3-4520-a6ae-ce7f2a8f3ea3?api-version=2017-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, 19 Dec 2017 04:23: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] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network express-route auth delete] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/84efc025-3ed3-4520-a6ae-ce7f2a8f3ea3?api-version=2017-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, 19 Dec 2017 04:24: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] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network express-route auth delete] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/84efc025-3ed3-4520-a6ae-ce7f2a8f3ea3?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b3c8a55-7612-4e72-83b4-8ea72f920a46?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:24:19 GMT'] + date: ['Fri, 02 Feb 2018 22:32:46 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1105,18 +1064,19 @@ interactions: CommandName: [network express-route auth list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": []\r\n}"} + body: {string: !!python/unicode "{\r\n \"value\": []\r\n}"} headers: cache-control: [no-cache] content-length: ['19'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:24:20 GMT'] + date: ['Fri, 02 Feb 2018 22:32:48 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1125,9 +1085,9 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"properties": {"peeringType": "AzurePublicPeering", "primaryPeerAddressPrefix": - "100.0.0.0/30", "vlanId": 100, "peerASN": 10000, "secondaryPeerAddressPrefix": - "101.0.0.0/30"}}' + body: !!python/unicode '{"properties": {"secondaryPeerAddressPrefix": "101.0.0.0/30", + "peeringType": "AzurePublicPeering", "vlanId": 100, "primaryPeerAddressPrefix": + "100.0.0.0/30", "peerASN": 10000}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1135,30 +1095,32 @@ interactions: Connection: [keep-alive] Content-Length: ['176'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"db4dad49-ff2c-4464-a045-c15a5682a687\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"AzurePublicPeering\",\r\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ + ,\r\n \"etag\": \"W/\\\"8edc7e30-3546-44d9-974a-346193958fa3\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\": 0,\r\n \"peerASN\"\ : 10000,\r\n \"primaryPeerAddressPrefix\": \"100.0.0.0/30\",\r\n \"\ secondaryPeerAddressPrefix\": \"101.0.0.0/30\",\r\n \"state\": \"Disabled\"\ ,\r\n \"vlanId\": 100,\r\n \"lastModifiedBy\": \"\"\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/67857e00-5ba1-4306-942a-4cbac762137a?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/543d08d1-1ac7-4bc5-b407-9bbd1507fae0?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['654'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:24:21 GMT'] + date: ['Fri, 02 Feb 2018 22:32:49 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 201, message: Created} - request: body: null @@ -1168,18 +1130,19 @@ interactions: CommandName: [network express-route peering create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/67857e00-5ba1-4306-942a-4cbac762137a?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/543d08d1-1ac7-4bc5-b407-9bbd1507fae0?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] - content-length: ['30'] + content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:24:32 GMT'] + date: ['Fri, 02 Feb 2018 22:32:59 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1195,18 +1158,28 @@ interactions: CommandName: [network express-route peering create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/67857e00-5ba1-4306-942a-4cbac762137a?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"name\": \"AzurePublicPeering\",\r\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ + ,\r\n \"etag\": \"W/\\\"155b1fc7-225d-4609-b13d-550ea17fae6b\\\"\",\r\n \ + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ + peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\": 12076,\r\n \ + \ \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\": \"100.0.0.0/30\"\ + ,\r\n \"secondaryPeerAddressPrefix\": \"101.0.0.0/30\",\r\n \"primaryAzurePort\"\ + : \"A51-TEST-06GMR-CIS-1-PRI-A\",\r\n \"secondaryAzurePort\": \"A51-TEST-06GMR-CIS-2-SEC-A\"\ + ,\r\n \"state\": \"Enabled\",\r\n \"vlanId\": 100,\r\n \"gatewayManagerEtag\"\ + : \"\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n}"} headers: cache-control: [no-cache] - content-length: ['30'] + content-length: ['809'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:24:43 GMT'] + date: ['Fri, 02 Feb 2018 22:33:00 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1215,32 +1188,44 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: null + body: !!python/unicode '{"properties": {"secondaryPeerAddressPrefix": "103.0.0.0/30", + "peeringType": "AzurePrivatePeering", "vlanId": 101, "primaryPeerAddressPrefix": + "102.0.0.0/30", "peerASN": 10001}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [network express-route peering create] Connection: [keep-alive] + Content-Length: ['177'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/67857e00-5ba1-4306-942a-4cbac762137a?api-version=2017-11-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"name\": \"AzurePrivatePeering\",\r\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\ + ,\r\n \"etag\": \"W/\\\"bde671c5-12b0-4ef6-8801-e8eaed1b1b3c\\\"\",\r\n \ + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ + peeringType\": \"AzurePrivatePeering\",\r\n \"azureASN\": 0,\r\n \"\ + peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\ + \n \"secondaryPeerAddressPrefix\": \"103.0.0.0/30\",\r\n \"state\":\ + \ \"Disabled\",\r\n \"vlanId\": 101,\r\n \"lastModifiedBy\": \"\"\r\n\ + \ }\r\n}"} headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8c0eea81-8764-4b61-80a8-b92dfc75dbd8?api-version=2017-11-01'] cache-control: [no-cache] - content-length: ['29'] + content-length: ['657'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:24:53 GMT'] + date: ['Fri, 02 Feb 2018 22:33:02 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-writes: ['1198'] + status: {code: 201, message: Created} - request: body: null headers: @@ -1249,26 +1234,19 @@ interactions: CommandName: [network express-route peering create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8c0eea81-8764-4b61-80a8-b92dfc75dbd8?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"76b8c097-3bd4-4bdb-9393-348f2361c4c0\\\"\",\r\n \ - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\": 12076,\r\n \ - \ \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\": \"100.0.0.0/30\"\ - ,\r\n \"secondaryPeerAddressPrefix\": \"101.0.0.0/30\",\r\n \"primaryAzurePort\"\ - : \"A51-TEST-06GMR-CIS-1-PRI-A\",\r\n \"secondaryAzurePort\": \"A51-TEST-06GMR-CIS-2-SEC-A\"\ - ,\r\n \"state\": \"Enabled\",\r\n \"vlanId\": 100,\r\n \"gatewayManagerEtag\"\ - : \"\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"InProgress\"\r\n}"} headers: cache-control: [no-cache] - content-length: ['809'] + content-length: ['30'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:24:54 GMT'] + date: ['Fri, 02 Feb 2018 22:33:13 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1277,42 +1255,33 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"properties": {"peeringType": "AzurePrivatePeering", "primaryPeerAddressPrefix": - "102.0.0.0/30", "vlanId": 101, "peerASN": 10001, "secondaryPeerAddressPrefix": - "103.0.0.0/30"}}' + body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [network express-route peering create] Connection: [keep-alive] - Content-Length: ['177'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2017-11-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8c0eea81-8764-4b61-80a8-b92dfc75dbd8?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\ - ,\r\n \"etag\": \"W/\\\"15f08c59-011a-4440-a5cf-01d2eea2bf9b\\\"\",\r\n \ - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ - peeringType\": \"AzurePrivatePeering\",\r\n \"azureASN\": 0,\r\n \"\ - peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\ - \n \"secondaryPeerAddressPrefix\": \"103.0.0.0/30\",\r\n \"state\":\ - \ \"Disabled\",\r\n \"vlanId\": 101,\r\n \"lastModifiedBy\": \"\"\r\n\ - \ }\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"InProgress\"\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d41d635-b3ff-4fc1-9161-c41e649e6606?api-version=2017-11-01'] cache-control: [no-cache] - content-length: ['657'] + content-length: ['30'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:24:55 GMT'] + date: ['Fri, 02 Feb 2018 22:33:23 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] - status: {code: 201, message: Created} + transfer-encoding: [chunked] + vary: [Accept-Encoding] + status: {code: 200, message: OK} - request: body: null headers: @@ -1321,18 +1290,19 @@ interactions: CommandName: [network express-route peering create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d41d635-b3ff-4fc1-9161-c41e649e6606?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8c0eea81-8764-4b61-80a8-b92dfc75dbd8?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"InProgress\"\r\n}"} headers: cache-control: [no-cache] content-length: ['30'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:25:05 GMT'] + date: ['Fri, 02 Feb 2018 22:33:33 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1348,18 +1318,19 @@ interactions: CommandName: [network express-route peering create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d41d635-b3ff-4fc1-9161-c41e649e6606?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8c0eea81-8764-4b61-80a8-b92dfc75dbd8?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:25:16 GMT'] + date: ['Fri, 02 Feb 2018 22:33:43 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1375,14 +1346,16 @@ interactions: CommandName: [network express-route peering create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\ - ,\r\n \"etag\": \"W/\\\"c1466797-e5e7-4975-b8ff-fd086a9fc8ff\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"AzurePrivatePeering\",\r\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\ + ,\r\n \"etag\": \"W/\\\"fc42666d-9354-49b3-ba8b-d0575ee6efd5\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ peeringType\": \"AzurePrivatePeering\",\r\n \"azureASN\": 12076,\r\n \ \ \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\"\ @@ -1394,7 +1367,7 @@ interactions: cache-control: [no-cache] content-length: ['812'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:25:16 GMT'] + date: ['Fri, 02 Feb 2018 22:33:44 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1403,10 +1376,10 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"properties": {"primaryPeerAddressPrefix": "104.0.0.0/30", "secondaryPeerAddressPrefix": - "105.0.0.0/30", "peeringType": "MicrosoftPeering", "vlanId": 103, "peerASN": - 10002, "microsoftPeeringConfig": {"routingRegistryName": "LEVEL3", "advertisedPublicPrefixes": - ["104.0.0.0/30"], "customerASN": 10000}}}' + body: !!python/unicode '{"properties": {"secondaryPeerAddressPrefix": "105.0.0.0/30", + "microsoftPeeringConfig": {"routingRegistryName": "LEVEL3", "advertisedPublicPrefixes": + ["104.0.0.0/30"], "customerASN": 10000}, "primaryPeerAddressPrefix": "104.0.0.0/30", + "peerASN": 10002, "vlanId": 103, "peeringType": "MicrosoftPeering"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1414,14 +1387,16 @@ interactions: Connection: [keep-alive] Content-Length: ['303'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\ - ,\r\n \"etag\": \"W/\\\"7d2bff50-fff4-438d-ba97-5cb6b37ffbcf\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\ + ,\r\n \"etag\": \"W/\\\"cbd14320-977a-4bb8-96e9-bf55e5b80fa9\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ peeringType\": \"MicrosoftPeering\",\r\n \"azureASN\": 0,\r\n \"peerASN\"\ : 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"\ @@ -1432,16 +1407,16 @@ interactions: \n \"customerASN\": 10000,\r\n \"legacyMode\": 0,\r\n \"routingRegistryName\"\ : \"LEVEL3\"\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/cb851247-60da-4cbd-9e83-10c7fcf8f967?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/519f16e7-59a2-403d-bbdc-2a15362cfab8?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['909'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:25:18 GMT'] + date: ['Fri, 02 Feb 2018 22:33:46 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1184'] + x-ms-ratelimit-remaining-subscription-writes: ['1193'] status: {code: 201, message: Created} - request: body: null @@ -1451,21 +1426,22 @@ interactions: CommandName: [network express-route peering create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb851247-60da-4cbd-9e83-10c7fcf8f967?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/519f16e7-59a2-403d-bbdc-2a15362cfab8?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\"\ - : \" InvalidSkuTypeForMicrosoftPeering\",\r\n \"message\": \" Invalid SkuType\ - \ Standard for creating Microsoft Peering.\",\r\n \"details\": []\r\n \ - \ }\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Failed\",\r\n \"error\"\ + : {\r\n \"code\": \"InvalidSkuTypeForMicrosoftPeering\",\r\n \"message\"\ + : \"Invalid SkuType Standard for creating Microsoft Peering.\",\r\n \"\ + details\": []\r\n }\r\n}"} headers: cache-control: [no-cache] - content-length: ['193'] + content-length: ['191'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:25:29 GMT'] + date: ['Fri, 02 Feb 2018 22:33:57 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1481,14 +1457,16 @@ interactions: CommandName: [network express-route peering show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\ - ,\r\n \"etag\": \"W/\\\"8a720e3c-b2a9-48b3-a1d9-e0ed833d6322\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\ + ,\r\n \"etag\": \"W/\\\"939433d5-fb92-4b6b-9274-ca8319c0ccf7\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"peeringType\"\ : \"MicrosoftPeering\",\r\n \"azureASN\": 0,\r\n \"peerASN\": 10002,\r\ \n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\"\ @@ -1502,7 +1480,7 @@ interactions: cache-control: [no-cache] content-length: ['907'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:25:30 GMT'] + date: ['Fri, 02 Feb 2018 22:33:58 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1519,20 +1497,21 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-11-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/06c47f4b-02cb-418d-b4f4-57a74487f375?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2f31af8-7dfd-42b4-b50d-5cffd4ee7c75?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 04:25:30 GMT'] + date: ['Fri, 02 Feb 2018 22:33:58 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/06c47f4b-02cb-418d-b4f4-57a74487f375?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/a2f31af8-7dfd-42b4-b50d-5cffd4ee7c75?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1546,18 +1525,19 @@ interactions: CommandName: [network express-route peering delete] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/06c47f4b-02cb-418d-b4f4-57a74487f375?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2f31af8-7dfd-42b4-b50d-5cffd4ee7c75?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:25:40 GMT'] + date: ['Fri, 02 Feb 2018 22:34:10 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1573,15 +1553,16 @@ interactions: CommandName: [network express-route peering list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"AzurePublicPeering\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"4ac85b09-f354-4d45-9acb-50c027c67325\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ + ,\r\n \"etag\": \"W/\\\"3f00a903-abbc-49e2-a1b6-7dc65ba0a8f0\\\"\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\"\ : 12076,\r\n \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\"\ @@ -1591,7 +1572,7 @@ interactions: state\": \"Enabled\",\r\n \"vlanId\": 100,\r\n \"gatewayManagerEtag\"\ : \"\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n },\r\ \n {\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\ - ,\r\n \"etag\": \"W/\\\"4ac85b09-f354-4d45-9acb-50c027c67325\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"3f00a903-abbc-49e2-a1b6-7dc65ba0a8f0\\\"\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \"azureASN\"\ : 12076,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\"\ @@ -1605,7 +1586,7 @@ interactions: cache-control: [no-cache] content-length: ['1801'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:25:44 GMT'] + date: ['Fri, 02 Feb 2018 22:34:11 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1621,14 +1602,16 @@ interactions: CommandName: [network express-route peering update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"4ac85b09-f354-4d45-9acb-50c027c67325\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"AzurePublicPeering\",\r\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ + ,\r\n \"etag\": \"W/\\\"3f00a903-abbc-49e2-a1b6-7dc65ba0a8f0\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\": 12076,\r\n \ \ \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\": \"100.0.0.0/30\"\ @@ -1640,7 +1623,7 @@ interactions: cache-control: [no-cache] content-length: ['809'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:25:44 GMT'] + date: ['Fri, 02 Feb 2018 22:34:12 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1649,12 +1632,12 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering", - "name": "AzurePublicPeering", "properties": {"gatewayManagerEtag": "", "vlanId": - 200, "secondaryPeerAddressPrefix": "101.0.0.0/30", "primaryAzurePort": "A51-TEST-06GMR-CIS-1-PRI-A", - "peeringType": "AzurePublicPeering", "peerASN": 10000, "azureASN": 12076, "primaryPeerAddressPrefix": - "100.0.0.0/30", "provisioningState": "Succeeded", "state": "Enabled", "secondaryAzurePort": - "A51-TEST-06GMR-CIS-2-SEC-A", "lastModifiedBy": "Customer"}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering", + "properties": {"secondaryPeerAddressPrefix": "101.0.0.0/30", "secondaryAzurePort": + "A51-TEST-06GMR-CIS-2-SEC-A", "primaryPeerAddressPrefix": "100.0.0.0/30", "gatewayManagerEtag": + "", "peerASN": 10000, "vlanId": 200, "peeringType": "AzurePublicPeering", "lastModifiedBy": + "Customer", "primaryAzurePort": "A51-TEST-06GMR-CIS-1-PRI-A", "state": "Enabled", + "azureASN": 12076, "provisioningState": "Succeeded"}, "name": "AzurePublicPeering"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1662,14 +1645,16 @@ interactions: Connection: [keep-alive] Content-Length: ['675'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"65c6568b-9508-4b6c-88ab-8e9a2189fca3\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"AzurePublicPeering\",\r\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ + ,\r\n \"etag\": \"W/\\\"29ca2acb-6338-404d-9844-ea12655353af\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\": 12076,\r\n \ \ \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\": \"100.0.0.0/30\"\ @@ -1678,11 +1663,11 @@ interactions: ,\r\n \"state\": \"Enabled\",\r\n \"vlanId\": 200,\r\n \"gatewayManagerEtag\"\ : \"\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b1a40f29-4996-4afb-ba1a-113e6beca8d5?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e25ec0e8-3d0e-4093-8f63-2b244088f893?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['808'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:25:45 GMT'] + date: ['Fri, 02 Feb 2018 22:34:13 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1699,45 +1684,19 @@ interactions: CommandName: [network express-route peering update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b1a40f29-4996-4afb-ba1a-113e6beca8d5?api-version=2017-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, 19 Dec 2017 04:25:55 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network express-route peering update] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b1a40f29-4996-4afb-ba1a-113e6beca8d5?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e25ec0e8-3d0e-4093-8f63-2b244088f893?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:26:06 GMT'] + date: ['Fri, 02 Feb 2018 22:34:23 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1753,14 +1712,16 @@ interactions: CommandName: [network express-route peering update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"afcd6d86-4ac2-45ff-88d4-c88e4923e0ca\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"AzurePublicPeering\",\r\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ + ,\r\n \"etag\": \"W/\\\"e8cfcb07-08e8-471b-960d-73f6be5d668b\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\": 12076,\r\n \ \ \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\": \"100.0.0.0/30\"\ @@ -1772,7 +1733,7 @@ interactions: cache-control: [no-cache] content-length: ['809'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:26:06 GMT'] + date: ['Fri, 02 Feb 2018 22:34:23 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1789,50 +1750,25 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/azureprivatepeering/arpTables/primary?api-version=2017-11-01 response: - body: {string: 'null'} - headers: - cache-control: [no-cache] - content-length: ['4'] - content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:26:08 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9db69040-16a9-47d3-8595-c276cb0b1a2e?api-version=2017-11-01'] - pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1192'] - status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network express-route list-arp-tables] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9db69040-16a9-47d3-8595-c276cb0b1a2e?api-version=2017-11-01 - response: - body: {string: 'null'} + body: {string: !!python/unicode 'null'} headers: cache-control: [no-cache] content-length: ['4'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:26:19 GMT'] + date: ['Fri, 02 Feb 2018 22:34:25 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9db69040-16a9-47d3-8595-c276cb0b1a2e?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/1576914c-75e0-4ee5-8b6a-5598e2d83f2c?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -1842,20 +1778,21 @@ interactions: CommandName: [network express-route list-arp-tables] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9db69040-16a9-47d3-8595-c276cb0b1a2e?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/1576914c-75e0-4ee5-8b6a-5598e2d83f2c?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": []\r\n}"} + body: {string: !!python/unicode "{\r\n \"value\": []\r\n}"} headers: cache-control: [no-cache] content-length: ['19'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:26:30 GMT'] + date: ['Fri, 02 Feb 2018 22:34:36 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9db69040-16a9-47d3-8595-c276cb0b1a2e?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/1576914c-75e0-4ee5-8b6a-5598e2d83f2c?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1871,50 +1808,25 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/azureprivatepeering/routeTables/primary?api-version=2017-11-01 response: - body: {string: 'null'} - headers: - cache-control: [no-cache] - content-length: ['4'] - content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:26:30 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4ac119d0-482c-4525-9224-06e6bc09ca11?api-version=2017-11-01'] - pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1172'] - status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network express-route list-route-tables] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4ac119d0-482c-4525-9224-06e6bc09ca11?api-version=2017-11-01 - response: - body: {string: 'null'} + body: {string: !!python/unicode 'null'} headers: cache-control: [no-cache] content-length: ['4'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:26:41 GMT'] + date: ['Fri, 02 Feb 2018 22:34:37 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4ac119d0-482c-4525-9224-06e6bc09ca11?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/8a7a7cf8-aab0-464b-a377-b972be6d0910?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] status: {code: 202, message: Accepted} - request: body: null @@ -1924,20 +1836,21 @@ interactions: CommandName: [network express-route list-route-tables] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4ac119d0-482c-4525-9224-06e6bc09ca11?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/8a7a7cf8-aab0-464b-a377-b972be6d0910?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": []\r\n}"} + body: {string: !!python/unicode "{\r\n \"value\": []\r\n}"} headers: cache-control: [no-cache] content-length: ['19'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:26:50 GMT'] + date: ['Fri, 02 Feb 2018 22:34:47 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4ac119d0-482c-4525-9224-06e6bc09ca11?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/8a7a7cf8-aab0-464b-a377-b972be6d0910?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1953,24 +1866,25 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-11-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b32bffb-9373-4bde-a95c-852181ea7176?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a59eaaf1-c637-4391-91ed-a3b0e296cac9?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 04:26:52 GMT'] + date: ['Fri, 02 Feb 2018 22:34:48 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/1b32bffb-9373-4bde-a95c-852181ea7176?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/a59eaaf1-c637-4391-91ed-a3b0e296cac9?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1190'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 202, message: Accepted} - request: body: null @@ -1980,99 +1894,19 @@ interactions: CommandName: [network express-route delete] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b32bffb-9373-4bde-a95c-852181ea7176?api-version=2017-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, 19 Dec 2017 04:27:03 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network express-route delete] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b32bffb-9373-4bde-a95c-852181ea7176?api-version=2017-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, 19 Dec 2017 04:27:13 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network express-route delete] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b32bffb-9373-4bde-a95c-852181ea7176?api-version=2017-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, 19 Dec 2017 04:27:23 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network express-route delete] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b32bffb-9373-4bde-a95c-852181ea7176?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a59eaaf1-c637-4391-91ed-a3b0e296cac9?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"InProgress\"\r\n}"} headers: cache-control: [no-cache] content-length: ['30'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:27:34 GMT'] + date: ['Fri, 02 Feb 2018 22:34:59 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2088,18 +1922,19 @@ interactions: CommandName: [network express-route delete] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b32bffb-9373-4bde-a95c-852181ea7176?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a59eaaf1-c637-4391-91ed-a3b0e296cac9?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:27:44 GMT'] + date: ['Fri, 02 Feb 2018 22:35:10 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2115,18 +1950,19 @@ interactions: CommandName: [network express-route list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits?api-version=2017-11-01 response: - body: {string: '{"value":[]}'} + body: {string: !!python/unicode '{"value":[]}'} headers: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 04:27:44 GMT'] + date: ['Fri, 02 Feb 2018 22:35:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -2141,22 +1977,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route000001?api-version=2017-05-10 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 04:27:46 GMT'] + date: ['Fri, 02 Feb 2018 22:35:10 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRVhQUkVTUzo1RlJPVVRFV1lRU0NXT1FHSFRTVUlJWkpLNnwwRDlCNUM2NzVDMzE5N0ZBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRVhQUkVTUzo1RlJPVVRFM0xXR1BIVkpJQURNV0FCVzNaRHw5N0M1MTFBRjI3QjIyRkNELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_lb.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_lb.yaml index 61956c5cea8..9e200953b26 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_lb.yaml +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_lb.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus", "tags": {"use": "az-test"}}' + body: !!python/unicode '{"location": "westus", "tags": {"use": "az-test"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -8,19 +8,19 @@ interactions: Connection: [keep-alive] Content-Length: ['50'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:57 GMT'] + date: ['Fri, 02 Feb 2018 22:31:20 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -34,19 +34,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:58 GMT'] + date: ['Fri, 02 Feb 2018 22:31:21 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -60,36 +60,37 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_load_balancer000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27 response: - body: {string: '{"value":[]}'} + body: {string: !!python/unicode '{"value":[]}'} headers: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:58 GMT'] + date: ['Fri, 02 Feb 2018 22:31:22 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"properties": {"mode": "Incremental", "template": {"variables": {}, - "outputs": {"loadBalancer": {"type": "object", "value": "[reference(\''lb1\'')]"}}, - "contentVersion": "1.0.0.0", "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "parameters": {}, "resources": [{"type": "Microsoft.Network/publicIPAddresses", - "name": "PublicIPlb1", "apiVersion": "2017-11-01", "dependsOn": [], "tags": - {}, "sku": {"name": "Basic"}, "location": "westus", "properties": {"publicIPAllocationMethod": - "Dynamic"}}, {"type": "Microsoft.Network/loadBalancers", "name": "lb1", "apiVersion": - "2017-11-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb1"], - "tags": {}, "sku": {"name": "Basic"}, "location": "westus", "properties": {"frontendIPConfigurations": - [{"name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}], - "backendAddressPools": [{"name": "lb1bepool"}]}}]}, "parameters": {}}}''' + body: !!python/unicode '{"properties": {"mode": "Incremental", "parameters": {}, + "template": {"parameters": {}, "outputs": {"loadBalancer": {"type": "object", + "value": "[reference(''lb1'')]"}}, "variables": {}, "contentVersion": "1.0.0.0", + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "resources": [{"sku": {"name": "Basic"}, "name": "PublicIPlb1", "tags": {}, + "apiVersion": "2017-11-01", "location": "westus", "dependsOn": [], "type": "Microsoft.Network/publicIPAddresses", + "properties": {"publicIPAllocationMethod": "Dynamic"}}, {"sku": {"name": "Basic"}, + "name": "lb1", "tags": {}, "apiVersion": "2017-11-01", "location": "westus", + "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb1"], "type": "Microsoft.Network/loadBalancers", + "properties": {"frontendIPConfigurations": [{"name": "LoadBalancerFrontEnd", + "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}], + "backendAddressPools": [{"name": "lb1bepool"}]}}]}}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -97,24 +98,24 @@ interactions: Connection: [keep-alive] Content-Length: ['1145'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_OmdYNblEtd2RAJNwqja5XdvuVphY19DQ","name":"lb_deploy_OmdYNblEtd2RAJNwqja5XdvuVphY19DQ","properties":{"templateHash":"9159772798104821957","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-12-19T18:08:01.2556889Z","duration":"PT0.4118947S","correlationId":"b6fe534f-eeda-47c0-b669-8e30a44c9627","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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_u30FSlepDfROZyf6Vc9GDJGV6NDRW4sD","name":"lb_deploy_u30FSlepDfROZyf6Vc9GDJGV6NDRW4sD","properties":{"templateHash":"9421951886617553148","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-02-02T22:31:24.4254225Z","duration":"PT0.4993275S","correlationId":"59305ba4-df4b-460f-8deb-f1264fbf4c1c","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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_OmdYNblEtd2RAJNwqja5XdvuVphY19DQ/operationStatuses/08586879000046338265?api-version=2017-05-10'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_u30FSlepDfROZyf6Vc9GDJGV6NDRW4sD/operationStatuses/08586839962015515216?api-version=2017-05-10'] cache-control: [no-cache] content-length: ['1305'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:00 GMT'] + date: ['Fri, 02 Feb 2018 22:31:24 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -124,19 +125,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586879000046338265?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586839962015515216?api-version=2017-05-10 response: - body: {string: '{"status":"Succeeded"}'} + body: {string: !!python/unicode '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:31 GMT'] + date: ['Fri, 02 Feb 2018 22:31:55 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -150,19 +151,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_OmdYNblEtd2RAJNwqja5XdvuVphY19DQ","name":"lb_deploy_OmdYNblEtd2RAJNwqja5XdvuVphY19DQ","properties":{"templateHash":"9159772798104821957","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-12-19T18:08:15.9386024Z","duration":"PT15.0948082S","correlationId":"b6fe534f-eeda-47c0-b669-8e30a44c9627","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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"bb4d59d7-40c0-4853-8ec2-26080174a49e","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"183bac8e-620e-40e6-befb-5f94aa859233\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"lb1bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool","etag":"W/\"183bac8e-620e-40e6-befb-5f94aa859233\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_u30FSlepDfROZyf6Vc9GDJGV6NDRW4sD","name":"lb_deploy_u30FSlepDfROZyf6Vc9GDJGV6NDRW4sD","properties":{"templateHash":"9421951886617553148","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-02-02T22:31:30.6769477Z","duration":"PT6.7508527S","correlationId":"59305ba4-df4b-460f-8deb-f1264fbf4c1c","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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"7b9b8652-4171-4e72-adbf-38873fefb73f","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"c3471108-af8a-4922-a0d4-af32b238e3fe\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"lb1bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool","etag":"W/\"c3471108-af8a-4922-a0d4-af32b238e3fe\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}'} headers: cache-control: [no-cache] - content-length: ['3014'] + content-length: ['3013'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:31 GMT'] + date: ['Fri, 02 Feb 2018 22:31:55 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -176,19 +177,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:32 GMT'] + date: ['Fri, 02 Feb 2018 22:31:56 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -202,36 +203,37 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_load_balancer000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27 response: - body: {string: '{"value":[]}'} + body: {string: !!python/unicode '{"value":[]}'} headers: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:33 GMT'] + date: ['Fri, 02 Feb 2018 22:31:56 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"properties": {"mode": "Incremental", "template": {"variables": {}, - "outputs": {"loadBalancer": {"type": "object", "value": "[reference(\''lb2\'')]"}}, - "contentVersion": "1.0.0.0", "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "parameters": {}, "resources": [{"type": "Microsoft.Network/publicIPAddresses", - "name": "PublicIPlb2", "apiVersion": "2017-11-01", "dependsOn": [], "tags": - {}, "sku": {"name": "Basic"}, "location": "westus", "properties": {"publicIPAllocationMethod": - "Static"}}, {"type": "Microsoft.Network/loadBalancers", "name": "lb2", "apiVersion": - "2017-11-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb2"], - "tags": {}, "sku": {"name": "Basic"}, "location": "westus", "properties": {"frontendIPConfigurations": - [{"name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}}}], - "backendAddressPools": [{"name": "lb2bepool"}]}}]}, "parameters": {}}}''' + body: !!python/unicode '{"properties": {"mode": "Incremental", "parameters": {}, + "template": {"parameters": {}, "outputs": {"loadBalancer": {"type": "object", + "value": "[reference(''lb2'')]"}}, "variables": {}, "contentVersion": "1.0.0.0", + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "resources": [{"sku": {"name": "Basic"}, "name": "PublicIPlb2", "tags": {}, + "apiVersion": "2017-11-01", "location": "westus", "dependsOn": [], "type": "Microsoft.Network/publicIPAddresses", + "properties": {"publicIPAllocationMethod": "Static"}}, {"sku": {"name": "Basic"}, + "name": "lb2", "tags": {}, "apiVersion": "2017-11-01", "location": "westus", + "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb2"], "type": "Microsoft.Network/loadBalancers", + "properties": {"frontendIPConfigurations": [{"name": "LoadBalancerFrontEnd", + "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}}}], + "backendAddressPools": [{"name": "lb2bepool"}]}}]}}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -239,24 +241,24 @@ interactions: Connection: [keep-alive] Content-Length: ['1144'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_tVvklnHtnyqcUM9coThpzpC724gb7TM5","name":"lb_deploy_tVvklnHtnyqcUM9coThpzpC724gb7TM5","properties":{"templateHash":"14615218965758199138","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-12-19T18:08:34.9142192Z","duration":"PT0.4511751S","correlationId":"ade8fc14-3413-47d8-bd07-0dcd0f37ba95","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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb2"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_KQpMQiqv4cfnfJjNcvkZTrEoEBw8TvMD","name":"lb_deploy_KQpMQiqv4cfnfJjNcvkZTrEoEBw8TvMD","properties":{"templateHash":"12035083660490896310","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-02-02T22:31:59.0515996Z","duration":"PT0.7547322S","correlationId":"cce668b8-2ae0-4352-84ae-e38f9811fa57","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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb2"}]}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_tVvklnHtnyqcUM9coThpzpC724gb7TM5/operationStatuses/08586878999710145783?api-version=2017-05-10'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_KQpMQiqv4cfnfJjNcvkZTrEoEBw8TvMD/operationStatuses/08586839961671807471?api-version=2017-05-10'] cache-control: [no-cache] content-length: ['1306'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:35 GMT'] + date: ['Fri, 02 Feb 2018 22:31:58 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: null @@ -266,19 +268,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586878999710145783?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586839961671807471?api-version=2017-05-10 response: - body: {string: '{"status":"Succeeded"}'} + body: {string: !!python/unicode '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:05 GMT'] + date: ['Fri, 02 Feb 2018 22:32:29 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -292,19 +294,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_tVvklnHtnyqcUM9coThpzpC724gb7TM5","name":"lb_deploy_tVvklnHtnyqcUM9coThpzpC724gb7TM5","properties":{"templateHash":"14615218965758199138","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-12-19T18:08:41.777584Z","duration":"PT7.3145399S","correlationId":"ade8fc14-3413-47d8-bd07-0dcd0f37ba95","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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb2"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"dba49ef1-06c5-4970-bcb2-f3fec97bdb5a","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"a93e6bdb-da4d-4f87-a8ae-ca64b45b6b07\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}}}],"backendAddressPools":[{"name":"lb2bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool","etag":"W/\"a93e6bdb-da4d-4f87-a8ae-ca64b45b6b07\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_KQpMQiqv4cfnfJjNcvkZTrEoEBw8TvMD","name":"lb_deploy_KQpMQiqv4cfnfJjNcvkZTrEoEBw8TvMD","properties":{"templateHash":"12035083660490896310","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-02-02T22:32:13.6841119Z","duration":"PT15.3872445S","correlationId":"cce668b8-2ae0-4352-84ae-e38f9811fa57","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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb2"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"b41d51fd-30da-4c1b-96f6-f1b22721a79f","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"ec6d52b9-d8c3-4b3d-b7f6-eb45ae674a8a\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}}}],"backendAddressPools":[{"name":"lb2bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool","etag":"W/\"ec6d52b9-d8c3-4b3d-b7f6-eb45ae674a8a\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}]}}'} headers: cache-control: [no-cache] - content-length: ['3013'] + content-length: ['3015'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:05 GMT'] + date: ['Fri, 02 Feb 2018 22:32:29 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -318,17 +320,19 @@ interactions: CommandName: [network public-ip show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"PublicIPlb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2\"\ - ,\r\n \"etag\": \"W/\\\"e4ec49f7-84eb-488e-aa99-8c64ff603008\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"PublicIPlb2\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2\"\ + ,\r\n \"etag\": \"W/\\\"0700c2e0-fa3d-4768-b84f-e25b50681e87\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01d0cbae-58d0-4769-a365-ef47091cea7a\"\ - ,\r\n \"ipAddress\": \"104.42.0.60\",\r\n \"publicIPAddressVersion\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e3f5a4af-13d1-40bb-bda4-d5a7a79d33a1\"\ + ,\r\n \"ipAddress\": \"13.91.250.48\",\r\n \"publicIPAddressVersion\"\ : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ : 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\ @@ -336,10 +340,10 @@ interactions: \n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} headers: cache-control: [no-cache] - content-length: ['1002'] + content-length: ['1003'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:07 GMT'] - etag: [W/"e4ec49f7-84eb-488e-aa99-8c64ff603008"] + date: ['Fri, 02 Feb 2018 22:32:30 GMT'] + etag: [W/"0700c2e0-fa3d-4768-b84f-e25b50681e87"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -355,27 +359,27 @@ interactions: CommandName: [network vnet create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:07 GMT'] + date: ['Fri, 02 Feb 2018 22:32:30 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"location": "westus", "properties": {"dhcpOptions": {}, "subnets": [{"name": - "default", "properties": {"addressPrefix": "10.0.0.0/24"}}], "addressSpace": + body: !!python/unicode '{"location": "westus", "properties": {"subnets": [{"properties": + {"addressPrefix": "10.0.0.0/24"}, "name": "default"}], "dhcpOptions": {}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' headers: Accept: [application/json] @@ -384,32 +388,34 @@ interactions: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mytestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet\"\ - ,\r\n \"etag\": \"W/\\\"754ac4ed-6094-4f1d-bf43-e6e04050d78b\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mytestvnet\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet\"\ + ,\r\n \"etag\": \"W/\\\"dc4df576-21b5-4a17-a379-1929287c8014\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"c75f5fd1-1bf8-46ed-9a1a-714151907a9a\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"6ca96103-498a-427e-9aaa-39e2cb669d9d\"\ ,\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\": \"default\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"754ac4ed-6094-4f1d-bf43-e6e04050d78b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"dc4df576-21b5-4a17-a379-1929287c8014\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\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/c8a1060a-91d4-4844-9627-60cd384971c1?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/de878946-8ac6-496d-a8c1-fab199e3e040?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['1245'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:08 GMT'] + date: ['Fri, 02 Feb 2018 22:32:31 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -424,18 +430,19 @@ interactions: CommandName: [network vnet create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c8a1060a-91d4-4844-9627-60cd384971c1?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/de878946-8ac6-496d-a8c1-fab199e3e040?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:12 GMT'] + date: ['Fri, 02 Feb 2018 22:32:35 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -451,22 +458,24 @@ interactions: CommandName: [network vnet create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mytestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet\"\ - ,\r\n \"etag\": \"W/\\\"c5530947-ed60-4675-a31a-afb0f0f9c493\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mytestvnet\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet\"\ + ,\r\n \"etag\": \"W/\\\"318db3fe-6578-490d-8b25-9563c78699d1\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c75f5fd1-1bf8-46ed-9a1a-714151907a9a\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"6ca96103-498a-427e-9aaa-39e2cb669d9d\"\ ,\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\": \"default\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"c5530947-ed60-4675-a31a-afb0f0f9c493\\\"\"\ + ,\r\n \"etag\": \"W/\\\"318db3fe-6578-490d-8b25-9563c78699d1\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ @@ -475,8 +484,8 @@ interactions: cache-control: [no-cache] content-length: ['1247'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:13 GMT'] - etag: [W/"c5530947-ed60-4675-a31a-afb0f0f9c493"] + date: ['Fri, 02 Feb 2018 22:32:36 GMT'] + etag: [W/"318db3fe-6578-490d-8b25-9563c78699d1"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -492,19 +501,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:12 GMT'] + date: ['Fri, 02 Feb 2018 22:32:36 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -518,34 +527,35 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_load_balancer000001%27%20and%20name%20eq%20%27mytestvnet%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27 response: - body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet","name":"mytestvnet","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}}]}'} + body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet","name":"mytestvnet","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}}]}'} headers: cache-control: [no-cache] content-length: ['311'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:13 GMT'] + date: ['Fri, 02 Feb 2018 22:32:36 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"properties": {"mode": "Incremental", "template": {"variables": {}, - "outputs": {"loadBalancer": {"type": "object", "value": "[reference(\''lb3\'')]"}}, - "contentVersion": "1.0.0.0", "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "parameters": {}, "resources": [{"type": "Microsoft.Network/loadBalancers", - "name": "lb3", "apiVersion": "2017-11-01", "dependsOn": [], "tags": {}, "sku": - {"name": "Basic"}, "location": "westus", "properties": {"frontendIPConfigurations": - [{"name": "LoadBalancerFrontEnd", "properties": {"privateIPAllocationMethod": - "Static", "privateIPAddress": "10.0.0.15", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default"}}}], - "backendAddressPools": [{"name": "lb3bepool"}]}}]}, "parameters": {}}}''' + body: !!python/unicode '{"properties": {"mode": "Incremental", "parameters": {}, + "template": {"parameters": {}, "outputs": {"loadBalancer": {"type": "object", + "value": "[reference(''lb3'')]"}}, "variables": {}, "contentVersion": "1.0.0.0", + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "resources": [{"sku": {"name": "Basic"}, "name": "lb3", "tags": {}, "apiVersion": + "2017-11-01", "location": "westus", "dependsOn": [], "type": "Microsoft.Network/loadBalancers", + "properties": {"frontendIPConfigurations": [{"name": "LoadBalancerFrontEnd", + "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default"}, + "privateIPAllocationMethod": "Static", "privateIPAddress": "10.0.0.15"}}], "backendAddressPools": + [{"name": "lb3bepool"}]}}]}}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -553,20 +563,20 @@ interactions: Connection: [keep-alive] Content-Length: ['940'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_cN4xSLDiF0uML5YwO5hXGWgPhdNFogfR","name":"lb_deploy_cN4xSLDiF0uML5YwO5hXGWgPhdNFogfR","properties":{"templateHash":"15656941834351047357","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-12-19T18:09:15.9980405Z","duration":"PT0.571844S","correlationId":"5e4a00f6-b281-43b0-be8b-b70c7656acf8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_m0vbM3iwIflu2XjkDP2VaeCjMY8H5ob5","name":"lb_deploy_m0vbM3iwIflu2XjkDP2VaeCjMY8H5ob5","properties":{"templateHash":"1427836032422367295","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-02-02T22:32:38.6934011Z","duration":"PT0.3740379S","correlationId":"3a4d83cd-8708-4366-b1ea-b9a87e637065","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[]}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_cN4xSLDiF0uML5YwO5hXGWgPhdNFogfR/operationStatuses/08586878999300514186?api-version=2017-05-10'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_m0vbM3iwIflu2XjkDP2VaeCjMY8H5ob5/operationStatuses/08586839961271582480?api-version=2017-05-10'] cache-control: [no-cache] content-length: ['672'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:15 GMT'] + date: ['Fri, 02 Feb 2018 22:32:38 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -580,19 +590,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586878999300514186?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586839961271582480?api-version=2017-05-10 response: - body: {string: '{"status":"Succeeded"}'} + body: {string: !!python/unicode '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:46 GMT'] + date: ['Fri, 02 Feb 2018 22:33:09 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -606,19 +616,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_cN4xSLDiF0uML5YwO5hXGWgPhdNFogfR","name":"lb_deploy_cN4xSLDiF0uML5YwO5hXGWgPhdNFogfR","properties":{"templateHash":"15656941834351047357","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-12-19T18:09:22.4852147Z","duration":"PT7.0590182S","correlationId":"5e4a00f6-b281-43b0-be8b-b70c7656acf8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"49888361-1d3f-4d11-9ac3-78f7983df295","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"cc071e7e-d730-4413-ba4b-8290da5acf39\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.15","privateIPAllocationMethod":"Static","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default"}}}],"backendAddressPools":[{"name":"lb3bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool","etag":"W/\"cc071e7e-d730-4413-ba4b-8290da5acf39\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_m0vbM3iwIflu2XjkDP2VaeCjMY8H5ob5","name":"lb_deploy_m0vbM3iwIflu2XjkDP2VaeCjMY8H5ob5","properties":{"templateHash":"1427836032422367295","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-02-02T22:32:41.610769Z","duration":"PT3.2914058S","correlationId":"3a4d83cd-8708-4366-b1ea-b9a87e637065","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"ee0f65c3-e7c0-437f-b4b2-fe04f81aa555","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"2562768d-3831-4fc9-8d32-85b490c5e7f8\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.15","privateIPAllocationMethod":"Static","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default"}}}],"backendAddressPools":[{"name":"lb3bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool","etag":"W/\"2562768d-3831-4fc9-8d32-85b490c5e7f8\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3"}]}}'} headers: cache-control: [no-cache] - content-length: ['2205'] + content-length: ['2203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:46 GMT'] + date: ['Fri, 02 Feb 2018 22:33:09 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -632,28 +642,28 @@ interactions: CommandName: [network public-ip create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:47 GMT'] + date: ['Fri, 02 Feb 2018 22:33:09 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"location": "westus", "properties": {"publicIPAllocationMethod": "Dynamic", - "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}, "sku": {"name": - "Basic"}}' + body: !!python/unicode '{"sku": {"name": "Basic"}, "properties": {"publicIPAllocationMethod": + "Dynamic", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}, "location": + "westus"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -661,31 +671,33 @@ interactions: Connection: [keep-alive] Content-Length: ['164'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"publicip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4\"\ - ,\r\n \"etag\": \"W/\\\"e2a45ee7-d91f-40cb-abc9-64edbf7a9d1b\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"publicip4\",\r\n \"id\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4\"\ + ,\r\n \"etag\": \"W/\\\"28bbf9da-abd4-4c88-8240-61ac8c5d1f71\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Updating\",\r\n \"resourceGuid\": \"97962921-114f-4f81-af5d-05d44bf79e9c\"\ + : \"Updating\",\r\n \"resourceGuid\": \"a3b20f8f-98c6-4048-a6f7-0bdef1dc973e\"\ ,\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/f5f5e738-2202-4c90-983e-8016236c25d5?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/21d2f739-a0a8-4099-87e1-14314126a7e4?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['666'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:48 GMT'] + date: ['Fri, 02 Feb 2018 22:33:10 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: null @@ -695,18 +707,19 @@ interactions: CommandName: [network public-ip create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f5f5e738-2202-4c90-983e-8016236c25d5?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/21d2f739-a0a8-4099-87e1-14314126a7e4?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:52 GMT'] + date: ['Fri, 02 Feb 2018 22:33:14 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -722,16 +735,18 @@ interactions: CommandName: [network public-ip create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"publicip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4\"\ - ,\r\n \"etag\": \"W/\\\"a5bb5a47-ba76-42bb-ae18-2b70a4fa7f02\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"publicip4\",\r\n \"id\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4\"\ + ,\r\n \"etag\": \"W/\\\"541afe72-9cc5-4506-98d4-940cef47fa02\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"97962921-114f-4f81-af5d-05d44bf79e9c\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"a3b20f8f-98c6-4048-a6f7-0bdef1dc973e\"\ ,\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\"\ @@ -740,8 +755,8 @@ interactions: cache-control: [no-cache] content-length: ['667'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:53 GMT'] - etag: [W/"a5bb5a47-ba76-42bb-ae18-2b70a4fa7f02"] + date: ['Fri, 02 Feb 2018 22:33:14 GMT'] + etag: [W/"541afe72-9cc5-4506-98d4-940cef47fa02"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -757,19 +772,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:53 GMT'] + date: ['Fri, 02 Feb 2018 22:33:14 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -783,33 +798,34 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_load_balancer000001%27%20and%20name%20eq%20%27publicip4%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27 response: - body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4","name":"publicip4","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus"}]}'} + body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4","name":"publicip4","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus"}]}'} headers: cache-control: [no-cache] content-length: ['326'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:54 GMT'] + date: ['Fri, 02 Feb 2018 22:33:15 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"properties": {"mode": "Incremental", "template": {"variables": {}, - "outputs": {"loadBalancer": {"type": "object", "value": "[reference(\''lb4\'')]"}}, - "contentVersion": "1.0.0.0", "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "parameters": {}, "resources": [{"type": "Microsoft.Network/loadBalancers", - "name": "lb4", "apiVersion": "2017-11-01", "dependsOn": [], "tags": {}, "sku": - {"name": "Basic"}, "location": "westus", "properties": {"frontendIPConfigurations": - [{"name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4"}}}], - "backendAddressPools": [{"name": "lb4bepool"}]}}]}, "parameters": {}}}''' + body: !!python/unicode '{"properties": {"mode": "Incremental", "parameters": {}, + "template": {"parameters": {}, "outputs": {"loadBalancer": {"type": "object", + "value": "[reference(''lb4'')]"}}, "variables": {}, "contentVersion": "1.0.0.0", + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "resources": [{"sku": {"name": "Basic"}, "name": "lb4", "tags": {}, "apiVersion": + "2017-11-01", "location": "westus", "dependsOn": [], "type": "Microsoft.Network/loadBalancers", + "properties": {"frontendIPConfigurations": [{"name": "LoadBalancerFrontEnd", + "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4"}}}], + "backendAddressPools": [{"name": "lb4bepool"}]}}]}}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -817,24 +833,24 @@ interactions: Connection: [keep-alive] Content-Length: ['862'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_deNyGoC4iV4jK1mctSXc5cdnxL0ONsyZ","name":"lb_deploy_deNyGoC4iV4jK1mctSXc5cdnxL0ONsyZ","properties":{"templateHash":"13044348939923671498","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-12-19T18:09:56.3161924Z","duration":"PT0.3363411S","correlationId":"d75daddf-e682-4054-96cf-00a602374632","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_PaeyAnD9mZtJAdqRNlVuC7oQwcg8oSM7","name":"lb_deploy_PaeyAnD9mZtJAdqRNlVuC7oQwcg8oSM7","properties":{"templateHash":"6722947398531401710","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-02-02T22:33:17.2828387Z","duration":"PT0.4663017S","correlationId":"49734841-e1de-44f9-82c3-044355a673a9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[]}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_deNyGoC4iV4jK1mctSXc5cdnxL0ONsyZ/operationStatuses/08586878998894977621?api-version=2017-05-10'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_PaeyAnD9mZtJAdqRNlVuC7oQwcg8oSM7/operationStatuses/08586839960886610766?api-version=2017-05-10'] cache-control: [no-cache] - content-length: ['673'] + content-length: ['672'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:56 GMT'] + date: ['Fri, 02 Feb 2018 22:33:16 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: null @@ -844,19 +860,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586878998894977621?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586839960886610766?api-version=2017-05-10 response: - body: {string: '{"status":"Succeeded"}'} + body: {string: !!python/unicode '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:26 GMT'] + date: ['Fri, 02 Feb 2018 22:33:47 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -870,19 +886,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_deNyGoC4iV4jK1mctSXc5cdnxL0ONsyZ","name":"lb_deploy_deNyGoC4iV4jK1mctSXc5cdnxL0ONsyZ","properties":{"templateHash":"13044348939923671498","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-12-19T18:10:03.3910153Z","duration":"PT7.411164S","correlationId":"d75daddf-e682-4054-96cf-00a602374632","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"29f3c7ce-1559-4cbe-ba40-9e77e7c38834","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"c11b1247-aa10-4ce3-933d-dbc482edbede\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4"}}}],"backendAddressPools":[{"name":"lb4bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool","etag":"W/\"c11b1247-aa10-4ce3-933d-dbc482edbede\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_PaeyAnD9mZtJAdqRNlVuC7oQwcg8oSM7","name":"lb_deploy_PaeyAnD9mZtJAdqRNlVuC7oQwcg8oSM7","properties":{"templateHash":"6722947398531401710","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-02-02T22:33:19.2730324Z","duration":"PT2.4564954S","correlationId":"49734841-e1de-44f9-82c3-044355a673a9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"1d893b79-fe19-4740-99b3-1e28e5d01a46","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"7ce3bdc3-9fb1-4c52-bc74-db1b585fc8e2\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4"}}}],"backendAddressPools":[{"name":"lb4bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool","etag":"W/\"7ce3bdc3-9fb1-4c52-bc74-db1b585fc8e2\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4"}]}}'} headers: cache-control: [no-cache] content-length: ['2168'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:27 GMT'] + date: ['Fri, 02 Feb 2018 22:33:47 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -896,23 +912,24 @@ interactions: CommandName: [network lb list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/loadBalancers?api-version=2017-11-01 response: - body: {string: '{"value":[{"name":"vmss1LB","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB","etag":"W/\"747eee86-ff96-454d-be02-feaef18eee44\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"739408e1-08b5-453c-b5bf-4f704467f901","frontendIPConfigurations":[{"name":"loadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd","etag":"W/\"747eee86-ff96-454d-be02-feaef18eee44\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],"backendAddressPools":[{"name":"vmss1LBBEPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool","etag":"W/\"747eee86-ff96-454d-be02-feaef18eee44\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1241aNic/ipConfigurations/vmss1241aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1241aNic/ipConfigurations/vmss1241aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1241aNic/ipConfigurations/vmss1241aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1241aNic/ipConfigurations/vmss1241aIPConfig"}]}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[{"name":"vmss1LBNatPool.0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0","etag":"W/\"747eee86-ff96-454d-be02-feaef18eee44\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"},"frontendPort":50000,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1241aNic/ipConfigurations/vmss1241aIPConfig"}}},{"name":"vmss1LBNatPool.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1","etag":"W/\"747eee86-ff96-454d-be02-feaef18eee44\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"},"frontendPort":50001,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1241aNic/ipConfigurations/vmss1241aIPConfig"}}},{"name":"vmss1LBNatPool.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.2","etag":"W/\"747eee86-ff96-454d-be02-feaef18eee44\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"},"frontendPort":50002,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1241aNic/ipConfigurations/vmss1241aIPConfig"}}},{"name":"vmss1LBNatPool.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3","etag":"W/\"747eee86-ff96-454d-be02-feaef18eee44\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"},"frontendPort":50003,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1241aNic/ipConfigurations/vmss1241aIPConfig"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"vmss1LBNatPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool","etag":"W/\"747eee86-ff96-454d-be02-feaef18eee44\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":50000,"frontendPortRangeEnd":50119,"backendPort":22,"protocol":"Tcp","idleTimeoutInMinutes":4,"enableFloatingIP":false,"frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"}}}]},"sku":{"name":"Basic"}},{"name":"lb1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1","etag":"W/\"183bac8e-620e-40e6-befb-5f94aa859233\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"bb4d59d7-40c0-4853-8ec2-26080174a49e","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"183bac8e-620e-40e6-befb-5f94aa859233\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"lb1bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool","etag":"W/\"183bac8e-620e-40e6-befb-5f94aa859233\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"lb2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2","etag":"W/\"a93e6bdb-da4d-4f87-a8ae-ca64b45b6b07\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"dba49ef1-06c5-4970-bcb2-f3fec97bdb5a","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"a93e6bdb-da4d-4f87-a8ae-ca64b45b6b07\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}}}],"backendAddressPools":[{"name":"lb2bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool","etag":"W/\"a93e6bdb-da4d-4f87-a8ae-ca64b45b6b07\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"lb3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3","etag":"W/\"cc071e7e-d730-4413-ba4b-8290da5acf39\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"49888361-1d3f-4d11-9ac3-78f7983df295","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"cc071e7e-d730-4413-ba4b-8290da5acf39\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.15","privateIPAllocationMethod":"Static","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default"}}}],"backendAddressPools":[{"name":"lb3bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool","etag":"W/\"cc071e7e-d730-4413-ba4b-8290da5acf39\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"lb4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4","etag":"W/\"c11b1247-aa10-4ce3-933d-dbc482edbede\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"29f3c7ce-1559-4cbe-ba40-9e77e7c38834","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"c11b1247-aa10-4ce3-933d-dbc482edbede\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4"}}}],"backendAddressPools":[{"name":"lb4bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool","etag":"W/\"c11b1247-aa10-4ce3-933d-dbc482edbede\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"lb1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_configx75bkpa6ckagmpnoiwfdnjcxbvb2cb3jgpz7pvcclnx/providers/Microsoft.Network/loadBalancers/lb1","etag":"W/\"466b686d-de9c-410d-9464-e4b4c70ddd23\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b487e1fd-3eeb-4256-a9de-7b6487a699ec","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_configx75bkpa6ckagmpnoiwfdnjcxbvb2cb3jgpz7pvcclnx/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"466b686d-de9c-410d-9464-e4b4c70ddd23\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_configx75bkpa6ckagmpnoiwfdnjcxbvb2cb3jgpz7pvcclnx/providers/Microsoft.Network/publicIPAddresses/publicip1"}}},{"name":"ipconfig1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_configx75bkpa6ckagmpnoiwfdnjcxbvb2cb3jgpz7pvcclnx/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1","etag":"W/\"466b686d-de9c-410d-9464-e4b4c70ddd23\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_configx75bkpa6ckagmpnoiwfdnjcxbvb2cb3jgpz7pvcclnx/providers/Microsoft.Network/publicIPAddresses/publicip3"}}}],"backendAddressPools":[{"name":"lb1bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_configx75bkpa6ckagmpnoiwfdnjcxbvb2cb3jgpz7pvcclnx/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool","etag":"W/\"466b686d-de9c-410d-9464-e4b4c70ddd23\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"lb2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_configx75bkpa6ckagmpnoiwfdnjcxbvb2cb3jgpz7pvcclnx/providers/Microsoft.Network/loadBalancers/lb2","etag":"W/\"b18eb90e-39e2-40eb-81a4-e11f0afa1661\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"42a357b8-14fb-4c91-adaa-e5c4ac37b363","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_configx75bkpa6ckagmpnoiwfdnjcxbvb2cb3jgpz7pvcclnx/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"b18eb90e-39e2-40eb-81a4-e11f0afa1661\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_configx75bkpa6ckagmpnoiwfdnjcxbvb2cb3jgpz7pvcclnx/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}}],"backendAddressPools":[{"name":"lb2bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_configx75bkpa6ckagmpnoiwfdnjcxbvb2cb3jgpz7pvcclnx/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool","etag":"W/\"b18eb90e-39e2-40eb-81a4-e11f0afa1661\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"mylb","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/loadBalancers/mylb","etag":"W/\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"},"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2"}]}}],"backendAddressPools":[{"name":"mylbbepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool","etag":"W/\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\"","properties":{"provisioningState":"Succeeded"}},{"name":"bap1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1","etag":"W/\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\"","properties":{"provisioningState":"Succeeded"}},{"name":"bap2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap2","etag":"W/\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1","etag":"W/\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},"frontendPort":100,"backendPort":100,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp"}},{"name":"rule2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2","etag":"W/\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},"frontendPort":200,"backendPort":200,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp"}}],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"extlb1-3065","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065","etag":"W/\"d4486aad-1a3c-45f7-ae38-e528cee10d61\"","type":"Microsoft.Network/loadBalancers","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a63284bf-bff7-4b22-bd8c-54ee29d4b88e","frontendIPConfigurations":[{"name":"extlb1-3065-FE1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/frontendIPConfigurations/extlb1-3065-FE1","etag":"W/\"d4486aad-1a3c-45f7-ae38-e528cee10d61\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-3065"},"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/loadBalancingRules/httpRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/loadBalancingRules/httpsRule"}],"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/inboundNatRules/extlb1-3065-INP1.0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/inboundNatRules/extlb1-3065-INP1.3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/inboundNatRules/extlb1-3065-INP2.3"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/inboundNatPools/extlb1-3065-INP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/inboundNatPools/extlb1-3065-INP2"}]}}],"backendAddressPools":[{"name":"extlb1-3065-BAP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/backendAddressPools/extlb1-3065-BAP1","etag":"W/\"d4486aad-1a3c-45f7-ae38-e528cee10d61\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss9664/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss9664/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/loadBalancingRules/httpRule"}]}},{"name":"extlb1-3065-BAP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/backendAddressPools/extlb1-3065-BAP2","etag":"W/\"d4486aad-1a3c-45f7-ae38-e528cee10d61\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss9664/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss9664/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/loadBalancingRules/httpsRule"}]}}],"loadBalancingRules":[{"name":"httpRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/loadBalancingRules/httpRule","etag":"W/\"d4486aad-1a3c-45f7-ae38-e528cee10d61\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/frontendIPConfigurations/extlb1-3065-FE1"},"frontendPort":80,"backendPort":80,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/backendAddressPools/extlb1-3065-BAP1"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/probes/httpProbe"}}},{"name":"httpsRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/loadBalancingRules/httpsRule","etag":"W/\"d4486aad-1a3c-45f7-ae38-e528cee10d61\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/frontendIPConfigurations/extlb1-3065-FE1"},"frontendPort":443,"backendPort":443,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/backendAddressPools/extlb1-3065-BAP2"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/probes/httpsProbe"}}}],"probes":[{"name":"httpProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/probes/httpProbe","etag":"W/\"d4486aad-1a3c-45f7-ae38-e528cee10d61\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/loadBalancingRules/httpRule"}]}},{"name":"httpsProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/probes/httpsProbe","etag":"W/\"d4486aad-1a3c-45f7-ae38-e528cee10d61\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/loadBalancingRules/httpsRule"}]}}],"inboundNatRules":[{"name":"extlb1-3065-INP1.0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/inboundNatRules/extlb1-3065-INP1.0","etag":"W/\"d4486aad-1a3c-45f7-ae38-e528cee10d61\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/frontendIPConfigurations/extlb1-3065-FE1"},"frontendPort":5000,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss9664/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"extlb1-3065-INP1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/inboundNatRules/extlb1-3065-INP1.3","etag":"W/\"d4486aad-1a3c-45f7-ae38-e528cee10d61\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/frontendIPConfigurations/extlb1-3065-FE1"},"frontendPort":5003,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss9664/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"extlb1-3065-INP2.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/inboundNatRules/extlb1-3065-INP2.3","etag":"W/\"d4486aad-1a3c-45f7-ae38-e528cee10d61\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/frontendIPConfigurations/extlb1-3065-FE1"},"frontendPort":6003,"backendPort":23,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss9664/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"extlb1-3065-INP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/inboundNatPools/extlb1-3065-INP1","etag":"W/\"d4486aad-1a3c-45f7-ae38-e528cee10d61\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":5000,"frontendPortRangeEnd":5099,"backendPort":22,"protocol":"Tcp","idleTimeoutInMinutes":4,"enableFloatingIP":false,"frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/frontendIPConfigurations/extlb1-3065-FE1"}}},{"name":"extlb1-3065-INP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/inboundNatPools/extlb1-3065-INP2","etag":"W/\"d4486aad-1a3c-45f7-ae38-e528cee10d61\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":6000,"frontendPortRangeEnd":6099,"backendPort":23,"protocol":"Tcp","idleTimeoutInMinutes":4,"enableFloatingIP":false,"frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/extlb1-3065/frontendIPConfigurations/extlb1-3065-FE1"}}}]},"sku":{"name":"Basic"}},{"name":"InternalLb1-9193","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193","etag":"W/\"a489e8c7-e8d0-47bf-81c0-ec8ca77c2269\"","type":"Microsoft.Network/loadBalancers","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"866eb91a-3e9a-484e-a585-bb0d051cb1ca","frontendIPConfigurations":[{"name":"InternalLb1-9193-FE1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/frontendIPConfigurations/InternalLb1-9193-FE1","etag":"W/\"a489e8c7-e8d0-47bf-81c0-ec8ca77c2269\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.8","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1"},"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/loadBalancingRules/httpRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/loadBalancingRules/httpsRule"}],"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/inboundNatRules/InternalLb1-9193-INP1.0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/inboundNatRules/InternalLb1-9193-INP2.0"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/inboundNatPools/InternalLb1-9193-INP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/inboundNatPools/InternalLb1-9193-INP2"}]}}],"backendAddressPools":[{"name":"InternalLb1-9193-BAP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/backendAddressPools/InternalLb1-9193-BAP1","etag":"W/\"a489e8c7-e8d0-47bf-81c0-ec8ca77c2269\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss9664/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/loadBalancingRules/httpRule"}]}},{"name":"InternalLb1-9193-BAP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/backendAddressPools/InternalLb1-9193-BAP2","etag":"W/\"a489e8c7-e8d0-47bf-81c0-ec8ca77c2269\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss9664/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/loadBalancingRules/httpsRule"}]}}],"loadBalancingRules":[{"name":"httpRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/loadBalancingRules/httpRule","etag":"W/\"a489e8c7-e8d0-47bf-81c0-ec8ca77c2269\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/frontendIPConfigurations/InternalLb1-9193-FE1"},"frontendPort":1000,"backendPort":1000,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/backendAddressPools/InternalLb1-9193-BAP1"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/probes/httpProbe"}}},{"name":"httpsRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/loadBalancingRules/httpsRule","etag":"W/\"a489e8c7-e8d0-47bf-81c0-ec8ca77c2269\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/frontendIPConfigurations/InternalLb1-9193-FE1"},"frontendPort":1001,"backendPort":1001,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/backendAddressPools/InternalLb1-9193-BAP2"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/probes/httpsProbe"}}}],"probes":[{"name":"httpProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/probes/httpProbe","etag":"W/\"a489e8c7-e8d0-47bf-81c0-ec8ca77c2269\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/loadBalancingRules/httpRule"}]}},{"name":"httpsProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/probes/httpsProbe","etag":"W/\"a489e8c7-e8d0-47bf-81c0-ec8ca77c2269\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/loadBalancingRules/httpsRule"}]}}],"inboundNatRules":[{"name":"InternalLb1-9193-INP1.0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/inboundNatRules/InternalLb1-9193-INP1.0","etag":"W/\"a489e8c7-e8d0-47bf-81c0-ec8ca77c2269\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/frontendIPConfigurations/InternalLb1-9193-FE1"},"frontendPort":8000,"backendPort":44,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss9664/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"InternalLb1-9193-INP2.0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/inboundNatRules/InternalLb1-9193-INP2.0","etag":"W/\"a489e8c7-e8d0-47bf-81c0-ec8ca77c2269\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/frontendIPConfigurations/InternalLb1-9193-FE1"},"frontendPort":9000,"backendPort":45,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss9664/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"InternalLb1-9193-INP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/inboundNatPools/InternalLb1-9193-INP1","etag":"W/\"a489e8c7-e8d0-47bf-81c0-ec8ca77c2269\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":8000,"frontendPortRangeEnd":8099,"backendPort":44,"protocol":"Tcp","idleTimeoutInMinutes":4,"enableFloatingIP":false,"frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/frontendIPConfigurations/InternalLb1-9193-FE1"}}},{"name":"InternalLb1-9193-INP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/inboundNatPools/InternalLb1-9193-INP2","etag":"W/\"a489e8c7-e8d0-47bf-81c0-ec8ca77c2269\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":9000,"frontendPortRangeEnd":9099,"backendPort":45,"protocol":"Tcp","idleTimeoutInMinutes":4,"enableFloatingIP":false,"frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/frontendIPConfigurations/InternalLb1-9193-FE1"}}}]},"sku":{"name":"Basic"}},{"name":"extlb1-2027","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","type":"Microsoft.Network/loadBalancers","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8bcafbb3-5146-4857-9ca3-b04b835f63c7","frontendIPConfigurations":[{"name":"extlb1-2027-FE1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/frontendIPConfigurations/extlb1-2027-FE1","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-2027"},"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/loadBalancingRules/httpRule"}],"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/inboundNatRules/extlb1-2027-INP1.0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/inboundNatRules/extlb1-2027-INP1.1"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/inboundNatPools/extlb1-2027-INP1"}]}}],"backendAddressPools":[{"name":"extlb1-2027-BAP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/backendAddressPools/extlb1-2027-BAP1","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3271/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3271/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/loadBalancingRules/httpRule"}]}}],"loadBalancingRules":[{"name":"httpRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/loadBalancingRules/httpRule","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/frontendIPConfigurations/extlb1-2027-FE1"},"frontendPort":80,"backendPort":80,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/backendAddressPools/extlb1-2027-BAP1"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/probes/httpProbe"}}}],"probes":[{"name":"httpProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/probes/httpProbe","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/loadBalancingRules/httpRule"}]}}],"inboundNatRules":[{"name":"extlb1-2027-INP1.0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/inboundNatRules/extlb1-2027-INP1.0","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/frontendIPConfigurations/extlb1-2027-FE1"},"frontendPort":5000,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3271/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"extlb1-2027-INP1.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/inboundNatRules/extlb1-2027-INP1.1","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/frontendIPConfigurations/extlb1-2027-FE1"},"frontendPort":5001,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3271/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"extlb1-2027-INP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/inboundNatPools/extlb1-2027-INP1","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":5000,"frontendPortRangeEnd":5099,"backendPort":22,"protocol":"Tcp","idleTimeoutInMinutes":4,"enableFloatingIP":false,"frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/frontendIPConfigurations/extlb1-2027-FE1"}}}]},"sku":{"name":"Basic"}}]}'} + body: {string: !!python/unicode '{"value":[{"name":"lb1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1","etag":"W/\"c3471108-af8a-4922-a0d4-af32b238e3fe\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7b9b8652-4171-4e72-adbf-38873fefb73f","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"c3471108-af8a-4922-a0d4-af32b238e3fe\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"lb1bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool","etag":"W/\"c3471108-af8a-4922-a0d4-af32b238e3fe\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"lb2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2","etag":"W/\"ec6d52b9-d8c3-4b3d-b7f6-eb45ae674a8a\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b41d51fd-30da-4c1b-96f6-f1b22721a79f","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"ec6d52b9-d8c3-4b3d-b7f6-eb45ae674a8a\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}}}],"backendAddressPools":[{"name":"lb2bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool","etag":"W/\"ec6d52b9-d8c3-4b3d-b7f6-eb45ae674a8a\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"lb3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3","etag":"W/\"2562768d-3831-4fc9-8d32-85b490c5e7f8\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ee0f65c3-e7c0-437f-b4b2-fe04f81aa555","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"2562768d-3831-4fc9-8d32-85b490c5e7f8\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.15","privateIPAllocationMethod":"Static","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default"}}}],"backendAddressPools":[{"name":"lb3bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool","etag":"W/\"2562768d-3831-4fc9-8d32-85b490c5e7f8\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"lb4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4","etag":"W/\"7ce3bdc3-9fb1-4c52-bc74-db1b585fc8e2\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1d893b79-fe19-4740-99b3-1e28e5d01a46","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"7ce3bdc3-9fb1-4c52-bc74-db1b585fc8e2\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4"}}}],"backendAddressPools":[{"name":"lb4bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool","etag":"W/\"7ce3bdc3-9fb1-4c52-bc74-db1b585fc8e2\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"mylb","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/loadBalancers/mylb","etag":"W/\"ff457138-cc24-43b8-bc1b-d7994be6a247\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b471d154-64ad-4c3a-a986-c99aec6b92d2","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"ff457138-cc24-43b8-bc1b-d7994be6a247\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"},"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2"}]}}],"backendAddressPools":[{"name":"mylbbepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool","etag":"W/\"ff457138-cc24-43b8-bc1b-d7994be6a247\"","properties":{"provisioningState":"Succeeded"}},{"name":"bap1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1","etag":"W/\"ff457138-cc24-43b8-bc1b-d7994be6a247\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1","etag":"W/\"ff457138-cc24-43b8-bc1b-d7994be6a247\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},"frontendPort":100,"backendPort":100,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false}},{"name":"rule2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2","etag":"W/\"ff457138-cc24-43b8-bc1b-d7994be6a247\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},"frontendPort":200,"backendPort":200,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false}}],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"extlb1-9387","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387","etag":"W/\"e21cddb8-8252-4a3e-ae27-fbbbc370ae42\"","type":"Microsoft.Network/loadBalancers","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"40f1e3eb-b544-4fca-9331-11a5a7e75a4b","frontendIPConfigurations":[{"name":"extlb1-9387-FE1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/frontendIPConfigurations/extlb1-9387-FE1","etag":"W/\"e21cddb8-8252-4a3e-ae27-fbbbc370ae42\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-9387"},"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/loadBalancingRules/httpRule"}],"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/inboundNatRules/extlb1-9387-INP1.1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/inboundNatRules/extlb1-9387-INP1.3"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/inboundNatPools/extlb1-9387-INP1"}]}}],"backendAddressPools":[{"name":"extlb1-9387-BAP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/backendAddressPools/extlb1-9387-BAP1","etag":"W/\"e21cddb8-8252-4a3e-ae27-fbbbc370ae42\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3095/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3095/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/loadBalancingRules/httpRule"}]}}],"loadBalancingRules":[{"name":"httpRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/loadBalancingRules/httpRule","etag":"W/\"e21cddb8-8252-4a3e-ae27-fbbbc370ae42\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/frontendIPConfigurations/extlb1-9387-FE1"},"frontendPort":80,"backendPort":80,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/backendAddressPools/extlb1-9387-BAP1"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/probes/httpProbe"}}}],"probes":[{"name":"httpProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/probes/httpProbe","etag":"W/\"e21cddb8-8252-4a3e-ae27-fbbbc370ae42\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/loadBalancingRules/httpRule"}]}}],"inboundNatRules":[{"name":"extlb1-9387-INP1.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/inboundNatRules/extlb1-9387-INP1.1","etag":"W/\"e21cddb8-8252-4a3e-ae27-fbbbc370ae42\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/frontendIPConfigurations/extlb1-9387-FE1"},"frontendPort":5001,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3095/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"extlb1-9387-INP1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/inboundNatRules/extlb1-9387-INP1.3","etag":"W/\"e21cddb8-8252-4a3e-ae27-fbbbc370ae42\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/frontendIPConfigurations/extlb1-9387-FE1"},"frontendPort":5003,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3095/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"extlb1-9387-INP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/inboundNatPools/extlb1-9387-INP1","etag":"W/\"e21cddb8-8252-4a3e-ae27-fbbbc370ae42\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":5000,"frontendPortRangeEnd":5099,"backendPort":22,"protocol":"Tcp","idleTimeoutInMinutes":4,"enableFloatingIP":false,"enableDestinationServiceEndpoint":false,"frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/loadBalancers/extlb1-9387/frontendIPConfigurations/extlb1-9387-FE1"}}}]},"sku":{"name":"Basic"}},{"name":"extlb1-2027","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","type":"Microsoft.Network/loadBalancers","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8bcafbb3-5146-4857-9ca3-b04b835f63c7","frontendIPConfigurations":[{"name":"extlb1-2027-FE1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/frontendIPConfigurations/extlb1-2027-FE1","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-2027"},"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/loadBalancingRules/httpRule"}],"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/inboundNatRules/extlb1-2027-INP1.0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/inboundNatRules/extlb1-2027-INP1.1"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/inboundNatPools/extlb1-2027-INP1"}]}}],"backendAddressPools":[{"name":"extlb1-2027-BAP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/backendAddressPools/extlb1-2027-BAP1","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3271/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3271/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/loadBalancingRules/httpRule"}]}}],"loadBalancingRules":[{"name":"httpRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/loadBalancingRules/httpRule","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/frontendIPConfigurations/extlb1-2027-FE1"},"frontendPort":80,"backendPort":80,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/backendAddressPools/extlb1-2027-BAP1"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/probes/httpProbe"}}}],"probes":[{"name":"httpProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/probes/httpProbe","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/loadBalancingRules/httpRule"}]}}],"inboundNatRules":[{"name":"extlb1-2027-INP1.0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/inboundNatRules/extlb1-2027-INP1.0","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/frontendIPConfigurations/extlb1-2027-FE1"},"frontendPort":5000,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3271/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"extlb1-2027-INP1.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/inboundNatRules/extlb1-2027-INP1.1","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/frontendIPConfigurations/extlb1-2027-FE1"},"frontendPort":5001,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3271/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"extlb1-2027-INP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/inboundNatPools/extlb1-2027-INP1","etag":"W/\"299d733c-7839-4381-b882-2562d0e24ede\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":5000,"frontendPortRangeEnd":5099,"backendPort":22,"protocol":"Tcp","idleTimeoutInMinutes":4,"enableFloatingIP":false,"enableDestinationServiceEndpoint":false,"frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/loadBalancers/extlb1-2027/frontendIPConfigurations/extlb1-2027-FE1"}}}]},"sku":{"name":"Basic"}},{"name":"extlb1-775","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775","etag":"W/\"57a7088e-6e68-45c3-a45a-4ffe46f794d6\"","type":"Microsoft.Network/loadBalancers","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ea10cae7-1f92-4b96-84e2-8f1e879e5998","frontendIPConfigurations":[{"name":"extlb1-775-FE1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/frontendIPConfigurations/extlb1-775-FE1","etag":"W/\"57a7088e-6e68-45c3-a45a-4ffe46f794d6\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-775"},"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/loadBalancingRules/httpRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/loadBalancingRules/httpsRule"}],"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/inboundNatRules/extlb1-775-INP1.1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/inboundNatRules/extlb1-775-INP1.3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/inboundNatRules/extlb1-775-INP2.3"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/inboundNatPools/extlb1-775-INP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/inboundNatPools/extlb1-775-INP2"}]}}],"backendAddressPools":[{"name":"extlb1-775-BAP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/backendAddressPools/extlb1-775-BAP1","etag":"W/\"57a7088e-6e68-45c3-a45a-4ffe46f794d6\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Compute/virtualMachineScaleSets/vmss382/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Compute/virtualMachineScaleSets/vmss382/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/loadBalancingRules/httpRule"}]}},{"name":"extlb1-775-BAP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/backendAddressPools/extlb1-775-BAP2","etag":"W/\"57a7088e-6e68-45c3-a45a-4ffe46f794d6\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Compute/virtualMachineScaleSets/vmss382/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Compute/virtualMachineScaleSets/vmss382/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/loadBalancingRules/httpsRule"}]}}],"loadBalancingRules":[{"name":"httpRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/loadBalancingRules/httpRule","etag":"W/\"57a7088e-6e68-45c3-a45a-4ffe46f794d6\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/frontendIPConfigurations/extlb1-775-FE1"},"frontendPort":80,"backendPort":80,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/backendAddressPools/extlb1-775-BAP1"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/probes/httpProbe"}}},{"name":"httpsRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/loadBalancingRules/httpsRule","etag":"W/\"57a7088e-6e68-45c3-a45a-4ffe46f794d6\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/frontendIPConfigurations/extlb1-775-FE1"},"frontendPort":443,"backendPort":443,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/backendAddressPools/extlb1-775-BAP2"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/probes/httpsProbe"}}}],"probes":[{"name":"httpProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/probes/httpProbe","etag":"W/\"57a7088e-6e68-45c3-a45a-4ffe46f794d6\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/loadBalancingRules/httpRule"}]}},{"name":"httpsProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/probes/httpsProbe","etag":"W/\"57a7088e-6e68-45c3-a45a-4ffe46f794d6\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/loadBalancingRules/httpsRule"}]}}],"inboundNatRules":[{"name":"extlb1-775-INP1.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/inboundNatRules/extlb1-775-INP1.1","etag":"W/\"57a7088e-6e68-45c3-a45a-4ffe46f794d6\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/frontendIPConfigurations/extlb1-775-FE1"},"frontendPort":5001,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Compute/virtualMachineScaleSets/vmss382/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"extlb1-775-INP1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/inboundNatRules/extlb1-775-INP1.3","etag":"W/\"57a7088e-6e68-45c3-a45a-4ffe46f794d6\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/frontendIPConfigurations/extlb1-775-FE1"},"frontendPort":5003,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Compute/virtualMachineScaleSets/vmss382/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"extlb1-775-INP2.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/inboundNatRules/extlb1-775-INP2.3","etag":"W/\"57a7088e-6e68-45c3-a45a-4ffe46f794d6\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/frontendIPConfigurations/extlb1-775-FE1"},"frontendPort":6003,"backendPort":23,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Compute/virtualMachineScaleSets/vmss382/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"extlb1-775-INP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/inboundNatPools/extlb1-775-INP1","etag":"W/\"57a7088e-6e68-45c3-a45a-4ffe46f794d6\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":5000,"frontendPortRangeEnd":5099,"backendPort":22,"protocol":"Tcp","idleTimeoutInMinutes":4,"enableFloatingIP":false,"enableDestinationServiceEndpoint":false,"frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/frontendIPConfigurations/extlb1-775-FE1"}}},{"name":"extlb1-775-INP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/inboundNatPools/extlb1-775-INP2","etag":"W/\"57a7088e-6e68-45c3-a45a-4ffe46f794d6\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":6000,"frontendPortRangeEnd":6099,"backendPort":23,"protocol":"Tcp","idleTimeoutInMinutes":4,"enableFloatingIP":false,"enableDestinationServiceEndpoint":false,"frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/extlb1-775/frontendIPConfigurations/extlb1-775-FE1"}}}]},"sku":{"name":"Basic"}},{"name":"InternalLb1-923","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923","etag":"W/\"620c06a9-07c4-4f4e-a4ae-4dc1bab3ab49\"","type":"Microsoft.Network/loadBalancers","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8a118b3f-1577-4107-8a15-5d3e6c74dcc1","frontendIPConfigurations":[{"name":"InternalLb1-923-FE1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/frontendIPConfigurations/InternalLb1-923-FE1","etag":"W/\"620c06a9-07c4-4f4e-a4ae-4dc1bab3ab49\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.8","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1"},"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/loadBalancingRules/httpRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/loadBalancingRules/httpsRule"}],"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/inboundNatRules/InternalLb1-923-INP1.1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/inboundNatRules/InternalLb1-923-INP2.1"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/inboundNatPools/InternalLb1-923-INP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/inboundNatPools/InternalLb1-923-INP2"}]}}],"backendAddressPools":[{"name":"InternalLb1-923-BAP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/backendAddressPools/InternalLb1-923-BAP1","etag":"W/\"620c06a9-07c4-4f4e-a4ae-4dc1bab3ab49\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Compute/virtualMachineScaleSets/vmss382/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/loadBalancingRules/httpRule"}]}},{"name":"InternalLb1-923-BAP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/backendAddressPools/InternalLb1-923-BAP2","etag":"W/\"620c06a9-07c4-4f4e-a4ae-4dc1bab3ab49\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Compute/virtualMachineScaleSets/vmss382/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/loadBalancingRules/httpsRule"}]}}],"loadBalancingRules":[{"name":"httpRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/loadBalancingRules/httpRule","etag":"W/\"620c06a9-07c4-4f4e-a4ae-4dc1bab3ab49\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/frontendIPConfigurations/InternalLb1-923-FE1"},"frontendPort":1000,"backendPort":1000,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/backendAddressPools/InternalLb1-923-BAP1"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/probes/httpProbe"}}},{"name":"httpsRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/loadBalancingRules/httpsRule","etag":"W/\"620c06a9-07c4-4f4e-a4ae-4dc1bab3ab49\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/frontendIPConfigurations/InternalLb1-923-FE1"},"frontendPort":1001,"backendPort":1001,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/backendAddressPools/InternalLb1-923-BAP2"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/probes/httpsProbe"}}}],"probes":[{"name":"httpProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/probes/httpProbe","etag":"W/\"620c06a9-07c4-4f4e-a4ae-4dc1bab3ab49\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/loadBalancingRules/httpRule"}]}},{"name":"httpsProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/probes/httpsProbe","etag":"W/\"620c06a9-07c4-4f4e-a4ae-4dc1bab3ab49\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/loadBalancingRules/httpsRule"}]}}],"inboundNatRules":[{"name":"InternalLb1-923-INP1.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/inboundNatRules/InternalLb1-923-INP1.1","etag":"W/\"620c06a9-07c4-4f4e-a4ae-4dc1bab3ab49\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/frontendIPConfigurations/InternalLb1-923-FE1"},"frontendPort":8000,"backendPort":44,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Compute/virtualMachineScaleSets/vmss382/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"InternalLb1-923-INP2.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/inboundNatRules/InternalLb1-923-INP2.1","etag":"W/\"620c06a9-07c4-4f4e-a4ae-4dc1bab3ab49\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/frontendIPConfigurations/InternalLb1-923-FE1"},"frontendPort":9000,"backendPort":45,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","enableDestinationServiceEndpoint":false,"backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Compute/virtualMachineScaleSets/vmss382/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"InternalLb1-923-INP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/inboundNatPools/InternalLb1-923-INP1","etag":"W/\"620c06a9-07c4-4f4e-a4ae-4dc1bab3ab49\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":8000,"frontendPortRangeEnd":8099,"backendPort":44,"protocol":"Tcp","idleTimeoutInMinutes":4,"enableFloatingIP":false,"enableDestinationServiceEndpoint":false,"frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/frontendIPConfigurations/InternalLb1-923-FE1"}}},{"name":"InternalLb1-923-INP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/inboundNatPools/InternalLb1-923-INP2","etag":"W/\"620c06a9-07c4-4f4e-a4ae-4dc1bab3ab49\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":9000,"frontendPortRangeEnd":9099,"backendPort":45,"protocol":"Tcp","idleTimeoutInMinutes":4,"enableFloatingIP":false,"enableDestinationServiceEndpoint":false,"frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/frontendIPConfigurations/InternalLb1-923-FE1"}}}]},"sku":{"name":"Basic"}}]}'} headers: cache-control: [no-cache] - content-length: ['52081'] + content-length: ['46515'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:28 GMT'] + date: ['Fri, 02 Feb 2018 22:33:49 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] - x-ms-original-request-ids: [a2638f7e-fd2b-4f64-b4fb-0cc08e389fd9, 0d0558f4-171a-45c7-8810-379da6f370e7] + x-ms-original-request-ids: [6c290da1-99c8-4462-93ae-c608390cbca4, 6013ddc8-53c6-40c5-b6c2-5829920fe30c] status: {code: 200, message: OK} - request: body: null @@ -922,28 +939,29 @@ interactions: CommandName: [network lb list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"lb1\",\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"183bac8e-620e-40e6-befb-5f94aa859233\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"c3471108-af8a-4922-a0d4-af32b238e3fe\\\"\",\r\ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bb4d59d7-40c0-4853-8ec2-26080174a49e\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b9b8652-4171-4e72-adbf-38873fefb73f\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"183bac8e-620e-40e6-befb-5f94aa859233\\\"\ + ,\r\n \"etag\": \"W/\\\"c3471108-af8a-4922-a0d4-af32b238e3fe\\\"\ \",\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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\ \r\n }\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\ lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"183bac8e-620e-40e6-befb-5f94aa859233\\\"\ + ,\r\n \"etag\": \"W/\\\"c3471108-af8a-4922-a0d4-af32b238e3fe\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\ @@ -951,20 +969,20 @@ interactions: : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \ \ }\r\n },\r\n {\r\n \"name\": \"lb2\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2\"\ - ,\r\n \"etag\": \"W/\\\"a93e6bdb-da4d-4f87-a8ae-ca64b45b6b07\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"ec6d52b9-d8c3-4b3d-b7f6-eb45ae674a8a\\\"\",\r\ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dba49ef1-06c5-4970-bcb2-f3fec97bdb5a\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b41d51fd-30da-4c1b-96f6-f1b22721a79f\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"a93e6bdb-da4d-4f87-a8ae-ca64b45b6b07\\\"\ + ,\r\n \"etag\": \"W/\\\"ec6d52b9-d8c3-4b3d-b7f6-eb45ae674a8a\\\"\ \",\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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2\"\ \r\n }\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\ lb2bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\ - ,\r\n \"etag\": \"W/\\\"a93e6bdb-da4d-4f87-a8ae-ca64b45b6b07\\\"\ + ,\r\n \"etag\": \"W/\\\"ec6d52b9-d8c3-4b3d-b7f6-eb45ae674a8a\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\ @@ -972,13 +990,13 @@ interactions: : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \ \ }\r\n },\r\n {\r\n \"name\": \"lb3\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3\"\ - ,\r\n \"etag\": \"W/\\\"cc071e7e-d730-4413-ba4b-8290da5acf39\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"2562768d-3831-4fc9-8d32-85b490c5e7f8\\\"\",\r\ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"49888361-1d3f-4d11-9ac3-78f7983df295\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ee0f65c3-e7c0-437f-b4b2-fe04f81aa555\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"cc071e7e-d730-4413-ba4b-8290da5acf39\\\"\ + ,\r\n \"etag\": \"W/\\\"2562768d-3831-4fc9-8d32-85b490c5e7f8\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n\ \ \"privateIPAllocationMethod\": \"Static\",\r\n \ @@ -986,7 +1004,7 @@ interactions: \r\n }\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\ lb3bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool\"\ - ,\r\n \"etag\": \"W/\\\"cc071e7e-d730-4413-ba4b-8290da5acf39\\\"\ + ,\r\n \"etag\": \"W/\\\"2562768d-3831-4fc9-8d32-85b490c5e7f8\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\ @@ -994,20 +1012,20 @@ interactions: : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \ \ }\r\n },\r\n {\r\n \"name\": \"lb4\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4\"\ - ,\r\n \"etag\": \"W/\\\"c11b1247-aa10-4ce3-933d-dbc482edbede\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"7ce3bdc3-9fb1-4c52-bc74-db1b585fc8e2\\\"\",\r\ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"29f3c7ce-1559-4cbe-ba40-9e77e7c38834\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1d893b79-fe19-4740-99b3-1e28e5d01a46\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"c11b1247-aa10-4ce3-933d-dbc482edbede\\\"\ + ,\r\n \"etag\": \"W/\\\"7ce3bdc3-9fb1-4c52-bc74-db1b585fc8e2\\\"\ \",\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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4\"\ \r\n }\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\ lb4bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool\"\ - ,\r\n \"etag\": \"W/\\\"c11b1247-aa10-4ce3-933d-dbc482edbede\\\"\ + ,\r\n \"etag\": \"W/\\\"7ce3bdc3-9fb1-4c52-bc74-db1b585fc8e2\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\ @@ -1018,7 +1036,7 @@ interactions: cache-control: [no-cache] content-length: ['8571'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:30 GMT'] + date: ['Fri, 02 Feb 2018 22:33:49 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1034,26 +1052,27 @@ interactions: CommandName: [network lb show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"183bac8e-620e-40e6-befb-5f94aa859233\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"c3471108-af8a-4922-a0d4-af32b238e3fe\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"bb4d59d7-40c0-4853-8ec2-26080174a49e\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"7b9b8652-4171-4e72-adbf-38873fefb73f\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"183bac8e-620e-40e6-befb-5f94aa859233\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3471108-af8a-4922-a0d4-af32b238e3fe\\\"\"\ ,\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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\ \r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\ : [\r\n {\r\n \"name\": \"lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"183bac8e-620e-40e6-befb-5f94aa859233\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3471108-af8a-4922-a0d4-af32b238e3fe\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\"\ @@ -1063,8 +1082,8 @@ interactions: cache-control: [no-cache] content-length: ['1946'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:30 GMT'] - etag: [W/"183bac8e-620e-40e6-befb-5f94aa859233"] + date: ['Fri, 02 Feb 2018 22:33:49 GMT'] + etag: [W/"c3471108-af8a-4922-a0d4-af32b238e3fe"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1081,24 +1100,25 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-11-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3ab74546-189b-4f51-9a11-f6f3d9951542?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b118f83-74fd-4639-9e0e-af60f20ffaec?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 18:10:32 GMT'] + date: ['Fri, 02 Feb 2018 22:33:51 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/3ab74546-189b-4f51-9a11-f6f3d9951542?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4b118f83-74fd-4639-9e0e-af60f20ffaec?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 202, message: Accepted} - request: body: null @@ -1108,18 +1128,19 @@ interactions: CommandName: [network lb delete] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3ab74546-189b-4f51-9a11-f6f3d9951542?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b118f83-74fd-4639-9e0e-af60f20ffaec?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:42 GMT'] + date: ['Fri, 02 Feb 2018 22:34:00 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1135,28 +1156,29 @@ interactions: CommandName: [network lb list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"lb2\",\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2\"\ - ,\r\n \"etag\": \"W/\\\"a93e6bdb-da4d-4f87-a8ae-ca64b45b6b07\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2\"\ + ,\r\n \"etag\": \"W/\\\"ec6d52b9-d8c3-4b3d-b7f6-eb45ae674a8a\\\"\",\r\ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dba49ef1-06c5-4970-bcb2-f3fec97bdb5a\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b41d51fd-30da-4c1b-96f6-f1b22721a79f\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"a93e6bdb-da4d-4f87-a8ae-ca64b45b6b07\\\"\ + ,\r\n \"etag\": \"W/\\\"ec6d52b9-d8c3-4b3d-b7f6-eb45ae674a8a\\\"\ \",\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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2\"\ \r\n }\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\ lb2bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\ - ,\r\n \"etag\": \"W/\\\"a93e6bdb-da4d-4f87-a8ae-ca64b45b6b07\\\"\ + ,\r\n \"etag\": \"W/\\\"ec6d52b9-d8c3-4b3d-b7f6-eb45ae674a8a\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\ @@ -1164,13 +1186,13 @@ interactions: : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \ \ }\r\n },\r\n {\r\n \"name\": \"lb3\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3\"\ - ,\r\n \"etag\": \"W/\\\"cc071e7e-d730-4413-ba4b-8290da5acf39\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"2562768d-3831-4fc9-8d32-85b490c5e7f8\\\"\",\r\ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"49888361-1d3f-4d11-9ac3-78f7983df295\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ee0f65c3-e7c0-437f-b4b2-fe04f81aa555\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"cc071e7e-d730-4413-ba4b-8290da5acf39\\\"\ + ,\r\n \"etag\": \"W/\\\"2562768d-3831-4fc9-8d32-85b490c5e7f8\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n\ \ \"privateIPAllocationMethod\": \"Static\",\r\n \ @@ -1178,7 +1200,7 @@ interactions: \r\n }\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\ lb3bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool\"\ - ,\r\n \"etag\": \"W/\\\"cc071e7e-d730-4413-ba4b-8290da5acf39\\\"\ + ,\r\n \"etag\": \"W/\\\"2562768d-3831-4fc9-8d32-85b490c5e7f8\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\ @@ -1186,20 +1208,20 @@ interactions: : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \ \ }\r\n },\r\n {\r\n \"name\": \"lb4\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4\"\ - ,\r\n \"etag\": \"W/\\\"c11b1247-aa10-4ce3-933d-dbc482edbede\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"7ce3bdc3-9fb1-4c52-bc74-db1b585fc8e2\\\"\",\r\ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"29f3c7ce-1559-4cbe-ba40-9e77e7c38834\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1d893b79-fe19-4740-99b3-1e28e5d01a46\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"c11b1247-aa10-4ce3-933d-dbc482edbede\\\"\ + ,\r\n \"etag\": \"W/\\\"7ce3bdc3-9fb1-4c52-bc74-db1b585fc8e2\\\"\ \",\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_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4\"\ \r\n }\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\ lb4bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool\"\ - ,\r\n \"etag\": \"W/\\\"c11b1247-aa10-4ce3-933d-dbc482edbede\\\"\ + ,\r\n \"etag\": \"W/\\\"7ce3bdc3-9fb1-4c52-bc74-db1b585fc8e2\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\ @@ -1210,7 +1232,7 @@ interactions: cache-control: [no-cache] content-length: ['6446'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:43 GMT'] + date: ['Fri, 02 Feb 2018 22:34:02 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1227,22 +1249,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 18:10:45 GMT'] + date: ['Fri, 02 Feb 2018 22:34:03 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTE9BRDo1RkJBTEFOQ0VSR0w3S1IyTFJQSkU3UllPWU1XTHwwMDFGMTdCQzk1QjIzNzQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTE9BRDo1RkJBTEFOQ0VSUVc3RktaUFBNWUQ3RFhYNkZFUHw0MjU4MjBDQTREQjkwNzFELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_nic.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_nic.yaml index bb82ef1f18b..7f7085fbb0d 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_nic.yaml +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_nic.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"tags": {"use": "az-test"}, "location": "westus"}' + body: !!python/unicode '{"location": "westus", "tags": {"use": "az-test"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -8,23 +8,23 @@ interactions: Connection: [keep-alive] Content-Length: ['50'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:07 GMT'] + date: ['Fri, 02 Feb 2018 22:31:20 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -34,28 +34,28 @@ interactions: CommandName: [network vnet create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:08 GMT'] + date: ['Fri, 02 Feb 2018 22:31:22 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"properties": {"subnets": [{"properties": {"addressPrefix": "10.0.0.0/24"}, - "name": "mysubnet"}], "dhcpOptions": {}, "addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}}, "tags": {}, "location": "westus"}' + body: !!python/unicode '{"location": "westus", "properties": {"subnets": [{"properties": + {"addressPrefix": "10.0.0.0/24"}, "name": "mysubnet"}], "dhcpOptions": {}, "addressSpace": + {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -63,32 +63,34 @@ interactions: Connection: [keep-alive] Content-Length: ['206'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet\"\ - ,\r\n \"etag\": \"W/\\\"6c0cf454-ea87-4aee-ada2-134bd64770a5\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet\"\ + ,\r\n \"etag\": \"W/\\\"402bf942-d1af-4229-8fca-842a30779ea2\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"a7fa0584-cfb7-467c-bdbc-fd4f4e434253\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"26e9f490-f806-46ba-874e-f4f80083661d\"\ ,\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\": \"mysubnet\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\ - ,\r\n \"etag\": \"W/\\\"6c0cf454-ea87-4aee-ada2-134bd64770a5\\\"\"\ + ,\r\n \"etag\": \"W/\\\"402bf942-d1af-4229-8fca-842a30779ea2\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\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/02913d25-a8a8-47ac-abe8-4131b21d0eaf?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eece7359-7d1e-40b9-9121-4af3da54ee04?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['1235'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:10 GMT'] + date: ['Fri, 02 Feb 2018 22:31:22 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -103,18 +105,19 @@ interactions: CommandName: [network vnet create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/02913d25-a8a8-47ac-abe8-4131b21d0eaf?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eece7359-7d1e-40b9-9121-4af3da54ee04?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:13 GMT'] + date: ['Fri, 02 Feb 2018 22:31:25 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -130,22 +133,24 @@ interactions: CommandName: [network vnet create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet\"\ - ,\r\n \"etag\": \"W/\\\"2533aeca-a5f5-4310-8a29-129c5f859eb7\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet\"\ + ,\r\n \"etag\": \"W/\\\"d7c3bc01-3ff6-40ec-a714-af496e115782\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"a7fa0584-cfb7-467c-bdbc-fd4f4e434253\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"26e9f490-f806-46ba-874e-f4f80083661d\"\ ,\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\": \"mysubnet\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\ - ,\r\n \"etag\": \"W/\\\"2533aeca-a5f5-4310-8a29-129c5f859eb7\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d7c3bc01-3ff6-40ec-a714-af496e115782\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ @@ -154,8 +159,8 @@ interactions: cache-control: [no-cache] content-length: ['1237'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:13 GMT'] - etag: [W/"2533aeca-a5f5-4310-8a29-129c5f859eb7"] + date: ['Fri, 02 Feb 2018 22:31:26 GMT'] + etag: [W/"d7c3bc01-3ff6-40ec-a714-af496e115782"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -171,26 +176,26 @@ interactions: CommandName: [network nsg create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:14 GMT'] + date: ['Fri, 02 Feb 2018 22:31:26 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"location": "westus"}' + body: !!python/unicode '{"location": "westus"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -198,20 +203,21 @@ interactions: Connection: [keep-alive] Content-Length: ['22'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mynsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\ - ,\r\n \"etag\": \"W/\\\"dad9b808-a6c2-4e2e-aa60-7da6d06c435e\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mynsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\ + ,\r\n \"etag\": \"W/\\\"9e7786d0-e735-4a52-9a36-65028132bbf0\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"resourceGuid\": \"6a90ddcc-75e1-4b1c-8e5a-01366322aec3\",\r\n \ + ,\r\n \"resourceGuid\": \"73039a9a-f315-408f-84a6-dacf8d79b18a\",\r\n \ \ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\ \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetInBound\"\ - ,\r\n \"etag\": \"W/\\\"dad9b808-a6c2-4e2e-aa60-7da6d06c435e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"9e7786d0-e735-4a52-9a36-65028132bbf0\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -223,7 +229,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\ - ,\r\n \"etag\": \"W/\\\"dad9b808-a6c2-4e2e-aa60-7da6d06c435e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"9e7786d0-e735-4a52-9a36-65028132bbf0\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -235,7 +241,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllInBound\"\ - ,\r\n \"etag\": \"W/\\\"dad9b808-a6c2-4e2e-aa60-7da6d06c435e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"9e7786d0-e735-4a52-9a36-65028132bbf0\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Deny all inbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -246,7 +252,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"dad9b808-a6c2-4e2e-aa60-7da6d06c435e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"9e7786d0-e735-4a52-9a36-65028132bbf0\\\"\"\ ,\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\"\ @@ -258,7 +264,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowInternetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"dad9b808-a6c2-4e2e-aa60-7da6d06c435e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"9e7786d0-e735-4a52-9a36-65028132bbf0\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -270,7 +276,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllOutBound\"\ - ,\r\n \"etag\": \"W/\\\"dad9b808-a6c2-4e2e-aa60-7da6d06c435e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"9e7786d0-e735-4a52-9a36-65028132bbf0\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Deny all outbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -281,16 +287,16 @@ interactions: : [],\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/c69f57a6-5f98-4b0a-b796-f7bc8d914ffe?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dadf0cdd-1098-404e-bc8b-dcd5181c788e?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['6447'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:16 GMT'] + date: ['Fri, 02 Feb 2018 22:31:27 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1191'] status: {code: 201, message: Created} - request: body: null @@ -300,18 +306,19 @@ interactions: CommandName: [network nsg create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c69f57a6-5f98-4b0a-b796-f7bc8d914ffe?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dadf0cdd-1098-404e-bc8b-dcd5181c788e?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:25 GMT'] + date: ['Fri, 02 Feb 2018 22:31:37 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -327,20 +334,21 @@ interactions: CommandName: [network nsg create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mynsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mynsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"6a90ddcc-75e1-4b1c-8e5a-01366322aec3\",\r\n \ + ,\r\n \"resourceGuid\": \"73039a9a-f315-408f-84a6-dacf8d79b18a\",\r\n \ \ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\ \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetInBound\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -352,7 +360,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -364,7 +372,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllInBound\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Deny all inbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -375,7 +383,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow outbound traffic from all VMs to all\ \ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\ @@ -387,7 +395,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowInternetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -399,7 +407,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllOutBound\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Deny all outbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -413,8 +421,8 @@ interactions: cache-control: [no-cache] content-length: ['6454'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:26 GMT'] - etag: [W/"65e0855e-042c-40dc-af38-a9ca790be86c"] + date: ['Fri, 02 Feb 2018 22:31:38 GMT'] + etag: [W/"c1d831f9-5973-4919-ad1d-2c1ed31659af"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -430,20 +438,21 @@ interactions: CommandName: [network nsg show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mynsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mynsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"6a90ddcc-75e1-4b1c-8e5a-01366322aec3\",\r\n \ + ,\r\n \"resourceGuid\": \"73039a9a-f315-408f-84a6-dacf8d79b18a\",\r\n \ \ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\ \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetInBound\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -455,7 +464,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -467,7 +476,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllInBound\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Deny all inbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -478,7 +487,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow outbound traffic from all VMs to all\ \ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\ @@ -490,7 +499,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowInternetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -502,7 +511,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllOutBound\"\ - ,\r\n \"etag\": \"W/\\\"65e0855e-042c-40dc-af38-a9ca790be86c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c1d831f9-5973-4919-ad1d-2c1ed31659af\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Deny all outbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -516,8 +525,8 @@ interactions: cache-control: [no-cache] content-length: ['6454'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:27 GMT'] - etag: [W/"65e0855e-042c-40dc-af38-a9ca790be86c"] + date: ['Fri, 02 Feb 2018 22:31:39 GMT'] + etag: [W/"c1d831f9-5973-4919-ad1d-2c1ed31659af"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -533,26 +542,26 @@ interactions: CommandName: [network nsg create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:28 GMT'] + date: ['Fri, 02 Feb 2018 22:31:40 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"location": "westus"}' + body: !!python/unicode '{"location": "westus"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -560,20 +569,22 @@ interactions: Connection: [keep-alive] Content-Length: ['22'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"myothernsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\ - ,\r\n \"etag\": \"W/\\\"fe7b3657-b42f-419a-acf3-759051411000\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"myothernsg\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\ + ,\r\n \"etag\": \"W/\\\"83733cd0-a364-495e-92cd-7b7261207cd7\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"resourceGuid\": \"307e3753-d29c-46f4-9e75-b6c68d342906\",\r\n \ + ,\r\n \"resourceGuid\": \"0a65613a-0e43-45ee-b758-ec0627c42766\",\r\n \ \ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\ \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowVnetInBound\"\ - ,\r\n \"etag\": \"W/\\\"fe7b3657-b42f-419a-acf3-759051411000\\\"\"\ + ,\r\n \"etag\": \"W/\\\"83733cd0-a364-495e-92cd-7b7261207cd7\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -585,7 +596,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\ - ,\r\n \"etag\": \"W/\\\"fe7b3657-b42f-419a-acf3-759051411000\\\"\"\ + ,\r\n \"etag\": \"W/\\\"83733cd0-a364-495e-92cd-7b7261207cd7\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -597,7 +608,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/DenyAllInBound\"\ - ,\r\n \"etag\": \"W/\\\"fe7b3657-b42f-419a-acf3-759051411000\\\"\"\ + ,\r\n \"etag\": \"W/\\\"83733cd0-a364-495e-92cd-7b7261207cd7\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Deny all inbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -608,7 +619,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowVnetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"fe7b3657-b42f-419a-acf3-759051411000\\\"\"\ + ,\r\n \"etag\": \"W/\\\"83733cd0-a364-495e-92cd-7b7261207cd7\\\"\"\ ,\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\"\ @@ -620,7 +631,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowInternetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"fe7b3657-b42f-419a-acf3-759051411000\\\"\"\ + ,\r\n \"etag\": \"W/\\\"83733cd0-a364-495e-92cd-7b7261207cd7\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -632,7 +643,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/DenyAllOutBound\"\ - ,\r\n \"etag\": \"W/\\\"fe7b3657-b42f-419a-acf3-759051411000\\\"\"\ + ,\r\n \"etag\": \"W/\\\"83733cd0-a364-495e-92cd-7b7261207cd7\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Deny all outbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -643,16 +654,16 @@ interactions: : [],\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/0f04578c-eb76-4b62-ad7b-a33413f18658?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a9c9ef88-37f9-4f92-b855-01cc4838d4cc?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['6487'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:29 GMT'] + date: ['Fri, 02 Feb 2018 22:31:40 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1153'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: null @@ -662,18 +673,19 @@ interactions: CommandName: [network nsg create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0f04578c-eb76-4b62-ad7b-a33413f18658?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a9c9ef88-37f9-4f92-b855-01cc4838d4cc?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:39 GMT'] + date: ['Fri, 02 Feb 2018 22:31:51 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -689,20 +701,22 @@ interactions: CommandName: [network nsg create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"myothernsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\ - ,\r\n \"etag\": \"W/\\\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"myothernsg\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\ + ,\r\n \"etag\": \"W/\\\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"307e3753-d29c-46f4-9e75-b6c68d342906\",\r\n \ + ,\r\n \"resourceGuid\": \"0a65613a-0e43-45ee-b758-ec0627c42766\",\r\n \ \ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\ \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowVnetInBound\"\ - ,\r\n \"etag\": \"W/\\\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -714,7 +728,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\ - ,\r\n \"etag\": \"W/\\\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -726,7 +740,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/DenyAllInBound\"\ - ,\r\n \"etag\": \"W/\\\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Deny all inbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -737,7 +751,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowVnetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow outbound traffic from all VMs to all\ \ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\ @@ -749,7 +763,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowInternetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -761,7 +775,7 @@ interactions: : [],\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_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/DenyAllOutBound\"\ - ,\r\n \"etag\": \"W/\\\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Deny all outbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -775,8 +789,8 @@ interactions: cache-control: [no-cache] content-length: ['6494'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:39 GMT'] - etag: [W/"feb14c0a-6da2-4477-9596-2d5e2b854a9e"] + date: ['Fri, 02 Feb 2018 22:31:51 GMT'] + etag: [W/"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -792,27 +806,27 @@ interactions: CommandName: [network public-ip create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:40 GMT'] + date: ['Fri, 02 Feb 2018 22:31:52 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"properties": {"publicIPAllocationMethod": "Dynamic", "idleTimeoutInMinutes": - 4, "publicIPAddressVersion": "IPv4"}, "sku": {"name": "Basic"}, "location": + body: !!python/unicode '{"sku": {"name": "Basic"}, "properties": {"publicIPAllocationMethod": + "Dynamic", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}, "location": "westus"}' headers: Accept: [application/json] @@ -821,26 +835,28 @@ interactions: Connection: [keep-alive] Content-Length: ['164'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"publicip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ - ,\r\n \"etag\": \"W/\\\"1bb7288e-0fcd-4248-a597-24e6d314f7f2\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"publicip1\",\r\n \"id\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ + ,\r\n \"etag\": \"W/\\\"cdc47f90-fe94-4ab5-981d-7435b179116e\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Updating\",\r\n \"resourceGuid\": \"15ced3ed-834c-4963-9291-e379f5143935\"\ + : \"Updating\",\r\n \"resourceGuid\": \"bffd11fe-69c5-4fb9-8faf-59484065c1b1\"\ ,\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/7bd66bdf-43f3-4459-9e4d-649376297e57?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c1bfa78-dbf7-4ca9-b790-31c5c3db1777?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['666'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:41 GMT'] + date: ['Fri, 02 Feb 2018 22:31:53 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -855,18 +871,19 @@ interactions: CommandName: [network public-ip create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7bd66bdf-43f3-4459-9e4d-649376297e57?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c1bfa78-dbf7-4ca9-b790-31c5c3db1777?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:45 GMT'] + date: ['Fri, 02 Feb 2018 22:31:56 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -882,16 +899,18 @@ interactions: CommandName: [network public-ip create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"publicip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ - ,\r\n \"etag\": \"W/\\\"2988daf6-7caa-4571-93df-e720a999b431\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"publicip1\",\r\n \"id\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ + ,\r\n \"etag\": \"W/\\\"72dfdf48-7d27-4571-bd08-b5b9cfc66f11\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"15ced3ed-834c-4963-9291-e379f5143935\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"bffd11fe-69c5-4fb9-8faf-59484065c1b1\"\ ,\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\"\ @@ -900,8 +919,8 @@ interactions: cache-control: [no-cache] content-length: ['667'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:45 GMT'] - etag: [W/"2988daf6-7caa-4571-93df-e720a999b431"] + date: ['Fri, 02 Feb 2018 22:31:57 GMT'] + etag: [W/"72dfdf48-7d27-4571-bd08-b5b9cfc66f11"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -917,16 +936,18 @@ interactions: CommandName: [network public-ip show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"publicip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ - ,\r\n \"etag\": \"W/\\\"2988daf6-7caa-4571-93df-e720a999b431\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"publicip1\",\r\n \"id\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ + ,\r\n \"etag\": \"W/\\\"72dfdf48-7d27-4571-bd08-b5b9cfc66f11\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"15ced3ed-834c-4963-9291-e379f5143935\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"bffd11fe-69c5-4fb9-8faf-59484065c1b1\"\ ,\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\"\ @@ -935,8 +956,8 @@ interactions: cache-control: [no-cache] content-length: ['667'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:46 GMT'] - etag: [W/"2988daf6-7caa-4571-93df-e720a999b431"] + date: ['Fri, 02 Feb 2018 22:31:57 GMT'] + etag: [W/"72dfdf48-7d27-4571-bd08-b5b9cfc66f11"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -952,19 +973,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:47 GMT'] + date: ['Fri, 02 Feb 2018 22:31:57 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -978,36 +999,37 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_nic_scenario000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_nic_scenario000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27 response: - body: {string: '{"value":[]}'} + body: {string: !!python/unicode '{"value":[]}'} headers: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:47 GMT'] + date: ['Fri, 02 Feb 2018 22:31:58 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"properties": {"mode": "Incremental", "template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "resources": [{"apiVersion": "2017-11-01", "name": "PublicIPmylb", "dependsOn": - [], "location": "westus", "properties": {"publicIPAllocationMethod": "Dynamic"}, - "type": "Microsoft.Network/publicIPAddresses", "tags": {}, "sku": {"name": "Basic"}}, - {"apiVersion": "2017-11-01", "name": "mylb", "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPmylb"], - "location": "westus", "properties": {"frontendIPConfigurations": [{"properties": - {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}, - "name": "LoadBalancerFrontEnd"}], "backendAddressPools": [{"name": "mylbbepool"}]}, - "type": "Microsoft.Network/loadBalancers", "tags": {}, "sku": {"name": "Basic"}}], - "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "outputs": {"loadBalancer": - {"type": "object", "value": "[reference(\''mylb\'')]"}}}, "parameters": {}}}''' + body: !!python/unicode '{"properties": {"mode": "Incremental", "parameters": {}, + "template": {"parameters": {}, "outputs": {"loadBalancer": {"type": "object", + "value": "[reference(''mylb'')]"}}, "variables": {}, "contentVersion": "1.0.0.0", + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "resources": [{"sku": {"name": "Basic"}, "name": "PublicIPmylb", "tags": {}, + "apiVersion": "2017-11-01", "location": "westus", "dependsOn": [], "type": "Microsoft.Network/publicIPAddresses", + "properties": {"publicIPAllocationMethod": "Dynamic"}}, {"sku": {"name": "Basic"}, + "name": "mylb", "tags": {}, "apiVersion": "2017-11-01", "location": "westus", + "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPmylb"], "type": "Microsoft.Network/loadBalancers", + "properties": {"frontendIPConfigurations": [{"name": "LoadBalancerFrontEnd", + "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}}], + "backendAddressPools": [{"name": "mylbbepool"}]}}]}}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1015,24 +1037,24 @@ interactions: Connection: [keep-alive] Content-Length: ['1151'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/lb_deploy_RfhPd66Jdpr77qnKx7h5YnbXdSJAkzI4","name":"lb_deploy_RfhPd66Jdpr77qnKx7h5YnbXdSJAkzI4","properties":{"templateHash":"6275853057209013047","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-12-19T18:07:49.8226436Z","duration":"PT0.5278872S","correlationId":"24840f2b-c320-4b12-959b-e7427fc89767","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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPmylb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"mylb"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/lb_deploy_S44aXI1rn62eLjeEmk8YWWlYhvMKcrr9","name":"lb_deploy_S44aXI1rn62eLjeEmk8YWWlYhvMKcrr9","properties":{"templateHash":"3801910140081836818","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-02-02T22:32:00.9441429Z","duration":"PT0.4812377S","correlationId":"6c82f562-2d22-4a51-82db-e7fb4513c1ed","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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPmylb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"mylb"}]}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/lb_deploy_RfhPd66Jdpr77qnKx7h5YnbXdSJAkzI4/operationStatuses/08586879000161828619?api-version=2017-05-10'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/lb_deploy_S44aXI1rn62eLjeEmk8YWWlYhvMKcrr9/operationStatuses/08586839961650147208?api-version=2017-05-10'] cache-control: [no-cache] content-length: ['1309'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:07:49 GMT'] + date: ['Fri, 02 Feb 2018 22:32:00 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: null @@ -1042,19 +1064,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586879000161828619?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586839961650147208?api-version=2017-05-10 response: - body: {string: '{"status":"Succeeded"}'} + body: {string: !!python/unicode '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:19 GMT'] + date: ['Fri, 02 Feb 2018 22:32:30 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1068,19 +1090,19 @@ interactions: CommandName: [network lb create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/lb_deploy_RfhPd66Jdpr77qnKx7h5YnbXdSJAkzI4","name":"lb_deploy_RfhPd66Jdpr77qnKx7h5YnbXdSJAkzI4","properties":{"templateHash":"6275853057209013047","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-12-19T18:07:56.3118384Z","duration":"PT7.017082S","correlationId":"24840f2b-c320-4b12-959b-e7427fc89767","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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPmylb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"mylb"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"045f31c5-e298-43d8-ae88-af79e5f9fd9e\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}}],"backendAddressPools":[{"name":"mylbbepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool","etag":"W/\"045f31c5-e298-43d8-ae88-af79e5f9fd9e\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/lb_deploy_S44aXI1rn62eLjeEmk8YWWlYhvMKcrr9","name":"lb_deploy_S44aXI1rn62eLjeEmk8YWWlYhvMKcrr9","properties":{"templateHash":"3801910140081836818","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-02-02T22:32:17.5849905Z","duration":"PT17.1220853S","correlationId":"6c82f562-2d22-4a51-82db-e7fb4513c1ed","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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPmylb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"mylb"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"b471d154-64ad-4c3a-a986-c99aec6b92d2","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"d77d7f31-d559-4b77-9b92-9c48dee8b9c4\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}}],"backendAddressPools":[{"name":"mylbbepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool","etag":"W/\"d77d7f31-d559-4b77-9b92-9c48dee8b9c4\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}]}}'} headers: cache-control: [no-cache] - content-length: ['3023'] + content-length: ['3025'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:20 GMT'] + date: ['Fri, 02 Feb 2018 22:32:31 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1094,27 +1116,28 @@ interactions: CommandName: [network lb inbound-nat-rule create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"045f31c5-e298-43d8-ae88-af79e5f9fd9e\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"d77d7f31-d559-4b77-9b92-9c48dee8b9c4\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"045f31c5-e298-43d8-ae88-af79e5f9fd9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d77d7f31-d559-4b77-9b92-9c48dee8b9c4\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ \r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\ : [\r\n {\r\n \"name\": \"mylbbepool\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"045f31c5-e298-43d8-ae88-af79e5f9fd9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d77d7f31-d559-4b77-9b92-9c48dee8b9c4\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\"\ @@ -1124,8 +1147,8 @@ interactions: cache-control: [no-cache] content-length: ['1953'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:21 GMT'] - etag: [W/"045f31c5-e298-43d8-ae88-af79e5f9fd9e"] + date: ['Fri, 02 Feb 2018 22:32:32 GMT'] + etag: [W/"d77d7f31-d559-4b77-9b92-9c48dee8b9c4"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1134,24 +1157,22 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb", - "etag": "W/\\"045f31c5-e298-43d8-ae88-af79e5f9fd9e\\"", "location": "westus", - "properties": {"inboundNatRules": [{"properties": {"backendPort": 100, "protocol": - "Tcp", "enableFloatingIP": false, "frontendPort": 100, "frontendIPConfiguration": - {"properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}, - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded"}, "name": - "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd", - "etag": "W/\\"045f31c5-e298-43d8-ae88-af79e5f9fd9e\\""}}, "name": "rule1"}], - "outboundNatRules": [], "resourceGuid": "1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf", - "inboundNatPools": [], "backendAddressPools": [{"properties": {"provisioningState": - "Succeeded"}, "name": "mylbbepool", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool", - "etag": "W/\\"045f31c5-e298-43d8-ae88-af79e5f9fd9e\\""}], "frontendIPConfigurations": - [{"properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}, - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded"}, "name": - "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd", - "etag": "W/\\"045f31c5-e298-43d8-ae88-af79e5f9fd9e\\""}], "loadBalancingRules": - [], "probes": [], "provisioningState": "Succeeded"}, "sku": {"name": "Basic"}, - "tags": {}}''' + body: !!python/unicode '{"sku": {"name": "Basic"}, "etag": "W/\"d77d7f31-d559-4b77-9b92-9c48dee8b9c4\"", + "location": "westus", "tags": {}, "properties": {"inboundNatRules": [{"properties": + {"protocol": "Tcp", "backendPort": 100, "frontendIPConfiguration": {"etag": + "W/\"d77d7f31-d559-4b77-9b92-9c48dee8b9c4\"", "properties": {"privateIPAllocationMethod": + "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}, + "name": "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}, + "enableFloatingIP": false, "frontendPort": 100}, "name": "rule1"}], "frontendIPConfigurations": + [{"etag": "W/\"d77d7f31-d559-4b77-9b92-9c48dee8b9c4\"", "properties": {"privateIPAllocationMethod": + "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}, + "name": "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}], + "outboundNatRules": [], "loadBalancingRules": [], "backendAddressPools": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool", + "etag": "W/\"d77d7f31-d559-4b77-9b92-9c48dee8b9c4\"", "name": "mylbbepool", + "properties": {"provisioningState": "Succeeded"}}], "inboundNatPools": [], "probes": + [], "resourceGuid": "b471d154-64ad-4c3a-a986-c99aec6b92d2", "provisioningState": + "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1159,20 +1180,21 @@ interactions: Connection: [keep-alive] Content-Length: ['2399'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"cb14e810-d890-4924-ad60-b971c40d420b\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"cb14e810-d890-4924-ad60-b971c40d420b\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ @@ -1181,32 +1203,33 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"cb14e810-d890-4924-ad60-b971c40d420b\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\ - ,\r\n \"etag\": \"W/\\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"cb14e810-d890-4924-ad60-b971c40d420b\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\ : 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\ - \n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\ + \n \"inboundNatPools\": []\r\n },\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/13e4d0ac-7840-421f-a274-3647e838817d?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/568703ff-ee0c-4996-8c0d-016a8133394e?api-version=2017-11-01'] cache-control: [no-cache] - content-length: ['3167'] + content-length: ['3221'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:21 GMT'] + date: ['Fri, 02 Feb 2018 22:32:32 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] - x-ms-ratelimit-remaining-subscription-writes: ['1185'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -1216,18 +1239,19 @@ interactions: CommandName: [network lb inbound-nat-rule create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/13e4d0ac-7840-421f-a274-3647e838817d?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/568703ff-ee0c-4996-8c0d-016a8133394e?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:52 GMT'] + date: ['Fri, 02 Feb 2018 22:33:03 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1243,20 +1267,21 @@ interactions: CommandName: [network lb inbound-nat-rule create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"cb14e810-d890-4924-ad60-b971c40d420b\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"cb14e810-d890-4924-ad60-b971c40d420b\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ @@ -1265,25 +1290,26 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"cb14e810-d890-4924-ad60-b971c40d420b\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\ - ,\r\n \"etag\": \"W/\\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"cb14e810-d890-4924-ad60-b971c40d420b\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\ : 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\ - \n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\ + \n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"\ + Basic\"\r\n }\r\n}"} headers: cache-control: [no-cache] - content-length: ['3167'] + content-length: ['3221'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:53 GMT'] - etag: [W/"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e"] + date: ['Fri, 02 Feb 2018 22:33:03 GMT'] + etag: [W/"cb14e810-d890-4924-ad60-b971c40d420b"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1299,20 +1325,21 @@ interactions: CommandName: [network lb inbound-nat-rule create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"cb14e810-d890-4924-ad60-b971c40d420b\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"cb14e810-d890-4924-ad60-b971c40d420b\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ @@ -1321,25 +1348,26 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"cb14e810-d890-4924-ad60-b971c40d420b\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\ - ,\r\n \"etag\": \"W/\\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"cb14e810-d890-4924-ad60-b971c40d420b\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\ : 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\ - \n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\ + \n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"\ + Basic\"\r\n }\r\n}"} headers: cache-control: [no-cache] - content-length: ['3167'] + content-length: ['3221'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:53 GMT'] - etag: [W/"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e"] + date: ['Fri, 02 Feb 2018 22:33:04 GMT'] + etag: [W/"cb14e810-d890-4924-ad60-b971c40d420b"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1348,28 +1376,27 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb", - "etag": "W/\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\"", "location": "westus", - "properties": {"inboundNatRules": [{"properties": {"backendPort": 100, "idleTimeoutInMinutes": - 4, "frontendPort": 100, "protocol": "Tcp", "enableFloatingIP": false, "frontendIPConfiguration": + body: !!python/unicode '{"sku": {"name": "Basic"}, "etag": "W/\"cb14e810-d890-4924-ad60-b971c40d420b\"", + "location": "westus", "tags": {}, "properties": {"inboundNatRules": [{"etag": + "W/\"cb14e810-d890-4924-ad60-b971c40d420b\"", "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}, - "provisioningState": "Succeeded"}, "name": "rule1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1", - "etag": "W/\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\""}, {"properties": {"backendPort": - 200, "protocol": "Tcp", "enableFloatingIP": false, "frontendPort": 200, "frontendIPConfiguration": - {"properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}, - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded"}, "name": - "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd", - "etag": "W/\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\""}}, "name": "rule2"}], - "outboundNatRules": [], "resourceGuid": "1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf", - "inboundNatPools": [], "backendAddressPools": [{"properties": {"provisioningState": - "Succeeded"}, "name": "mylbbepool", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool", - "etag": "W/\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\""}], "frontendIPConfigurations": - [{"properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}, - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded"}, "name": - "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd", - "etag": "W/\\"a3d63d0c-a6de-4754-ba3e-6d3682b1cd4e\\""}], "loadBalancingRules": - [], "probes": [], "provisioningState": "Succeeded"}, "sku": {"name": "Basic"}, - "tags": {}}''' + "protocol": "Tcp", "frontendPort": 100, "backendPort": 100, "enableFloatingIP": + false, "idleTimeoutInMinutes": 4, "provisioningState": "Succeeded"}, "name": + "rule1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1"}, + {"properties": {"protocol": "Tcp", "backendPort": 200, "frontendIPConfiguration": + {"etag": "W/\"cb14e810-d890-4924-ad60-b971c40d420b\"", "properties": {"privateIPAllocationMethod": + "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}, + "name": "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}, + "enableFloatingIP": false, "frontendPort": 200}, "name": "rule2"}], "frontendIPConfigurations": + [{"etag": "W/\"cb14e810-d890-4924-ad60-b971c40d420b\"", "properties": {"privateIPAllocationMethod": + "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}, + "name": "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}], + "outboundNatRules": [], "loadBalancingRules": [], "backendAddressPools": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool", + "etag": "W/\"cb14e810-d890-4924-ad60-b971c40d420b\"", "name": "mylbbepool", + "properties": {"provisioningState": "Succeeded"}}], "inboundNatPools": [], "probes": + [], "resourceGuid": "b471d154-64ad-4c3a-a986-c99aec6b92d2", "provisioningState": + "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1377,20 +1404,21 @@ interactions: Connection: [keep-alive] Content-Length: ['3131'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ @@ -1400,39 +1428,41 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\ : 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \ - \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n },\r\n {\r\n \"name\": \"rule2\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\ : 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\ - \n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\ + \n \"inboundNatPools\": []\r\n },\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/30d67628-cfee-4241-921a-00bc6c2abba1?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/21a5ac35-45f7-473a-899b-43ad23faedc3?api-version=2017-11-01'] cache-control: [no-cache] - content-length: ['4331'] + content-length: ['4439'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:08:54 GMT'] + date: ['Fri, 02 Feb 2018 22:33:04 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -1442,18 +1472,19 @@ interactions: CommandName: [network lb inbound-nat-rule create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/30d67628-cfee-4241-921a-00bc6c2abba1?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/21a5ac35-45f7-473a-899b-43ad23faedc3?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:25 GMT'] + date: ['Fri, 02 Feb 2018 22:33:34 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1469,20 +1500,21 @@ interactions: CommandName: [network lb inbound-nat-rule create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ @@ -1492,32 +1524,34 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\ : 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \ - \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n },\r\n {\r\n \"name\": \"rule2\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\ : 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\ - \n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\ + \n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"\ + Basic\"\r\n }\r\n}"} headers: cache-control: [no-cache] - content-length: ['4331'] + content-length: ['4439'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:24 GMT'] - etag: [W/"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd"] + date: ['Fri, 02 Feb 2018 22:33:34 GMT'] + etag: [W/"e085bb03-009b-4235-8081-000e0efdf014"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1533,20 +1567,21 @@ interactions: CommandName: [network lb inbound-nat-rule list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ @@ -1556,32 +1591,34 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\ : 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \ - \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n },\r\n {\r\n \"name\": \"rule2\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\ : 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\ - \n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\ + \n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"\ + Basic\"\r\n }\r\n}"} headers: cache-control: [no-cache] - content-length: ['4331'] + content-length: ['4439'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:26 GMT'] - etag: [W/"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd"] + date: ['Fri, 02 Feb 2018 22:33:35 GMT'] + etag: [W/"e085bb03-009b-4235-8081-000e0efdf014"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1597,20 +1634,21 @@ interactions: CommandName: [network lb address-pool create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ @@ -1620,32 +1658,34 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\ : 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \ - \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ - ,\r\n \"etag\": \"W/\\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\\"\"\ + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n },\r\n {\r\n \"name\": \"rule2\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ + ,\r\n \"etag\": \"W/\\\"e085bb03-009b-4235-8081-000e0efdf014\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\ : 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\ - \n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\ + \n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"\ + Basic\"\r\n }\r\n}"} headers: cache-control: [no-cache] - content-length: ['4331'] + content-length: ['4439'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:26 GMT'] - etag: [W/"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd"] + date: ['Fri, 02 Feb 2018 22:33:36 GMT'] + etag: [W/"e085bb03-009b-4235-8081-000e0efdf014"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1654,27 +1694,28 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb", - "etag": "W/\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\"", "location": "westus", - "properties": {"inboundNatRules": [{"properties": {"backendPort": 100, "idleTimeoutInMinutes": - 4, "frontendPort": 100, "protocol": "Tcp", "enableFloatingIP": false, "frontendIPConfiguration": + body: !!python/unicode '{"sku": {"name": "Basic"}, "etag": "W/\"e085bb03-009b-4235-8081-000e0efdf014\"", + "location": "westus", "tags": {}, "properties": {"inboundNatRules": [{"etag": + "W/\"e085bb03-009b-4235-8081-000e0efdf014\"", "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}, - "provisioningState": "Succeeded"}, "name": "rule1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1", - "etag": "W/\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\""}, {"properties": {"backendPort": - 200, "idleTimeoutInMinutes": 4, "frontendPort": 200, "protocol": "Tcp", "enableFloatingIP": - false, "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}, - "provisioningState": "Succeeded"}, "name": "rule2", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2", - "etag": "W/\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\""}], "outboundNatRules": - [], "resourceGuid": "1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf", "inboundNatPools": - [], "backendAddressPools": [{"properties": {"provisioningState": "Succeeded"}, - "name": "mylbbepool", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool", - "etag": "W/\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\""}, {"name": "bap1"}], - "frontendIPConfigurations": [{"properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}, - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded"}, "name": - "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd", - "etag": "W/\\"6f264aba-1f97-4cc3-bfb8-2c9e06e5a2fd\\""}], "loadBalancingRules": - [], "probes": [], "provisioningState": "Succeeded"}, "sku": {"name": "Basic"}, - "tags": {}}''' + "protocol": "Tcp", "frontendPort": 100, "backendPort": 100, "enableFloatingIP": + false, "idleTimeoutInMinutes": 4, "provisioningState": "Succeeded"}, "name": + "rule1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1"}, + {"etag": "W/\"e085bb03-009b-4235-8081-000e0efdf014\"", "properties": {"frontendIPConfiguration": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}, + "protocol": "Tcp", "frontendPort": 200, "backendPort": 200, "enableFloatingIP": + false, "idleTimeoutInMinutes": 4, "provisioningState": "Succeeded"}, "name": + "rule2", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2"}], + "frontendIPConfigurations": [{"etag": "W/\"e085bb03-009b-4235-8081-000e0efdf014\"", + "properties": {"privateIPAllocationMethod": "Dynamic", "provisioningState": + "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}, + "name": "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}], + "outboundNatRules": [], "loadBalancingRules": [], "backendAddressPools": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool", + "etag": "W/\"e085bb03-009b-4235-8081-000e0efdf014\"", "name": "mylbbepool", + "properties": {"provisioningState": "Succeeded"}}, {"name": "bap1"}], "inboundNatPools": + [], "probes": [], "resourceGuid": "b471d154-64ad-4c3a-a986-c99aec6b92d2", "provisioningState": + "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1682,20 +1723,21 @@ interactions: Connection: [keep-alive] Content-Length: ['3077'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ @@ -1705,43 +1747,45 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\ : 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \ - \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n },\r\n {\r\n \"name\": \"rule2\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\ : 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\ - \n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\ + \n \"inboundNatPools\": []\r\n },\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/4f43d617-30b3-4586-acac-20db70f1d5f3?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/940adfd1-510d-4094-beb8-e1d3ac856ba8?api-version=2017-11-01'] cache-control: [no-cache] - content-length: ['4751'] + content-length: ['4859'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:26 GMT'] + date: ['Fri, 02 Feb 2018 22:33:36 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] status: {code: 200, message: OK} - request: body: null @@ -1751,18 +1795,19 @@ interactions: CommandName: [network lb address-pool create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f43d617-30b3-4586-acac-20db70f1d5f3?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/940adfd1-510d-4094-beb8-e1d3ac856ba8?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:57 GMT'] + date: ['Fri, 02 Feb 2018 22:34:06 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1778,20 +1823,21 @@ interactions: CommandName: [network lb address-pool create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ @@ -1801,36 +1847,38 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\ : 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \ - \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n },\r\n {\r\n \"name\": \"rule2\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\ : 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\ - \n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\ + \n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"\ + Basic\"\r\n }\r\n}"} headers: cache-control: [no-cache] - content-length: ['4751'] + content-length: ['4859'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:57 GMT'] - etag: [W/"b02b321d-5521-4a02-8638-7839dd388538"] + date: ['Fri, 02 Feb 2018 22:34:07 GMT'] + etag: [W/"ff457138-cc24-43b8-bc1b-d7994be6a247"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1846,20 +1894,21 @@ interactions: CommandName: [network lb address-pool create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ @@ -1869,36 +1918,38 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\ : 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \ - \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ - ,\r\n \"etag\": \"W/\\\"b02b321d-5521-4a02-8638-7839dd388538\\\"\"\ + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n },\r\n {\r\n \"name\": \"rule2\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ + ,\r\n \"etag\": \"W/\\\"ff457138-cc24-43b8-bc1b-d7994be6a247\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\ : 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\ - \n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\ + \n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"\ + Basic\"\r\n }\r\n}"} headers: cache-control: [no-cache] - content-length: ['4751'] + content-length: ['4859'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:57 GMT'] - etag: [W/"b02b321d-5521-4a02-8638-7839dd388538"] + date: ['Fri, 02 Feb 2018 22:34:07 GMT'] + etag: [W/"ff457138-cc24-43b8-bc1b-d7994be6a247"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1907,29 +1958,30 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb", - "etag": "W/\\"b02b321d-5521-4a02-8638-7839dd388538\\"", "location": "westus", - "properties": {"inboundNatRules": [{"properties": {"backendPort": 100, "idleTimeoutInMinutes": - 4, "frontendPort": 100, "protocol": "Tcp", "enableFloatingIP": false, "frontendIPConfiguration": + body: !!python/unicode '{"sku": {"name": "Basic"}, "etag": "W/\"ff457138-cc24-43b8-bc1b-d7994be6a247\"", + "location": "westus", "tags": {}, "properties": {"inboundNatRules": [{"etag": + "W/\"ff457138-cc24-43b8-bc1b-d7994be6a247\"", "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}, - "provisioningState": "Succeeded"}, "name": "rule1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1", - "etag": "W/\\"b02b321d-5521-4a02-8638-7839dd388538\\""}, {"properties": {"backendPort": - 200, "idleTimeoutInMinutes": 4, "frontendPort": 200, "protocol": "Tcp", "enableFloatingIP": - false, "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}, - "provisioningState": "Succeeded"}, "name": "rule2", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2", - "etag": "W/\\"b02b321d-5521-4a02-8638-7839dd388538\\""}], "outboundNatRules": - [], "resourceGuid": "1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf", "inboundNatPools": - [], "backendAddressPools": [{"properties": {"provisioningState": "Succeeded"}, - "name": "mylbbepool", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool", - "etag": "W/\\"b02b321d-5521-4a02-8638-7839dd388538\\""}, {"properties": {"provisioningState": - "Succeeded"}, "name": "bap1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1", - "etag": "W/\\"b02b321d-5521-4a02-8638-7839dd388538\\""}, {"name": "bap2"}], - "frontendIPConfigurations": [{"properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}, - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded"}, "name": - "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd", - "etag": "W/\\"b02b321d-5521-4a02-8638-7839dd388538\\""}], "loadBalancingRules": - [], "probes": [], "provisioningState": "Succeeded"}, "sku": {"name": "Basic"}, - "tags": {}}''' + "protocol": "Tcp", "frontendPort": 100, "backendPort": 100, "enableFloatingIP": + false, "idleTimeoutInMinutes": 4, "provisioningState": "Succeeded"}, "name": + "rule1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1"}, + {"etag": "W/\"ff457138-cc24-43b8-bc1b-d7994be6a247\"", "properties": {"frontendIPConfiguration": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}, + "protocol": "Tcp", "frontendPort": 200, "backendPort": 200, "enableFloatingIP": + false, "idleTimeoutInMinutes": 4, "provisioningState": "Succeeded"}, "name": + "rule2", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2"}], + "frontendIPConfigurations": [{"etag": "W/\"ff457138-cc24-43b8-bc1b-d7994be6a247\"", + "properties": {"privateIPAllocationMethod": "Dynamic", "provisioningState": + "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}, + "name": "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}], + "outboundNatRules": [], "loadBalancingRules": [], "backendAddressPools": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool", + "etag": "W/\"ff457138-cc24-43b8-bc1b-d7994be6a247\"", "name": "mylbbepool", + "properties": {"provisioningState": "Succeeded"}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1", + "etag": "W/\"ff457138-cc24-43b8-bc1b-d7994be6a247\"", "name": "bap1", "properties": + {"provisioningState": "Succeeded"}}, {"name": "bap2"}], "inboundNatPools": [], + "probes": [], "resourceGuid": "b471d154-64ad-4c3a-a986-c99aec6b92d2", "provisioningState": + "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1937,20 +1989,21 @@ interactions: Connection: [keep-alive] Content-Length: ['3423'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ @@ -1960,47 +2013,49 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n },\r\n {\r\n \"name\": \"bap2\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap2\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\ : 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \ - \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n },\r\n {\r\n \"name\": \"rule2\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\ : 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\ - \n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\ + \n \"inboundNatPools\": []\r\n },\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/c4d7ede5-98ad-45f4-95ef-4bfaae30dcbb?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/09f1c448-d1be-4800-b1e8-7c3422092df9?api-version=2017-11-01'] cache-control: [no-cache] - content-length: ['5171'] + content-length: ['5279'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:58 GMT'] + date: ['Fri, 02 Feb 2018 22:34:08 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-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -2010,18 +2065,19 @@ interactions: CommandName: [network lb address-pool create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4d7ede5-98ad-45f4-95ef-4bfaae30dcbb?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/09f1c448-d1be-4800-b1e8-7c3422092df9?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:29 GMT'] + date: ['Fri, 02 Feb 2018 22:34:38 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2037,20 +2093,21 @@ interactions: CommandName: [network lb address-pool create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ @@ -2060,40 +2117,42 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n },\r\n {\r\n \"name\": \"bap2\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap2\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\ : 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \ - \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n },\r\n {\r\n \"name\": \"rule2\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\ : 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\ - \n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\ + \n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"\ + Basic\"\r\n }\r\n}"} headers: cache-control: [no-cache] - content-length: ['5171'] + content-length: ['5279'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:29 GMT'] - etag: [W/"b9eec4b8-bd81-47d4-a451-ce24c0a46968"] + date: ['Fri, 02 Feb 2018 22:34:39 GMT'] + etag: [W/"96b63a6c-4dcd-477c-9eb8-808329b55343"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2109,20 +2168,21 @@ interactions: CommandName: [network lb address-pool list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bf0e42b-99ee-4fac-8f13-f6b8fdddb7bf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b471d154-64ad-4c3a-a986-c99aec6b92d2\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\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_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\ @@ -2132,40 +2192,42 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n },\r\n {\r\n \"name\": \"bap2\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap2\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\ \ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\ : 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \ - \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ - ,\r\n \"etag\": \"W/\\\"b9eec4b8-bd81-47d4-a451-ce24c0a46968\\\"\"\ + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n },\r\n {\r\n \"name\": \"rule2\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\ + ,\r\n \"etag\": \"W/\\\"96b63a6c-4dcd-477c-9eb8-808329b55343\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\ \r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\ : 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\ - \n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"} + : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ + : false\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\ + \n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"\ + Basic\"\r\n }\r\n}"} headers: cache-control: [no-cache] - content-length: ['5171'] + content-length: ['5279'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:30 GMT'] - etag: [W/"b9eec4b8-bd81-47d4-a451-ce24c0a46968"] + date: ['Fri, 02 Feb 2018 22:34:39 GMT'] + etag: [W/"96b63a6c-4dcd-477c-9eb8-808329b55343"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2181,30 +2243,29 @@ interactions: CommandName: [network nic create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:30 GMT'] + date: ['Fri, 02 Feb 2018 22:34:39 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"properties": {"ipConfigurations": [{"properties": {"subnet": {"id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}, - "privateIPAllocationMethod": "Dynamic", "privateIPAddressVersion": "IPv4"}, - "name": "ipconfig1"}], "dnsSettings": {"dnsServers": []}, "enableIPForwarding": - false}, "location": "westus"}''' + body: !!python/unicode '{"properties": {"dnsSettings": {"dnsServers": []}, "ipConfigurations": + [{"name": "ipconfig1", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}, + "privateIPAllocationMethod": "Dynamic", "privateIPAddressVersion": "IPv4"}}], + "enableIPForwarding": false}, "location": "westus"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -2212,35 +2273,37 @@ interactions: Connection: [keep-alive] Content-Length: ['470'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"b3ca6c18-fa75-46e8-ad0f-7d78e97a99c5\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"cab2ffb4-3639-42d8-bad6-3231019c0d49\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"b3ca6c18-fa75-46e8-ad0f-7d78e97a99c5\\\"\"\ + ,\r\n \"etag\": \"W/\\\"cab2ffb4-3639-42d8-bad6-3231019c0d49\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\ \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ \r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b12187c5-9ea0-45e9-8e2c-fcf106b3ece2?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a0eb69f7-3186-4ec4-add7-2ce27cd7fb86?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['1724'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:31 GMT'] + date: ['Fri, 02 Feb 2018 22:34:40 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2255,18 +2318,19 @@ interactions: CommandName: [network nic create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b12187c5-9ea0-45e9-8e2c-fcf106b3ece2?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a0eb69f7-3186-4ec4-add7-2ce27cd7fb86?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:11:02 GMT'] + date: ['Fri, 02 Feb 2018 22:35:11 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2282,26 +2346,28 @@ interactions: CommandName: [network nic create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"b3ca6c18-fa75-46e8-ad0f-7d78e97a99c5\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"cab2ffb4-3639-42d8-bad6-3231019c0d49\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"b3ca6c18-fa75-46e8-ad0f-7d78e97a99c5\\\"\"\ + ,\r\n \"etag\": \"W/\\\"cab2ffb4-3639-42d8-bad6-3231019c0d49\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\ \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ \r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"} @@ -2309,8 +2375,8 @@ interactions: cache-control: [no-cache] content-length: ['1724'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:11:02 GMT'] - etag: [W/"b3ca6c18-fa75-46e8-ad0f-7d78e97a99c5"] + date: ['Fri, 02 Feb 2018 22:35:11 GMT'] + etag: [W/"cab2ffb4-3639-42d8-bad6-3231019c0d49"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2326,36 +2392,37 @@ interactions: CommandName: [network nic create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:11:03 GMT'] + date: ['Fri, 02 Feb 2018 22:35:11 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"properties": {"ipConfigurations": [{"properties": {"subnet": {"id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}, - "privateIPAddress": "10.0.0.15", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"}, - "privateIPAddressVersion": "IPv4", "loadBalancerInboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1"}, + body: !!python/unicode '{"properties": {"ipConfigurations": [{"properties": {"loadBalancerInboundNatRules": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2"}], - "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool"}, + "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}, + "privateIPAddressVersion": "IPv4", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"}, + "privateIPAllocationMethod": "Static", "loadBalancerBackendAddressPools": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap2"}], - "privateIPAllocationMethod": "Static"}, "name": "ipconfig1"}], "dnsSettings": - {"internalDnsNameLabel": "test", "dnsServers": ["100.1.2.3"]}, "enableAcceleratedNetworking": - true, "enableIPForwarding": true}, "location": "westus"}''' + "privateIPAddress": "10.0.0.15"}, "name": "ipconfig1"}], "dnsSettings": {"internalDnsNameLabel": + "test", "dnsServers": ["100.1.2.3"]}, "enableIPForwarding": true, "enableAcceleratedNetworking": + true}, "location": "westus"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -2363,19 +2430,21 @@ interactions: Connection: [keep-alive] Content-Length: ['2010'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"5877e82e-2a3e-4a8b-8f13-80d592df531a\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"8adc10b3-9aa1-424e-9ba0-5325d39260ef\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"5877e82e-2a3e-4a8b-8f13-80d592df531a\\\"\"\ + ,\r\n \"etag\": \"W/\\\"8adc10b3-9aa1-424e-9ba0-5325d39260ef\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\ : \"Static\",\r\n \"publicIPAddress\": {\r\n \"id\": \"\ @@ -2392,24 +2461,24 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"100.1.2.3\"\r\ \n ],\r\n \"appliedDnsServers\": [],\r\n \"internalDnsNameLabel\"\ - : \"test\",\r\n \"internalFqdn\": \"test.qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ - ,\r\n \"internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + : \"test\",\r\n \"internalFqdn\": \"test.sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ + ,\r\n \"internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": true,\r\n \"enableIPForwarding\"\ : true,\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\r\ \n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6b5e6581-17fb-4756-b0bb-263f018d1b1d?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f3fe94fa-194a-4b1e-a2b2-3c2ca295b29f?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['3602'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:11:04 GMT'] + date: ['Fri, 02 Feb 2018 22:35: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-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] status: {code: 200, message: OK} - request: body: null @@ -2419,18 +2488,19 @@ interactions: CommandName: [network nic create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6b5e6581-17fb-4756-b0bb-263f018d1b1d?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f3fe94fa-194a-4b1e-a2b2-3c2ca295b29f?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:11:34 GMT'] + date: ['Fri, 02 Feb 2018 22:35:42 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2446,19 +2516,21 @@ interactions: CommandName: [network nic create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"5877e82e-2a3e-4a8b-8f13-80d592df531a\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"8adc10b3-9aa1-424e-9ba0-5325d39260ef\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"5877e82e-2a3e-4a8b-8f13-80d592df531a\\\"\"\ + ,\r\n \"etag\": \"W/\\\"8adc10b3-9aa1-424e-9ba0-5325d39260ef\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\ : \"Static\",\r\n \"publicIPAddress\": {\r\n \"id\": \"\ @@ -2475,8 +2547,8 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"100.1.2.3\"\r\ \n ],\r\n \"appliedDnsServers\": [],\r\n \"internalDnsNameLabel\"\ - : \"test\",\r\n \"internalFqdn\": \"test.qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ - ,\r\n \"internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + : \"test\",\r\n \"internalFqdn\": \"test.sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ + ,\r\n \"internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": true,\r\n \"enableIPForwarding\"\ : true,\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\r\ \n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"} @@ -2484,8 +2556,8 @@ interactions: cache-control: [no-cache] content-length: ['3602'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:11:34 GMT'] - etag: [W/"5877e82e-2a3e-4a8b-8f13-80d592df531a"] + date: ['Fri, 02 Feb 2018 22:35:43 GMT'] + etag: [W/"8adc10b3-9aa1-424e-9ba0-5325d39260ef"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2501,31 +2573,30 @@ interactions: CommandName: [network nic create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:11:35 GMT'] + date: ['Fri, 02 Feb 2018 22:35:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"properties": {"ipConfigurations": [{"properties": {"subnet": {"id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}, - "privateIPAllocationMethod": "Dynamic", "privateIPAddressVersion": "IPv4"}, - "name": "ipconfig1"}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg"}, - "dnsSettings": {"dnsServers": []}, "enableIPForwarding": false}, "location": - "westus"}''' + body: !!python/unicode '{"properties": {"networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg"}, + "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "ipconfig1", + "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}, + "privateIPAllocationMethod": "Dynamic", "privateIPAddressVersion": "IPv4"}}], + "enableIPForwarding": false}, "location": "westus"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -2533,36 +2604,38 @@ interactions: Connection: [keep-alive] Content-Length: ['704'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"3ef0db91-875f-41a0-98d4-64fefed5bc44\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"f49ae259-403a-4fcb-9469-b62c8641aa98\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"3ef0db91-875f-41a0-98d4-64fefed5bc44\\\"\"\ + ,\r\n \"etag\": \"W/\\\"f49ae259-403a-4fcb-9469-b62c8641aa98\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\ \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\ \r\n },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ \r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b8ddd3a6-871b-497c-8349-e54b0f7992b2?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bd2b5e54-a184-48ec-bfeb-5d0bb819b48e?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['1978'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:11:35 GMT'] + date: ['Fri, 02 Feb 2018 22:35:44 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2579,18 +2652,19 @@ interactions: CommandName: [network nic create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b8ddd3a6-871b-497c-8349-e54b0f7992b2?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bd2b5e54-a184-48ec-bfeb-5d0bb819b48e?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:12:06 GMT'] + date: ['Fri, 02 Feb 2018 22:36:15 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2606,26 +2680,28 @@ interactions: CommandName: [network nic create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"3ef0db91-875f-41a0-98d4-64fefed5bc44\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"f49ae259-403a-4fcb-9469-b62c8641aa98\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"3ef0db91-875f-41a0-98d4-64fefed5bc44\\\"\"\ + ,\r\n \"etag\": \"W/\\\"f49ae259-403a-4fcb-9469-b62c8641aa98\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\ \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\ \r\n },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ @@ -2634,8 +2710,8 @@ interactions: cache-control: [no-cache] content-length: ['1978'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:12:07 GMT'] - etag: [W/"3ef0db91-875f-41a0-98d4-64fefed5bc44"] + date: ['Fri, 02 Feb 2018 22:36:15 GMT'] + etag: [W/"f49ae259-403a-4fcb-9469-b62c8641aa98"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2651,32 +2727,31 @@ interactions: CommandName: [network nic create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001","name":"cli_test_nic_scenario000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:12:07 GMT'] + date: ['Fri, 02 Feb 2018 22:36:16 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"properties": {"ipConfigurations": [{"properties": {"subnet": {"id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}, + body: !!python/unicode '{"properties": {"networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg"}, + "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"properties": {"subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}, "privateIPAllocationMethod": "Dynamic", "privateIPAddressVersion": "IPv4", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"}}, - "name": "ipconfig1"}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg"}, - "dnsSettings": {"dnsServers": []}, "enableIPForwarding": false}, "location": - "westus"}''' + "name": "ipconfig1"}], "enableIPForwarding": false}, "location": "westus"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -2684,19 +2759,21 @@ interactions: Connection: [keep-alive] Content-Length: ['933'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\\\"\"\ + ,\r\n \"etag\": \"W/\\\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ @@ -2705,24 +2782,24 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\ \r\n },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ \r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/58c952d5-336a-436f-a242-a6976afd667a?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2d552fb-bb66-482a-a4ff-8e6f81c57903?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['2244'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:12:07 GMT'] + date: ['Fri, 02 Feb 2018 22:36:17 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-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -2732,18 +2809,19 @@ interactions: CommandName: [network nic create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/58c952d5-336a-436f-a242-a6976afd667a?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2d552fb-bb66-482a-a4ff-8e6f81c57903?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:12:37 GMT'] + date: ['Fri, 02 Feb 2018 22:36:47 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2759,19 +2837,21 @@ interactions: CommandName: [network nic create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\\\"\"\ + ,\r\n \"etag\": \"W/\\\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ @@ -2780,7 +2860,7 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\ \r\n },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ @@ -2789,8 +2869,8 @@ interactions: cache-control: [no-cache] content-length: ['2244'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:12:37 GMT'] - etag: [W/"6a768e3f-5e75-4d75-bb43-a49f9f96b453"] + date: ['Fri, 02 Feb 2018 22:36:48 GMT'] + etag: [W/"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2806,25 +2886,25 @@ interactions: CommandName: [network nic list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkInterfaces?api-version=2017-11-01 response: - body: {string: '{"value":[{"name":"cli-test-nic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic","etag":"W/\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"c8f0cc11-3466-4ca3-9e50-91417defedf0","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1","etag":"W/\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.15","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nic1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource3iwekf3ymsqnp72bnxejhghzm4wou2h7xdajvb2t2l26x5wvkwr/providers/Microsoft.Network/networkInterfaces/nic1","etag":"W/\"c0555eab-ade6-40a8-a1ba-70c5da1b2f91\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"61b2864d-b7ae-4bcb-882a-452b27bbc7a8","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource3iwekf3ymsqnp72bnxejhghzm4wou2h7xdajvb2t2l26x5wvkwr/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1","etag":"W/\"c0555eab-ade6-40a8-a1ba-70c5da1b2f91\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource3iwekf3ymsqnp72bnxejhghzm4wou2h7xdajvb2t2l26x5wvkwr/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"3kypjehskpzutm0avimst0ffzf.dx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"sdk-test-mVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic","etag":"W/\"3a812f90-52a9-4e85-9406-5b17f6f6ae74\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f9a82a10-2a79-4ec0-a7e4-aa9f0669f948","ipConfigurations":[{"name":"ipconfigsdk-test-m","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic/ipConfigurations/ipconfigsdk-test-m","etag":"W/\"3a812f90-52a9-4e85-9406-5b17f6f6ae74\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-mPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET/subnets/sdk-test-umSubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"sdk-test-umVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic","etag":"W/\"4bd4908c-c9f2-4d14-add1-12d4cb142d71\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2d30a3d3-b59d-446a-801d-d8c7a620334a","ipConfigurations":[{"name":"ipconfigsdk-test-um","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic/ipConfigurations/ipconfigsdk-test-um","etag":"W/\"4bd4908c-c9f2-4d14-add1-12d4cb142d71\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-umPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET/subnets/sdk-test-umSubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-um"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"c61f50a5-2016-4327-a859-43b211d0b221\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"15f720be-6f8f-4daf-aca7-f288ec3b64e3","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"c61f50a5-2016-4327-a859-43b211d0b221\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"dh444kuktqqedpctkj1lzdnspa.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-33-63-25","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Compute/virtualMachines/vm1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"yugangw2-vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-vm1VMNic","etag":"W/\"f97a6359-345f-453d-99a3-bb184649fec2\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"22bbedd2-3977-4285-8e14-189d65300b98","ipConfigurations":[{"name":"ipconfigyugangw2-vm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-vm1VMNic/ipConfigurations/ipconfigyugangw2-vm1","etag":"W/\"f97a6359-345f-453d-99a3-bb184649fec2\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/publicIPAddresses/yugangw2-vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/virtualNetworks/yugangw2-vm1VNET/subnets/yugangw2-vm1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"skdtep2rps4uhiqkj5c3lc2fcg.dx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm1NSG"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nic2995484","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/networkInterfaces/nic2995484","etag":"W/\"6e68ea67-56f1-4faa-a525-acae1b6785fd\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d237d32c-11e2-48aa-88d0-7efc1f200a6b","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/networkInterfaces/nic2995484/ipConfigurations/primary","etag":"W/\"6e68ea67-56f1-4faa-a525-acae1b6785fd\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.6","privateIPAllocationMethod":"Static","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/virtualNetworks/vnet995484/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"uk0zvji4oheubnscyelpctpx0a.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nic995484","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/networkInterfaces/nic995484","etag":"W/\"d35883d9-7b76-4701-bdb8-f7d240ae1e97\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"c2c6dadc-2477-450d-bfc8-66b81f83a4e1","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/networkInterfaces/nic995484/ipConfigurations/primary","etag":"W/\"d35883d9-7b76-4701-bdb8-f7d240ae1e97\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Static","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/virtualNetworks/vnet995484/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"uk0zvji4oheubnscyelpctpx0a.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm995484af361353","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/networkInterfaces/nicvm995484af361353","etag":"W/\"06edcf68-de1e-4839-8b9d-c14efdc139da\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f5c844a6-e773-4211-998b-9a11793e4908","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/networkInterfaces/nicvm995484af361353/ipConfigurations/primary","etag":"W/\"06edcf68-de1e-4839-8b9d-c14efdc139da\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Static","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/publicIPAddresses/pip15228b2e"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/virtualNetworks/vnet995484/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"uk0zvji4oheubnscyelpctpx0a.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nic02019c1e07a","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Network/networkInterfaces/nic02019c1e07a","etag":"W/\"8817f294-0a96-4a38-b6f7-461cc2ba7a9c\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9901047f-7517-4cb4-adae-6ce23c8367f1","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Network/networkInterfaces/nic02019c1e07a/ipConfigurations/primary","etag":"W/\"8817f294-0a96-4a38-b6f7-461cc2ba7a9c\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Network/virtualNetworks/net98b60130d4/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"gkgnhd5yp53uhoouxgubhm5mqd.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1C-5B-87","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Compute/virtualMachines/vm5367081458"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm-32735dbab03546","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/networkInterfaces/nicvm-32735dbab03546","etag":"W/\"23e94758-5447-476d-95f1-9c557e829b44\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50509070-032c-4217-ad82-3f93ce0a9a21","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/networkInterfaces/nicvm-32735dbab03546/ipConfigurations/primary","etag":"W/\"23e94758-5447-476d-95f1-9c557e829b44\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/publicIPAddresses/pip52974c86"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/virtualNetworks/vnet508735253e85/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Compute/virtualMachines/vm-32735d"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nic6677868bacc","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Network/networkInterfaces/nic6677868bacc","etag":"W/\"0ac8a14c-91fd-4e5a-8b85-28c015ce3b59\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"943e0858-0a83-4af5-b829-5d65af52e568","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Network/networkInterfaces/nic6677868bacc/ipConfigurations/primary","etag":"W/\"0ac8a14c-91fd-4e5a-8b85-28c015ce3b59\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Network/virtualNetworks/nete1352643ac/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"n2sjtc2iuptenkosyh1gulbn3e.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-19-A0-D5","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Compute/virtualMachines/vmf2090082c0"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm62581016f24781","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Network/networkInterfaces/nicvm62581016f24781","etag":"W/\"a65a200a-52da-498d-8006-acb9e6ceecab\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"19dc4c39-28f4-4832-9067-9c0ed6ac18b9","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Network/networkInterfaces/nicvm62581016f24781/ipConfigurations/primary","etag":"W/\"a65a200a-52da-498d-8006-acb9e6ceecab\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Network/virtualNetworks/vnet879126a87d/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"kfoglqdvzqpu5gegz3zvehpxuf.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1A-BE-6D","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Compute/virtualMachines/vm625810"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm79503273788530","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Network/networkInterfaces/nicvm79503273788530","etag":"W/\"ad1f13fb-aa8b-4937-ba0d-7f61243befae\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"450423a5-8bf0-4654-b94e-becbc80fa47a","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Network/networkInterfaces/nicvm79503273788530/ipConfigurations/primary","etag":"W/\"ad1f13fb-aa8b-4937-ba0d-7f61243befae\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Network/virtualNetworks/vnet57813f99a9/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"5pl5twzzijvehpbbpv2gpqqp4g.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1C-19-57","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Compute/virtualMachines/vm795032"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm9cf474697","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1196/providers/Microsoft.Network/networkInterfaces/nicjavavm9cf474697","etag":"W/\"72de802c-2400-457d-8d54-cb31e7afbdb6\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b183713c-76a4-4da0-a33d-e85cfab0165d","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1196/providers/Microsoft.Network/networkInterfaces/nicjavavm9cf474697/ipConfigurations/primary","etag":"W/\"72de802c-2400-457d-8d54-cb31e7afbdb6\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1196/providers/Microsoft.Network/virtualNetworks/vnetdd865739301a/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"dryr4nqh0sve5ejlraqkfdiyig.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-10-C6-92","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1196/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm39b877307","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1345/providers/Microsoft.Network/networkInterfaces/nicjavavm39b877307","etag":"W/\"19a04450-3757-4228-9a76-82782bbec826\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f2871a07-9fc7-4af2-b180-0dd8882771c9","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1345/providers/Microsoft.Network/networkInterfaces/nicjavavm39b877307/ipConfigurations/primary","etag":"W/\"19a04450-3757-4228-9a76-82782bbec826\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1345/providers/Microsoft.Network/virtualNetworks/vnet6dc874113693/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"dlkjbmoxtqte1b3yhzjrywteld.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-13-30-0D","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1345/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm00c709577","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4533/providers/Microsoft.Network/networkInterfaces/nicjavavm00c709577","etag":"W/\"d932e6e6-1c76-404f-ac9e-ba5f7ec37227\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1ebd386d-a8e0-40b1-9a35-1ece486319ac","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4533/providers/Microsoft.Network/networkInterfaces/nicjavavm00c709577/ipConfigurations/primary","etag":"W/\"d932e6e6-1c76-404f-ac9e-ba5f7ec37227\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4533/providers/Microsoft.Network/virtualNetworks/vnet10b57093a1bc/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"macAddress":"00-0D-3A-12-19-5D","enableAcceleratedNetworking":false,"enableIPForwarding":false,"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm7bf166302","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4533/providers/Microsoft.Network/networkInterfaces/nicjavavm7bf166302","etag":"W/\"cf005333-4cb8-4963-b355-b8a0e3c05aa2\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"872d3a68-1e30-4863-adfa-eb05cca1c0d3","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4533/providers/Microsoft.Network/networkInterfaces/nicjavavm7bf166302/ipConfigurations/primary","etag":"W/\"cf005333-4cb8-4963-b355-b8a0e3c05aa2\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4533/providers/Microsoft.Network/virtualNetworks/vnetd6184615914f/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"i41nwfit2nketkxus52rb5poxb.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-13-97-E0","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4533/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm733230993","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5209/providers/Microsoft.Network/networkInterfaces/nicjavavm733230993","etag":"W/\"6859a399-2ac7-4faf-a6a2-768e9579fb80\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"60f0ef35-74f4-48ea-aebc-54c882949f22","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5209/providers/Microsoft.Network/networkInterfaces/nicjavavm733230993/ipConfigurations/primary","etag":"W/\"6859a399-2ac7-4faf-a6a2-768e9579fb80\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5209/providers/Microsoft.Network/virtualNetworks/vnet449408930d80/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"5aq1oud1hvpurlydkysbq400qg.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-14-E9-79","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5209/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm486392425","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6834/providers/Microsoft.Network/networkInterfaces/nicjavavm486392425","etag":"W/\"00062b93-38f8-41c9-8327-8080b57bf7f5\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e9657665-29ba-4ad9-a80a-ad8cedadb5a9","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6834/providers/Microsoft.Network/networkInterfaces/nicjavavm486392425/ipConfigurations/primary","etag":"W/\"00062b93-38f8-41c9-8327-8080b57bf7f5\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6834/providers/Microsoft.Network/virtualNetworks/vnet0d2280673098/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"si3ta24hnfiu5baceamotw3kpf.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-18-70-98","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6834/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm0b8654912","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7025/providers/Microsoft.Network/networkInterfaces/nicjavavm0b8654912","etag":"W/\"e4a1da2b-3626-45be-a420-54bc6304aafb\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ec0c52e0-19ea-4784-8b57-d04e7f97d014","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7025/providers/Microsoft.Network/networkInterfaces/nicjavavm0b8654912/ipConfigurations/primary","etag":"W/\"e4a1da2b-3626-45be-a420-54bc6304aafb\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7025/providers/Microsoft.Network/virtualNetworks/vnet974221743ad2/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"nrt2cud2ug5efkyr0cj5zr5zpc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-16-14-A8","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7025/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm888232954","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8402/providers/Microsoft.Network/networkInterfaces/nicjavavm888232954","etag":"W/\"c5a13371-7100-4720-8545-06dd26f94719\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"248d2857-d234-4afd-83f9-1473f1645c0f","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8402/providers/Microsoft.Network/networkInterfaces/nicjavavm888232954/ipConfigurations/primary","etag":"W/\"c5a13371-7100-4720-8545-06dd26f94719\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8402/providers/Microsoft.Network/virtualNetworks/vnetb51670092416/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"3heveeywtnvermpzwqbdovbuoe.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-18-7C-DE","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8402/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm932109527","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest989/providers/Microsoft.Network/networkInterfaces/nicjavavm932109527","etag":"W/\"90839245-f37b-473d-8cab-c3e663af11c9\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a8a96589-47ed-4c50-9aef-2a6842809bc6","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest989/providers/Microsoft.Network/networkInterfaces/nicjavavm932109527/ipConfigurations/primary","etag":"W/\"90839245-f37b-473d-8cab-c3e663af11c9\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest989/providers/Microsoft.Network/virtualNetworks/vnet3ca77331d81d/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"zotrtug4omkejd2jxs1iieukqb.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-14-3A-1C","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest989/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm80e489797","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest1983/providers/Microsoft.Network/networkInterfaces/nicjavavm80e489797","etag":"W/\"1d297fd9-6688-48ab-8184-7b3554cd033c\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"28654457-0c5a-4f7d-b34e-727265046894","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest1983/providers/Microsoft.Network/networkInterfaces/nicjavavm80e489797/ipConfigurations/primary","etag":"W/\"1d297fd9-6688-48ab-8184-7b3554cd033c\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest1983/providers/Microsoft.Network/virtualNetworks/vnetd1f874394e0f/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"05xaj3o1awyuvgetkbz5svh22h.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-17-D8-6C","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest1983/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmb86868520","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2136/providers/Microsoft.Network/networkInterfaces/nicjavavmb86868520","etag":"W/\"f74bc7d7-7432-45a7-b3c2-84b0e6558b79\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8fa9a900-09e4-4d40-81a4-c058184b558e","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2136/providers/Microsoft.Network/networkInterfaces/nicjavavmb86868520/ipConfigurations/primary","etag":"W/\"f74bc7d7-7432-45a7-b3c2-84b0e6558b79\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2136/providers/Microsoft.Network/virtualNetworks/vnet24537620e15d/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"13aqrnoq2sgu1lmqh5fyzcy40c.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-10-60-D1","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2136/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm73e405462","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3486/providers/Microsoft.Network/networkInterfaces/nicjavavm73e405462","etag":"W/\"0104c71e-bb65-43c0-a993-fdd51283a2be\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b9b465c2-71a2-42cc-bda4-a3f3701392f5","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3486/providers/Microsoft.Network/networkInterfaces/nicjavavm73e405462/ipConfigurations/primary","etag":"W/\"0104c71e-bb65-43c0-a993-fdd51283a2be\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3486/providers/Microsoft.Network/virtualNetworks/vnet96169254b6b3/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"4pbojkrm443efj4xkvcpox3tqe.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-10-38-F4","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3486/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmd9251513a","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4256/providers/Microsoft.Network/networkInterfaces/nicjavavmd9251513a","etag":"W/\"d7adbdaf-1b6d-4950-8407-8a5baee2d357\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"baac7314-472a-48cd-a5df-a0d963a73190","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4256/providers/Microsoft.Network/networkInterfaces/nicjavavmd9251513a/ipConfigurations/primary","etag":"W/\"d7adbdaf-1b6d-4950-8407-8a5baee2d357\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4256/providers/Microsoft.Network/virtualNetworks/vnet48a867202931/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ecwrwxizul5e3hejbuiywcjpvh.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-10-E7-C0","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4256/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmc0416832a","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8665/providers/Microsoft.Network/networkInterfaces/nicjavavmc0416832a","etag":"W/\"2ae8c288-13e6-4167-a73e-51372a9d11be\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2a85d39f-a5d0-4edd-b926-1aaef48a4041","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8665/providers/Microsoft.Network/networkInterfaces/nicjavavmc0416832a/ipConfigurations/primary","etag":"W/\"2ae8c288-13e6-4167-a73e-51372a9d11be\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8665/providers/Microsoft.Network/virtualNetworks/vneta7761885d3c0/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"daz04hlf2agu5jv2zafqwqbgtg.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1A-EC-1F","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8665/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm529311969","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9282/providers/Microsoft.Network/networkInterfaces/nicjavavm529311969","etag":"W/\"7d437376-45cc-4753-8f6a-ed304b08417d\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"c167a35c-1e9b-42c1-a872-054f85f928d8","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9282/providers/Microsoft.Network/networkInterfaces/nicjavavm529311969/ipConfigurations/primary","etag":"W/\"7d437376-45cc-4753-8f6a-ed304b08417d\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9282/providers/Microsoft.Network/virtualNetworks/vnet063608875987/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"vpuot5ak4yzevdhhnnm2drq1ha.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-10-E8-79","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9282/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicchashvm86385653e","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7397/providers/Microsoft.Network/networkInterfaces/nicchashvm86385653e","etag":"W/\"388acc25-e817-4de9-b549-b23c66696a62\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"64aa2c31-8482-4823-8f0b-d9c93f49ee09","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7397/providers/Microsoft.Network/networkInterfaces/nicchashvm86385653e/ipConfigurations/primary","etag":"W/\"388acc25-e817-4de9-b549-b23c66696a62\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7397/providers/Microsoft.Network/virtualNetworks/vnet3b93748528f4/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"qqce1arn5aaupd0mto1hjd040h.jx.internal.cloudapp.net"},"macAddress":"00-0D-3A-71-FF-91","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7397/providers/Microsoft.Compute/virtualMachines/chashvm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicchashvmbcd47694d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7397/providers/Microsoft.Network/networkInterfaces/nicchashvmbcd47694d","etag":"W/\"a40b88d0-52a0-4eb0-ad3d-9deffca5f5ea\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"c17ca69b-d80a-4d85-bcae-53a5117fff98","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7397/providers/Microsoft.Network/networkInterfaces/nicchashvmbcd47694d/ipConfigurations/primary","etag":"W/\"a40b88d0-52a0-4eb0-ad3d-9deffca5f5ea\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7397/providers/Microsoft.Network/virtualNetworks/vneta1d88066dd58/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"macAddress":"00-0D-3A-75-42-81","enableAcceleratedNetworking":false,"enableIPForwarding":false,"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicextvm3431fcc85570","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5805/providers/Microsoft.Network/networkInterfaces/nicextvm3431fcc85570","etag":"W/\"70699121-4477-49b5-bc46-c59c20a41b48\"","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0176ab8a-c405-4840-be7f-3171cdf7e4bc","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5805/providers/Microsoft.Network/networkInterfaces/nicextvm3431fcc85570/ipConfigurations/primary","etag":"W/\"70699121-4477-49b5-bc46-c59c20a41b48\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5805/providers/Microsoft.Network/virtualNetworks/vnetd4b2369450b3/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ubbgmepptsie3nzi2lbghkj4wh.cx.internal.cloudapp.net"},"macAddress":"00-0D-3A-02-C1-A4","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5805/providers/Microsoft.Compute/virtualMachines/extvm3431"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicextvm7751a5338703","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg710/providers/Microsoft.Network/networkInterfaces/nicextvm7751a5338703","etag":"W/\"6c879640-0b78-4902-9b31-c83882e37dd1\"","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f8510389-b406-4497-aff8-94ac02190512","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg710/providers/Microsoft.Network/networkInterfaces/nicextvm7751a5338703/ipConfigurations/primary","etag":"W/\"6c879640-0b78-4902-9b31-c83882e37dd1\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg710/providers/Microsoft.Network/virtualNetworks/vnetb7b6158551b6/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"voocxfnufoqu1bi0q44dv5didf.cx.internal.cloudapp.net"},"macAddress":"00-0D-3A-01-94-BF","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg710/providers/Microsoft.Compute/virtualMachines/extvm7751"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"yugangw-systemVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkInterfaces/yugangw-systemVMNic","etag":"W/\"18f419d4-6ed7-4525-a5b0-14954fa1cc13\"","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f8eda5e3-4f3e-42b8-8fc7-3e8d6cfea7ac","ipConfigurations":[{"name":"ipconfigyugangw-system","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkInterfaces/yugangw-systemVMNic/ipConfigurations/ipconfigyugangw-system","etag":"W/\"18f419d4-6ed7-4525-a5b0-14954fa1cc13\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/publicIPAddresses/yugangw-systemPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-systemVNET/subnets/yugangw-systemSubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"bunwxkhsi2kunpf0dvzwzb1rzf.yx.internal.cloudapp.net"},"macAddress":"00-0D-3A-F8-0B-99","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkSecurityGroups/yugangw-systemNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Compute/virtualMachines/yugangw-system"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"}]}'} + body: {string: !!python/unicode '{"value":[{"name":"cli-test-nic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic","etag":"W/\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"6fefb128-2544-44b2-9aab-de250055cdf5","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1","etag":"W/\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.15","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"sdk-test-mVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic","etag":"W/\"3a812f90-52a9-4e85-9406-5b17f6f6ae74\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f9a82a10-2a79-4ec0-a7e4-aa9f0669f948","ipConfigurations":[{"name":"ipconfigsdk-test-m","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic/ipConfigurations/ipconfigsdk-test-m","etag":"W/\"3a812f90-52a9-4e85-9406-5b17f6f6ae74\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-mPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET/subnets/sdk-test-umSubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"sdk-test-umVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic","etag":"W/\"4bd4908c-c9f2-4d14-add1-12d4cb142d71\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2d30a3d3-b59d-446a-801d-d8c7a620334a","ipConfigurations":[{"name":"ipconfigsdk-test-um","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic/ipConfigurations/ipconfigsdk-test-um","etag":"W/\"4bd4908c-c9f2-4d14-add1-12d4cb142d71\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-umPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET/subnets/sdk-test-umSubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-um"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"MyVmVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkInterfaces/MyVmVMNic","etag":"W/\"bceee19f-f602-46c3-af0a-8d54870a96dc\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"298f8e8f-9c44-4fca-bc40-75ed8e68de22","ipConfigurations":[{"name":"ipconfigMyVm","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkInterfaces/MyVmVMNic/ipConfigurations/ipconfigMyVm","etag":"W/\"bceee19f-f602-46c3-af0a-8d54870a96dc\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/publicIPAddresses/MyVmPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/virtualNetworks/yg-1VNET/subnets/yg-1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"xx3xqbqq4yzejlj0yw1kxohxvc.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-31-D2-5E","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/MyVmNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Compute/virtualMachines/MyVm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"yg-1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkInterfaces/yg-1VMNic","etag":"W/\"f60d4139-cb70-4191-abb1-d68e66ef6e48\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1abedf6c-81fa-4748-bda0-2c5ed886b104","ipConfigurations":[{"name":"ipconfigyg-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkInterfaces/yg-1VMNic/ipConfigurations/ipconfigyg-1","etag":"W/\"f60d4139-cb70-4191-abb1-d68e66ef6e48\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/publicIPAddresses/yg-1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/virtualNetworks/yg-1VNET/subnets/yg-1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"xx3xqbqq4yzejlj0yw1kxohxvc.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-31-C5-36","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Compute/virtualMachines/yg-1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"yg-d1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkInterfaces/yg-d1VMNic","etag":"W/\"f1430c7b-edd4-47b6-b4b3-762f5f4fb2ae\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e45e21a0-5a42-4748-b2c9-25f3480b5d9b","ipConfigurations":[{"name":"ipconfigyg-d1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkInterfaces/yg-d1VMNic/ipConfigurations/ipconfigyg-d1","etag":"W/\"f1430c7b-edd4-47b6-b4b3-762f5f4fb2ae\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/publicIPAddresses/yg-d1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/virtualNetworks/yg-1VNET/subnets/yg-1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"xx3xqbqq4yzejlj0yw1kxohxvc.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-30-E7-C3","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-d1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Compute/virtualMachines/yg-d1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm215539121561a","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc8622group/providers/Microsoft.Network/networkInterfaces/nicvm215539121561a","etag":"W/\"59451162-bd63-4caa-8784-87460518886c\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"648ba2fb-f87a-4a08-9e20-fb34beeaf684","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc8622group/providers/Microsoft.Network/networkInterfaces/nicvm215539121561a/ipConfigurations/primary","etag":"W/\"59451162-bd63-4caa-8784-87460518886c\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc8622group/providers/Microsoft.Network/publicIPAddresses/abc8622"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc8622group/providers/Microsoft.Network/virtualNetworks/vnet1ec659651466/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"dtxvz4cvudxehprqttscojpr0c.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1A-F6-9E","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc8622group/providers/Microsoft.Compute/virtualMachines/vm2155"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nic02019c1e07a","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Network/networkInterfaces/nic02019c1e07a","etag":"W/\"8817f294-0a96-4a38-b6f7-461cc2ba7a9c\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9901047f-7517-4cb4-adae-6ce23c8367f1","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Network/networkInterfaces/nic02019c1e07a/ipConfigurations/primary","etag":"W/\"8817f294-0a96-4a38-b6f7-461cc2ba7a9c\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Network/virtualNetworks/net98b60130d4/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"gkgnhd5yp53uhoouxgubhm5mqd.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1C-5B-87","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Compute/virtualMachines/vm5367081458"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm-32735dbab03546","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/networkInterfaces/nicvm-32735dbab03546","etag":"W/\"23e94758-5447-476d-95f1-9c557e829b44\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50509070-032c-4217-ad82-3f93ce0a9a21","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/networkInterfaces/nicvm-32735dbab03546/ipConfigurations/primary","etag":"W/\"23e94758-5447-476d-95f1-9c557e829b44\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/publicIPAddresses/pip52974c86"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/virtualNetworks/vnet508735253e85/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Compute/virtualMachines/vm-32735d"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nic6677868bacc","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Network/networkInterfaces/nic6677868bacc","etag":"W/\"0ac8a14c-91fd-4e5a-8b85-28c015ce3b59\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"943e0858-0a83-4af5-b829-5d65af52e568","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Network/networkInterfaces/nic6677868bacc/ipConfigurations/primary","etag":"W/\"0ac8a14c-91fd-4e5a-8b85-28c015ce3b59\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Network/virtualNetworks/nete1352643ac/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"n2sjtc2iuptenkosyh1gulbn3e.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-19-A0-D5","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Compute/virtualMachines/vmf2090082c0"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nic43268498e04","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7848/providers/Microsoft.Network/networkInterfaces/nic43268498e04","etag":"W/\"b69206b5-621d-402c-b80c-86eb00b08593\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"cb63b70c-3dcc-4b9c-a3bd-c60cd39dfd81","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7848/providers/Microsoft.Network/networkInterfaces/nic43268498e04/ipConfigurations/primary","etag":"W/\"b69206b5-621d-402c-b80c-86eb00b08593\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7848/providers/Microsoft.Network/publicIPAddresses/pip73415e83"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7848/providers/Microsoft.Network/virtualNetworks/vnet6c345226f47d/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"05sxgc0ub10efd2wkf2zkswzyd.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm62581016f24781","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Network/networkInterfaces/nicvm62581016f24781","etag":"W/\"a65a200a-52da-498d-8006-acb9e6ceecab\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"19dc4c39-28f4-4832-9067-9c0ed6ac18b9","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Network/networkInterfaces/nicvm62581016f24781/ipConfigurations/primary","etag":"W/\"a65a200a-52da-498d-8006-acb9e6ceecab\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Network/virtualNetworks/vnet879126a87d/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"kfoglqdvzqpu5gegz3zvehpxuf.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1A-BE-6D","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Compute/virtualMachines/vm625810"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm79503273788530","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Network/networkInterfaces/nicvm79503273788530","etag":"W/\"ad1f13fb-aa8b-4937-ba0d-7f61243befae\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"450423a5-8bf0-4654-b94e-becbc80fa47a","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Network/networkInterfaces/nicvm79503273788530/ipConfigurations/primary","etag":"W/\"ad1f13fb-aa8b-4937-ba0d-7f61243befae\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Network/virtualNetworks/vnet57813f99a9/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"5pl5twzzijvehpbbpv2gpqqp4g.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1C-19-57","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Compute/virtualMachines/vm795032"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm642264057","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2268/providers/Microsoft.Network/networkInterfaces/nicjavavm642264057","etag":"W/\"83d4b748-e380-48e9-9b01-a7d524089d91\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2980fd7d-5d58-4cad-abfb-0d7950052b27","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2268/providers/Microsoft.Network/networkInterfaces/nicjavavm642264057/ipConfigurations/primary","etag":"W/\"83d4b748-e380-48e9-9b01-a7d524089d91\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2268/providers/Microsoft.Network/virtualNetworks/vnet11d66567d3a6/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"avrevtjzsi1upkhcu5pu2adqyc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-15-08-A0","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2268/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm66f05524b","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5205/providers/Microsoft.Network/networkInterfaces/nicjavavm66f05524b","etag":"W/\"143ccdd7-c594-47cb-b3fe-d17d8c13ca4a\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"013f6b59-7b27-49d6-8224-3d6bcc36b1fa","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5205/providers/Microsoft.Network/networkInterfaces/nicjavavm66f05524b/ipConfigurations/primary","etag":"W/\"143ccdd7-c594-47cb-b3fe-d17d8c13ca4a\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5205/providers/Microsoft.Network/virtualNetworks/vnetaa21859195e4/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"3jopfmgilgyevfkg5qjy11iywc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-15-B9-C9","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5205/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavme26191389","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5497/providers/Microsoft.Network/networkInterfaces/nicjavavme26191389","etag":"W/\"fe8af06d-24a7-43a0-ad06-d47bea00a9fd\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"52ce0239-4c8f-460a-89c1-6aa0706fd333","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5497/providers/Microsoft.Network/networkInterfaces/nicjavavme26191389/ipConfigurations/primary","etag":"W/\"fe8af06d-24a7-43a0-ad06-d47bea00a9fd\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5497/providers/Microsoft.Network/virtualNetworks/vneteb8486453427/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"z2mjstggqj4efoknb12tioxxib.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-13-7F-CE","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5497/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm1dc388316","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6664/providers/Microsoft.Network/networkInterfaces/nicjavavm1dc388316","etag":"W/\"9c466b00-1056-43c1-9e11-1a2bf5c36ac2\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2a92392e-347f-418d-a343-7f28717004d2","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6664/providers/Microsoft.Network/networkInterfaces/nicjavavm1dc388316/ipConfigurations/primary","etag":"W/\"9c466b00-1056-43c1-9e11-1a2bf5c36ac2\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6664/providers/Microsoft.Network/virtualNetworks/vnetb22473451b20/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"mik35phdpstengvmuv3jj54p3b.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-17-70-77","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6664/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmf35331887","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7355/providers/Microsoft.Network/networkInterfaces/nicjavavmf35331887","etag":"W/\"9cdf64ba-e23e-427f-87f1-21b2a568ce0a\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3df96341-a875-4428-b1b4-f415308bf55e","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7355/providers/Microsoft.Network/networkInterfaces/nicjavavmf35331887/ipConfigurations/primary","etag":"W/\"9cdf64ba-e23e-427f-87f1-21b2a568ce0a\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7355/providers/Microsoft.Network/virtualNetworks/vnet15a08003ba2f/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"w14uxgn4zuculmtpnt0kzrp3bc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-17-71-0C","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7355/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm35c86231c","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest750/providers/Microsoft.Network/networkInterfaces/nicjavavm35c86231c","etag":"W/\"d148db4b-beab-4649-af11-70affd6c6fe5\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f8c99ace-2d57-4d06-9ca5-81541d89d1b4","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest750/providers/Microsoft.Network/networkInterfaces/nicjavavm35c86231c/ipConfigurations/primary","etag":"W/\"d148db4b-beab-4649-af11-70affd6c6fe5\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest750/providers/Microsoft.Network/virtualNetworks/vnetf288226236dd/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"4xs3122zskxezbu2pa3fmcl1sa.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-11-17-82","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest750/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavme08803998","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest750/providers/Microsoft.Network/networkInterfaces/nicjavavme08803998","etag":"W/\"6e9a4c27-6bca-4b9d-9cd9-c090bd2befd1\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ccd283de-13b5-4136-b6bb-63bdd9cb57f3","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest750/providers/Microsoft.Network/networkInterfaces/nicjavavme08803998/ipConfigurations/primary","etag":"W/\"6e9a4c27-6bca-4b9d-9cd9-c090bd2befd1\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest750/providers/Microsoft.Network/virtualNetworks/vnet546751457306/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"macAddress":"00-0D-3A-1A-34-2B","enableAcceleratedNetworking":false,"enableIPForwarding":false,"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm68423151f","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8416/providers/Microsoft.Network/networkInterfaces/nicjavavm68423151f","etag":"W/\"1b59d7e8-9a12-42a1-9bd5-556653037768\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ad23a97c-1a75-4951-83cf-35d5a46192b4","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8416/providers/Microsoft.Network/networkInterfaces/nicjavavm68423151f/ipConfigurations/primary","etag":"W/\"1b59d7e8-9a12-42a1-9bd5-556653037768\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8416/providers/Microsoft.Network/virtualNetworks/vnetb6221606f5fb/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"macAddress":"00-0D-3A-12-30-BA","enableAcceleratedNetworking":false,"enableIPForwarding":false,"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm7a8441882","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8416/providers/Microsoft.Network/networkInterfaces/nicjavavm7a8441882","etag":"W/\"b11577f8-63da-4515-a972-fa024a18c10b\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6b2edba9-e8b9-4c28-8756-8daced98b31b","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8416/providers/Microsoft.Network/networkInterfaces/nicjavavm7a8441882/ipConfigurations/primary","etag":"W/\"b11577f8-63da-4515-a972-fa024a18c10b\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8416/providers/Microsoft.Network/virtualNetworks/vnet47840363abdc/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ei1gixqeqmme1lgw2brlzikrpf.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-17-73-D6","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8416/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm1df55555f","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8449/providers/Microsoft.Network/networkInterfaces/nicjavavm1df55555f","etag":"W/\"4b9f7f24-c3d9-422c-9420-7d45150fbcdd\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"c065f640-2b49-4510-a913-544b2501ebb8","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8449/providers/Microsoft.Network/networkInterfaces/nicjavavm1df55555f/ipConfigurations/primary","etag":"W/\"4b9f7f24-c3d9-422c-9420-7d45150fbcdd\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8449/providers/Microsoft.Network/virtualNetworks/vnet022012371e87/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"kgpomqdfgeye5mrtmdsq2q3mwc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-15-10-14","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8449/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm27f564591","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8785/providers/Microsoft.Network/networkInterfaces/nicjavavm27f564591","etag":"W/\"470b5cbf-4e79-4283-aa7b-8da1764bbfde\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f884d5b2-5882-49a6-828b-91f7f19c6474","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8785/providers/Microsoft.Network/networkInterfaces/nicjavavm27f564591/ipConfigurations/primary","etag":"W/\"470b5cbf-4e79-4283-aa7b-8da1764bbfde\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8785/providers/Microsoft.Network/virtualNetworks/vnet2f2673266381/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"drobcggmzw2exnlm01e0cnhfvf.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-16-40-2C","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8785/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm93971807c","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9792/providers/Microsoft.Network/networkInterfaces/nicjavavm93971807c","etag":"W/\"6d44f709-c992-49fa-b293-2bfe493b48bf\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f738952b-05a8-4f24-b452-ccabdc908996","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9792/providers/Microsoft.Network/networkInterfaces/nicjavavm93971807c/ipConfigurations/primary","etag":"W/\"6d44f709-c992-49fa-b293-2bfe493b48bf\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9792/providers/Microsoft.Network/virtualNetworks/vnetb2212189cb37/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"jguza2r14qnunp5vzw5g4w02ya.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-11-25-C9","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9792/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm0c2662227","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9898/providers/Microsoft.Network/networkInterfaces/nicjavavm0c2662227","etag":"W/\"730c89af-dd76-46a9-8d45-1c57f6a1f298\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9f4c00bc-463c-4c80-bf9f-9077bc4a9769","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9898/providers/Microsoft.Network/networkInterfaces/nicjavavm0c2662227/ipConfigurations/primary","etag":"W/\"730c89af-dd76-46a9-8d45-1c57f6a1f298\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9898/providers/Microsoft.Network/virtualNetworks/vnetdd491581862d/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ozw3krdbacyu5nfvv1l1zzo5dh.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-15-BA-80","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9898/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavma91944354","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2383/providers/Microsoft.Network/networkInterfaces/nicjavavma91944354","etag":"W/\"96efcfa6-ad80-445c-a5f7-2cb02f57c779\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a44f2c4c-8b8c-41a6-b0b0-bc74f7076537","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2383/providers/Microsoft.Network/networkInterfaces/nicjavavma91944354/ipConfigurations/primary","etag":"W/\"96efcfa6-ad80-445c-a5f7-2cb02f57c779\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2383/providers/Microsoft.Network/virtualNetworks/vnet2ee9008088cd/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ivwr2exaau3exalwlvfjmdvvrc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1C-F9-2B","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2383/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm4ac40779b","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3916/providers/Microsoft.Network/networkInterfaces/nicjavavm4ac40779b","etag":"W/\"c6ca472e-c4c8-44d5-9559-3b96ec56c3f1\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fddfb025-8e32-4815-abd5-3413103b1b7c","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3916/providers/Microsoft.Network/networkInterfaces/nicjavavm4ac40779b/ipConfigurations/primary","etag":"W/\"c6ca472e-c4c8-44d5-9559-3b96ec56c3f1\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3916/providers/Microsoft.Network/virtualNetworks/vnet10e68984b5df/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"cao2mu4d0k3uxlo0yihsd4jxph.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1A-54-2C","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3916/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm9e6266671","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5125/providers/Microsoft.Network/networkInterfaces/nicjavavm9e6266671","etag":"W/\"b9ac6e33-076b-46f7-b7a3-453aea7255f8\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f6e4b759-2f3d-4eaf-babf-3d9f7d5a52b3","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5125/providers/Microsoft.Network/networkInterfaces/nicjavavm9e6266671/ipConfigurations/primary","etag":"W/\"b9ac6e33-076b-46f7-b7a3-453aea7255f8\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5125/providers/Microsoft.Network/virtualNetworks/vnetcaf398095f9a/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"mgfvux0ajyfufkgwyt3koe3uzc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1C-AC-52","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5125/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavme2a602758","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest817/providers/Microsoft.Network/networkInterfaces/nicjavavme2a602758","etag":"W/\"ea8d3bc1-f4b3-4a85-8aba-79903125f31a\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"08c622fe-d66d-48f3-bc7f-35027f5498c1","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest817/providers/Microsoft.Network/networkInterfaces/nicjavavme2a602758/ipConfigurations/primary","etag":"W/\"ea8d3bc1-f4b3-4a85-8aba-79903125f31a\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest817/providers/Microsoft.Network/virtualNetworks/vneta8122279cce6/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"3pkknern0kou5gjlwxw3ii4lug.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmdab71480c","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8789/providers/Microsoft.Network/networkInterfaces/nicjavavmdab71480c","etag":"W/\"359eda48-a405-4a13-ae91-b8ad0f3c5b57\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8a09fe75-7b2a-47a3-a7d5-36b04936b6e4","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8789/providers/Microsoft.Network/networkInterfaces/nicjavavmdab71480c/ipConfigurations/primary","etag":"W/\"359eda48-a405-4a13-ae91-b8ad0f3c5b57\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8789/providers/Microsoft.Network/virtualNetworks/vnete26574994c61/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"gy3x2b5xkgpupfb5mjyqzu4xeb.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-17-48-10","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8789/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm069699332","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9704/providers/Microsoft.Network/networkInterfaces/nicjavavm069699332","etag":"W/\"836c5aa4-2039-4b75-8d09-d6d78d8a25d9\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6a9867a1-a516-448e-8cac-27f063cc44c2","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9704/providers/Microsoft.Network/networkInterfaces/nicjavavm069699332/ipConfigurations/primary","etag":"W/\"836c5aa4-2039-4b75-8d09-d6d78d8a25d9\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9704/providers/Microsoft.Network/virtualNetworks/vnet338421365b7d/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"hy4qnk5zd5ye1lfkzdffxpurjb.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1C-04-ED","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9704/providers/Microsoft.Compute/virtualMachines/javavm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicchashvm37f948585","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2600/providers/Microsoft.Network/networkInterfaces/nicchashvm37f948585","etag":"W/\"76aa991e-bfcb-41e6-acf5-0490d1bde610\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3d8209b4-1af2-41c9-a123-b1b2b4641b1d","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2600/providers/Microsoft.Network/networkInterfaces/nicchashvm37f948585/ipConfigurations/primary","etag":"W/\"76aa991e-bfcb-41e6-acf5-0490d1bde610\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2600/providers/Microsoft.Network/virtualNetworks/vnet4234811737ae/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"gtsyukianq2ephr3c3ksjiuq5g.jx.internal.cloudapp.net"},"macAddress":"00-0D-3A-75-F1-BC","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2600/providers/Microsoft.Compute/virtualMachines/chashvm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicchashvmec5153844","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2600/providers/Microsoft.Network/networkInterfaces/nicchashvmec5153844","etag":"W/\"4eb0155d-2f84-400b-bc84-7e5d39c4fc08\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"20049e14-71bc-4c9a-ac27-e69f8d1d3715","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2600/providers/Microsoft.Network/networkInterfaces/nicchashvmec5153844/ipConfigurations/primary","etag":"W/\"4eb0155d-2f84-400b-bc84-7e5d39c4fc08\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2600/providers/Microsoft.Network/virtualNetworks/vnet2b3205809de8/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"macAddress":"00-0D-3A-71-97-50","enableAcceleratedNetworking":false,"enableIPForwarding":false,"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicchashvm191589646","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7256/providers/Microsoft.Network/networkInterfaces/nicchashvm191589646","etag":"W/\"faeb156a-8294-4733-9d59-3ad041b260c0\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"be5bd72a-e23b-4f52-98cb-ee91ecf04d59","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7256/providers/Microsoft.Network/networkInterfaces/nicchashvm191589646/ipConfigurations/primary","etag":"W/\"faeb156a-8294-4733-9d59-3ad041b260c0\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7256/providers/Microsoft.Network/virtualNetworks/vneta30876386fe0/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"e4u40oc1gdiepm2xc3iuy2pr4c.jx.internal.cloudapp.net"},"macAddress":"00-0D-3A-71-6A-84","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7256/providers/Microsoft.Compute/virtualMachines/chashvm"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicchashvmbf503162c","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7256/providers/Microsoft.Network/networkInterfaces/nicchashvmbf503162c","etag":"W/\"56774902-507d-4c6a-9c39-2f9f2bb4b602\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6e3766b5-98ce-4535-9fb6-32bf3125599b","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7256/providers/Microsoft.Network/networkInterfaces/nicchashvmbf503162c/ipConfigurations/primary","etag":"W/\"56774902-507d-4c6a-9c39-2f9f2bb4b602\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7256/providers/Microsoft.Network/virtualNetworks/vnetb7d125714f9c/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"macAddress":"00-0D-3A-70-76-D0","enableAcceleratedNetworking":false,"enableIPForwarding":false,"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicextvm3718ab191695","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1160/providers/Microsoft.Network/networkInterfaces/nicextvm3718ab191695","etag":"W/\"148073e1-f1f8-42ef-ac40-ef57b49752a7\"","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d470704b-dc99-41b3-b71d-6898338046a7","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1160/providers/Microsoft.Network/networkInterfaces/nicextvm3718ab191695/ipConfigurations/primary","etag":"W/\"148073e1-f1f8-42ef-ac40-ef57b49752a7\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1160/providers/Microsoft.Network/virtualNetworks/vnet9931157225f1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"2ste351pe2tehamkbytynaik5a.cx.internal.cloudapp.net"},"macAddress":"00-0D-3A-03-16-16","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1160/providers/Microsoft.Compute/virtualMachines/extvm3718"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicextvm90348e177096","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9983/providers/Microsoft.Network/networkInterfaces/nicextvm90348e177096","etag":"W/\"e0c35578-6348-443d-b9a2-0b320bb8a1d7\"","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8dd4e7aa-b8a1-4be6-b804-6e6bee34988f","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9983/providers/Microsoft.Network/networkInterfaces/nicextvm90348e177096/ipConfigurations/primary","etag":"W/\"e0c35578-6348-443d-b9a2-0b320bb8a1d7\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9983/providers/Microsoft.Network/virtualNetworks/vnet89e4279925c8/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"uxdlilrz2myezaukdsh23grapc.cx.internal.cloudapp.net"},"macAddress":"00-0D-3A-05-84-15","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9983/providers/Microsoft.Compute/virtualMachines/extvm9034"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"}]}'} headers: cache-control: [no-cache] - content-length: ['50941'] + content-length: ['56907'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:12:39 GMT'] + date: ['Fri, 02 Feb 2018 22:36:49 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] - x-ms-original-request-ids: [a9dd321a-1a89-4901-8290-9f5db02c9672, 9054c784-1e59-4841-8327-267f3c7cd3c6, - be8b8556-19fd-40d4-8746-a4cb5cdb5a97, c36dc6ea-f668-40f3-8e0e-e272657605ca, - bd2dc589-12c7-4a95-976d-019f58b7e7fb] + x-ms-original-request-ids: [150b5c4f-1a49-4b00-a289-e67a1a4cb1a7, 4fd2de01-4b37-4032-8478-365077c0b806, + ec464e14-9925-4d82-9e19-bbbe4d151d59, c63b24d5-4aee-4178-a976-fd28ca0255f2] status: {code: 200, message: OK} - request: body: null @@ -2834,20 +2914,21 @@ interactions: CommandName: [network nic list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli-test-nic\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\\\"\",\r\ \n \"location\": \"westus\",\r\n \"properties\": {\r\n \"\ - provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\"\ : \"ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\\\"\ + ,\r\n \"etag\": \"W/\\\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n\ \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \ @@ -2858,7 +2939,7 @@ interactions: \ \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n\ \ ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\ \n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\"\ - : \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\r\n },\r\n\ + : \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\r\n },\r\n\ \ \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\ \r\n },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ @@ -2868,7 +2949,7 @@ interactions: cache-control: [no-cache] content-length: ['2437'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:12:43 GMT'] + date: ['Fri, 02 Feb 2018 22:36:50 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2884,19 +2965,21 @@ interactions: CommandName: [network nic show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\\\"\"\ + ,\r\n \"etag\": \"W/\\\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ @@ -2905,7 +2988,7 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\ \r\n },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ @@ -2914,8 +2997,8 @@ interactions: cache-control: [no-cache] content-length: ['2244'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:12:43 GMT'] - etag: [W/"6a768e3f-5e75-4d75-bb43-a49f9f96b453"] + date: ['Fri, 02 Feb 2018 22:36:50 GMT'] + etag: [W/"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2931,19 +3014,21 @@ interactions: CommandName: [network nic update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\\\"\"\ + ,\r\n \"etag\": \"W/\\\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ @@ -2952,7 +3037,7 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\ \r\n },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ @@ -2961,8 +3046,8 @@ interactions: cache-control: [no-cache] content-length: ['2244'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:12:44 GMT'] - etag: [W/"6a768e3f-5e75-4d75-bb43-a49f9f96b453"] + date: ['Fri, 02 Feb 2018 22:36:51 GMT'] + etag: [W/"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2971,18 +3056,18 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"properties": {"resourceGuid": "c8f0cc11-3466-4ca3-9e50-91417defedf0", - "enableAcceleratedNetworking": false, "dnsSettings": {"internalDomainNameSuffix": - "qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net", "internalDnsNameLabel": - "noodle", "appliedDnsServers": []}, "ipConfigurations": [{"properties": {"subnet": + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic", + "etag": "W/\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\"", "properties": {"provisioningState": + "Succeeded", "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg"}, + "enableIPForwarding": true, "enableAcceleratedNetworking": false, "dnsSettings": + {"internalDomainNameSuffix": "sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net", + "internalDnsNameLabel": "noodle", "appliedDnsServers": []}, "ipConfigurations": + [{"etag": "W/\"1f5c085f-453d-4aa1-9bd5-a56d24fadfbc\"", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}, - "privateIPAddress": "10.0.0.15", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"}, - "primary": true, "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": - "Dynamic", "provisioningState": "Succeeded"}, "name": "ipconfig1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1", - "etag": "W/\\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\\""}], "networkSecurityGroup": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg"}, - "enableIPForwarding": true, "provisioningState": "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic", - "etag": "W/\\"6a768e3f-5e75-4d75-bb43-a49f9f96b453\\"", "location": "westus"}''' + "privateIPAddressVersion": "IPv4", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"}, + "privateIPAllocationMethod": "Dynamic", "primary": true, "privateIPAddress": + "10.0.0.15", "provisioningState": "Succeeded"}, "name": "ipconfig1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1"}], + "resourceGuid": "6fefb128-2544-44b2-9aab-de250055cdf5"}, "location": "westus"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -2990,19 +3075,21 @@ interactions: Connection: [keep-alive] Content-Length: ['1830'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"c22a61a4-dddc-4dae-8333-ad62e35d864c\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"e1fb80c2-3000-4bf3-b3c2-4d7cdb29b68f\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"c22a61a4-dddc-4dae-8333-ad62e35d864c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e1fb80c2-3000-4bf3-b3c2-4d7cdb29b68f\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ @@ -3011,25 +3098,25 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDnsNameLabel\": \"noodle\",\r\n \"internalFqdn\": \"noodle.qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ - ,\r\n \"internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + internalDnsNameLabel\": \"noodle\",\r\n \"internalFqdn\": \"noodle.sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ + ,\r\n \"internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : true,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\ \r\n },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ \r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bbe47305-6251-46fe-b893-eb99eab545a2?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7f579321-df7c-45b1-823a-6edd71377d65?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['2374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:12:44 GMT'] + date: ['Fri, 02 Feb 2018 22:36:52 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -3039,18 +3126,19 @@ interactions: CommandName: [network nic update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bbe47305-6251-46fe-b893-eb99eab545a2?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7f579321-df7c-45b1-823a-6edd71377d65?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:13:15 GMT'] + date: ['Fri, 02 Feb 2018 22:37:22 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -3066,19 +3154,21 @@ interactions: CommandName: [network nic update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"c22a61a4-dddc-4dae-8333-ad62e35d864c\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"e1fb80c2-3000-4bf3-b3c2-4d7cdb29b68f\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"c22a61a4-dddc-4dae-8333-ad62e35d864c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e1fb80c2-3000-4bf3-b3c2-4d7cdb29b68f\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ @@ -3087,8 +3177,8 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDnsNameLabel\": \"noodle\",\r\n \"internalFqdn\": \"noodle.qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ - ,\r\n \"internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + internalDnsNameLabel\": \"noodle\",\r\n \"internalFqdn\": \"noodle.sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ + ,\r\n \"internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : true,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\ \r\n },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ @@ -3097,8 +3187,8 @@ interactions: cache-control: [no-cache] content-length: ['2374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:13:15 GMT'] - etag: [W/"c22a61a4-dddc-4dae-8333-ad62e35d864c"] + date: ['Fri, 02 Feb 2018 22:37:22 GMT'] + etag: [W/"e1fb80c2-3000-4bf3-b3c2-4d7cdb29b68f"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -3114,19 +3204,21 @@ interactions: CommandName: [network nic update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"c22a61a4-dddc-4dae-8333-ad62e35d864c\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"e1fb80c2-3000-4bf3-b3c2-4d7cdb29b68f\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"c22a61a4-dddc-4dae-8333-ad62e35d864c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e1fb80c2-3000-4bf3-b3c2-4d7cdb29b68f\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ @@ -3135,8 +3227,8 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDnsNameLabel\": \"noodle\",\r\n \"internalFqdn\": \"noodle.qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ - ,\r\n \"internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + internalDnsNameLabel\": \"noodle\",\r\n \"internalFqdn\": \"noodle.sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ + ,\r\n \"internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : true,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\ \r\n },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ @@ -3145,8 +3237,8 @@ interactions: cache-control: [no-cache] content-length: ['2374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:13:16 GMT'] - etag: [W/"c22a61a4-dddc-4dae-8333-ad62e35d864c"] + date: ['Fri, 02 Feb 2018 22:37:22 GMT'] + etag: [W/"e1fb80c2-3000-4bf3-b3c2-4d7cdb29b68f"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -3155,19 +3247,19 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"properties": {"resourceGuid": "c8f0cc11-3466-4ca3-9e50-91417defedf0", - "enableAcceleratedNetworking": false, "dnsSettings": {"internalDnsNameLabel": - "doodle", "internalFqdn": "noodle.qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net", - "internalDomainNameSuffix": "qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net", - "dnsServers": [], "appliedDnsServers": []}, "ipConfigurations": [{"properties": - {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}, - "privateIPAddress": "10.0.0.15", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"}, - "primary": true, "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": - "Dynamic", "provisioningState": "Succeeded"}, "name": "ipconfig1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1", - "etag": "W/\\"c22a61a4-dddc-4dae-8333-ad62e35d864c\\""}], "networkSecurityGroup": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg"}, - "enableIPForwarding": false, "provisioningState": "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic", - "etag": "W/\\"c22a61a4-dddc-4dae-8333-ad62e35d864c\\"", "location": "westus"}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic", + "etag": "W/\"e1fb80c2-3000-4bf3-b3c2-4d7cdb29b68f\"", "properties": {"provisioningState": + "Succeeded", "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg"}, + "enableIPForwarding": false, "enableAcceleratedNetworking": false, "dnsSettings": + {"internalDomainNameSuffix": "sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net", + "internalFqdn": "noodle.sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net", + "appliedDnsServers": [], "internalDnsNameLabel": "doodle", "dnsServers": []}, + "ipConfigurations": [{"etag": "W/\"e1fb80c2-3000-4bf3-b3c2-4d7cdb29b68f\"", + "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}, + "privateIPAddressVersion": "IPv4", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"}, + "privateIPAllocationMethod": "Dynamic", "primary": true, "privateIPAddress": + "10.0.0.15", "provisioningState": "Succeeded"}, "name": "ipconfig1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1"}], + "resourceGuid": "6fefb128-2544-44b2-9aab-de250055cdf5"}, "location": "westus"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -3175,19 +3267,21 @@ interactions: Connection: [keep-alive] Content-Length: ['1927'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"a2bb2aaf-6259-4eb1-bf45-911654fc0c36\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"f4ab5293-bdec-4b53-878f-78b548c2cfc1\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"a2bb2aaf-6259-4eb1-bf45-911654fc0c36\\\"\"\ + ,\r\n \"etag\": \"W/\\\"f4ab5293-bdec-4b53-878f-78b548c2cfc1\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ @@ -3196,25 +3290,25 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDnsNameLabel\": \"doodle\",\r\n \"internalFqdn\": \"doodle.qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ - ,\r\n \"internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + internalDnsNameLabel\": \"doodle\",\r\n \"internalFqdn\": \"doodle.sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ + ,\r\n \"internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\ \r\n },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ \r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/028455db-2c0b-4b48-9ad0-4a81e20d74ae?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d0ed2e6f-c18f-4767-9ba9-2e2cc0b04784?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['2375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:13:17 GMT'] + date: ['Fri, 02 Feb 2018 22:37:23 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1191'] status: {code: 200, message: OK} - request: body: null @@ -3224,18 +3318,19 @@ interactions: CommandName: [network nic update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/028455db-2c0b-4b48-9ad0-4a81e20d74ae?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d0ed2e6f-c18f-4767-9ba9-2e2cc0b04784?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:13:48 GMT'] + date: ['Fri, 02 Feb 2018 22:37:55 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -3251,19 +3346,21 @@ interactions: CommandName: [network nic update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ - ,\r\n \"etag\": \"W/\\\"a2bb2aaf-6259-4eb1-bf45-911654fc0c36\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\ + ,\r\n \"etag\": \"W/\\\"f4ab5293-bdec-4b53-878f-78b548c2cfc1\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"c8f0cc11-3466-4ca3-9e50-91417defedf0\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6fefb128-2544-44b2-9aab-de250055cdf5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"a2bb2aaf-6259-4eb1-bf45-911654fc0c36\\\"\"\ + ,\r\n \"etag\": \"W/\\\"f4ab5293-bdec-4b53-878f-78b548c2cfc1\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ @@ -3272,8 +3369,8 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDnsNameLabel\": \"doodle\",\r\n \"internalFqdn\": \"doodle.qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ - ,\r\n \"internalDomainNameSuffix\": \"qqc5vj3xz34enpn25vhu2q0ckd.dx.internal.cloudapp.net\"\ + internalDnsNameLabel\": \"doodle\",\r\n \"internalFqdn\": \"doodle.sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ + ,\r\n \"internalDomainNameSuffix\": \"sd0osjqg5c3enb0o4t2aba1gdf.dx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\ \r\n },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\ @@ -3282,8 +3379,8 @@ interactions: cache-control: [no-cache] content-length: ['2375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:13:47 GMT'] - etag: [W/"a2bb2aaf-6259-4eb1-bf45-911654fc0c36"] + date: ['Fri, 02 Feb 2018 22:37:54 GMT'] + etag: [W/"f4ab5293-bdec-4b53-878f-78b548c2cfc1"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -3300,24 +3397,25 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-11-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/86a4be69-1e3a-4cc6-a0d2-53418572a349?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0b601efa-4e00-4d37-8a89-18532304b8ad?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 18:13:49 GMT'] + date: ['Fri, 02 Feb 2018 22:37:57 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/86a4be69-1e3a-4cc6-a0d2-53418572a349?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/0b601efa-4e00-4d37-8a89-18532304b8ad?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] + x-ms-ratelimit-remaining-subscription-writes: ['1193'] status: {code: 202, message: Accepted} - request: body: null @@ -3327,18 +3425,19 @@ interactions: CommandName: [network nic delete] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/86a4be69-1e3a-4cc6-a0d2-53418572a349?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0b601efa-4e00-4d37-8a89-18532304b8ad?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:14:00 GMT'] + date: ['Fri, 02 Feb 2018 22:38:07 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -3354,18 +3453,19 @@ interactions: CommandName: [network nic list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces?api-version=2017-11-01 response: - body: {string: '{"value":[]}'} + body: {string: !!python/unicode '{"value":[]}'} headers: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:14:01 GMT'] + date: ['Fri, 02 Feb 2018 22:38:08 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -3380,22 +3480,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 18:14:02 GMT'] + date: ['Fri, 02 Feb 2018 22:38:09 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTklDOjVGU0NFTkFSSU80TERFVVdTVFE3QzZCTENKM1BPNXwwMDQ4NEQ1QjM4MzMyMDUwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTklDOjVGU0NFTkFSSU9UMlRaUFZSQjNIMkZRRkU0RzRaRnw5RTNEQzE0QkZBODdDMzY1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1193'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_nsg.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_nsg.yaml index 09cdd272107..7fa106dea0f 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_nsg.yaml +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_nsg.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"tags": {"use": "az-test"}, "location": "westus"}' + body: !!python/unicode '{"location": "westus", "tags": {"use": "az-test"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -8,23 +8,23 @@ interactions: Connection: [keep-alive] Content-Length: ['50'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nsg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001","name":"cli_test_nsg000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001","name":"cli_test_nsg000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:53 GMT'] + date: ['Fri, 02 Feb 2018 22:33:43 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -34,26 +34,26 @@ interactions: CommandName: [network nsg create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nsg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001","name":"cli_test_nsg000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001","name":"cli_test_nsg000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:54 GMT'] + date: ['Fri, 02 Feb 2018 22:33:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"location": "westus"}' + body: !!python/unicode '{"location": "westus"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -61,20 +61,22 @@ interactions: Connection: [keep-alive] Content-Length: ['22'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"test-nsg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\ - ,\r\n \"etag\": \"W/\\\"2b6f61f9-4aca-4c47-b40d-b9a3cd515a5f\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"test-nsg1\",\r\n \"id\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\ + ,\r\n \"etag\": \"W/\\\"7001adcc-7b3f-45b3-b33a-95ca83b590f3\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"resourceGuid\": \"91c277f1-ad42-48d0-844e-38fc091cc22a\",\r\n \ + ,\r\n \"resourceGuid\": \"d88aaf0f-3bcd-433c-b928-251326140d98\",\r\n \ \ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\ \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound\"\ - ,\r\n \"etag\": \"W/\\\"2b6f61f9-4aca-4c47-b40d-b9a3cd515a5f\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7001adcc-7b3f-45b3-b33a-95ca83b590f3\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -86,7 +88,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\ - ,\r\n \"etag\": \"W/\\\"2b6f61f9-4aca-4c47-b40d-b9a3cd515a5f\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7001adcc-7b3f-45b3-b33a-95ca83b590f3\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -98,7 +100,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound\"\ - ,\r\n \"etag\": \"W/\\\"2b6f61f9-4aca-4c47-b40d-b9a3cd515a5f\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7001adcc-7b3f-45b3-b33a-95ca83b590f3\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Deny all inbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -109,7 +111,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"2b6f61f9-4aca-4c47-b40d-b9a3cd515a5f\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7001adcc-7b3f-45b3-b33a-95ca83b590f3\\\"\"\ ,\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\"\ @@ -121,7 +123,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"2b6f61f9-4aca-4c47-b40d-b9a3cd515a5f\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7001adcc-7b3f-45b3-b33a-95ca83b590f3\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -133,7 +135,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound\"\ - ,\r\n \"etag\": \"W/\\\"2b6f61f9-4aca-4c47-b40d-b9a3cd515a5f\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7001adcc-7b3f-45b3-b33a-95ca83b590f3\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"description\": \"Deny all outbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -144,16 +146,16 @@ interactions: : [],\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/fffe9a59-ec37-4182-97b7-06ba035b8311?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6b051090-7cdf-481d-b030-a95324c85ce8?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['6479'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:09:56 GMT'] + date: ['Fri, 02 Feb 2018 22:33:44 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -163,18 +165,19 @@ interactions: CommandName: [network nsg create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fffe9a59-ec37-4182-97b7-06ba035b8311?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6b051090-7cdf-481d-b030-a95324c85ce8?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:07 GMT'] + date: ['Fri, 02 Feb 2018 22:33:55 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -190,20 +193,22 @@ interactions: CommandName: [network nsg create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"test-nsg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\ - ,\r\n \"etag\": \"W/\\\"97de359c-c57f-4cb7-9265-0872de636f56\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"test-nsg1\",\r\n \"id\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\ + ,\r\n \"etag\": \"W/\\\"dd186b10-2c8a-4cd3-b7b6-45ea25853d7c\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"91c277f1-ad42-48d0-844e-38fc091cc22a\",\r\n \ + ,\r\n \"resourceGuid\": \"d88aaf0f-3bcd-433c-b928-251326140d98\",\r\n \ \ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\ \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound\"\ - ,\r\n \"etag\": \"W/\\\"97de359c-c57f-4cb7-9265-0872de636f56\\\"\"\ + ,\r\n \"etag\": \"W/\\\"dd186b10-2c8a-4cd3-b7b6-45ea25853d7c\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -215,7 +220,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\ - ,\r\n \"etag\": \"W/\\\"97de359c-c57f-4cb7-9265-0872de636f56\\\"\"\ + ,\r\n \"etag\": \"W/\\\"dd186b10-2c8a-4cd3-b7b6-45ea25853d7c\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -227,7 +232,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound\"\ - ,\r\n \"etag\": \"W/\\\"97de359c-c57f-4cb7-9265-0872de636f56\\\"\"\ + ,\r\n \"etag\": \"W/\\\"dd186b10-2c8a-4cd3-b7b6-45ea25853d7c\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Deny all inbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -238,7 +243,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"97de359c-c57f-4cb7-9265-0872de636f56\\\"\"\ + ,\r\n \"etag\": \"W/\\\"dd186b10-2c8a-4cd3-b7b6-45ea25853d7c\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow outbound traffic from all VMs to all\ \ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\ @@ -250,7 +255,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"97de359c-c57f-4cb7-9265-0872de636f56\\\"\"\ + ,\r\n \"etag\": \"W/\\\"dd186b10-2c8a-4cd3-b7b6-45ea25853d7c\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -262,7 +267,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound\"\ - ,\r\n \"etag\": \"W/\\\"97de359c-c57f-4cb7-9265-0872de636f56\\\"\"\ + ,\r\n \"etag\": \"W/\\\"dd186b10-2c8a-4cd3-b7b6-45ea25853d7c\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Deny all outbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -276,8 +281,8 @@ interactions: cache-control: [no-cache] content-length: ['6486'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:06 GMT'] - etag: [W/"97de359c-c57f-4cb7-9265-0872de636f56"] + date: ['Fri, 02 Feb 2018 22:33:55 GMT'] + etag: [W/"dd186b10-2c8a-4cd3-b7b6-45ea25853d7c"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -286,9 +291,10 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"name": "web", "properties": {"sourceAddressPrefix": "789", "destinationPortRange": - "4444", "priority": 1000, "sourcePortRange": "*", "destinationAddressPrefix": - "1234", "direction": "Inbound", "access": "Allow", "protocol": "*"}}' + body: !!python/unicode '{"properties": {"access": "Allow", "priority": 1000, "direction": + "Inbound", "protocol": "*", "sourcePortRange": "*", "destinationPortRange": + "4444", "destinationAddressPrefix": "1234", "sourceAddressPrefix": "789"}, "name": + "web"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -296,14 +302,15 @@ interactions: Connection: [keep-alive] Content-Length: ['231'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ - ,\r\n \"etag\": \"W/\\\"896dd25a-9223-4c58-9954-e3c818787466\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ + ,\r\n \"etag\": \"W/\\\"3139767b-9dd4-4c38-96f4-bd0a4e159e14\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\ : \"4444\",\r\n \"sourceAddressPrefix\": \"789\",\r\n \"destinationAddressPrefix\"\ @@ -312,16 +319,16 @@ interactions: destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \ \ \"destinationAddressPrefixes\": []\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5978fade-4247-44b1-91b7-7518109f2326?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d5b74a07-0100-4d70-b611-0382413aa1b6?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['749'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:08 GMT'] + date: ['Fri, 02 Feb 2018 22:33:57 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: null @@ -331,18 +338,19 @@ interactions: CommandName: [network nsg rule create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5978fade-4247-44b1-91b7-7518109f2326?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d5b74a07-0100-4d70-b611-0382413aa1b6?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:18 GMT'] + date: ['Fri, 02 Feb 2018 22:34:07 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -358,14 +366,15 @@ interactions: CommandName: [network nsg rule create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\ : \"4444\",\r\n \"sourceAddressPrefix\": \"789\",\r\n \"destinationAddressPrefix\"\ @@ -377,8 +386,8 @@ interactions: cache-control: [no-cache] content-length: ['750'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:19 GMT'] - etag: [W/"c6986be7-b24b-4bd4-8a8d-d48c162185d2"] + date: ['Fri, 02 Feb 2018 22:34:07 GMT'] + etag: [W/"d670b5b2-601b-4772-a5ec-1113c672be54"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -394,36 +403,31 @@ interactions: CommandName: [network nsg list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-11-01 response: - body: {string: '{"value":[{"name":"testnsg","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/networkSecurityGroups/testnsg","etag":"W/\"98c1d133-0244-41f9-967f-b4bb664a8d88\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"bee523f6-201b-4946-a551-9e85befa5cd7","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/networkSecurityGroups/testnsg/defaultSecurityRules/AllowVnetInBound","etag":"W/\"98c1d133-0244-41f9-967f-b4bb664a8d88\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/networkSecurityGroups/testnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"98c1d133-0244-41f9-967f-b4bb664a8d88\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/networkSecurityGroups/testnsg/defaultSecurityRules/DenyAllInBound","etag":"W/\"98c1d133-0244-41f9-967f-b4bb664a8d88\"","properties":{"provisioningState":"Succeeded","description":"Deny - all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/networkSecurityGroups/testnsg/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"98c1d133-0244-41f9-967f-b4bb664a8d88\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/networkSecurityGroups/testnsg/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"98c1d133-0244-41f9-967f-b4bb664a8d88\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/networkSecurityGroups/testnsg/defaultSecurityRules/DenyAllOutBound","etag":"W/\"98c1d133-0244-41f9-967f-b4bb664a8d88\"","properties":{"provisioningState":"Succeeded","description":"Deny - all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1241aNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1241aNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1241aNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1241aNic"}]}},{"name":"mynsg","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/mynsg","etag":"W/\"65e0855e-042c-40dc-af38-a9ca790be86c\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"6a90ddcc-75e1-4b1c-8e5a-01366322aec3","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetInBound","etag":"W/\"65e0855e-042c-40dc-af38-a9ca790be86c\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"65e0855e-042c-40dc-af38-a9ca790be86c\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllInBound","etag":"W/\"65e0855e-042c-40dc-af38-a9ca790be86c\"","properties":{"provisioningState":"Succeeded","description":"Deny - all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"65e0855e-042c-40dc-af38-a9ca790be86c\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"65e0855e-042c-40dc-af38-a9ca790be86c\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllOutBound","etag":"W/\"65e0855e-042c-40dc-af38-a9ca790be86c\"","properties":{"provisioningState":"Succeeded","description":"Deny - all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}},{"name":"myothernsg","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/myothernsg","etag":"W/\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"307e3753-d29c-46f4-9e75-b6c68d342906","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowVnetInBound","etag":"W/\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/DenyAllInBound","etag":"W/\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\"","properties":{"provisioningState":"Succeeded","description":"Deny - all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario4ldeuwstq7c6blcj3po5aq7wpleghx5oiuqwmjcykgko7j6mf7ggsh/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/DenyAllOutBound","etag":"W/\"feb14c0a-6da2-4477-9596-2d5e2b854a9e\"","properties":{"provisioningState":"Succeeded","description":"Deny - all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}},{"name":"test-nsg1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1","etag":"W/\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"91c277f1-ad42-48d0-844e-38fc091cc22a","securityRules":[{"name":"web","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web","etag":"W/\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\"","properties":{"provisioningState":"Succeeded","protocol":"*","sourcePortRange":"*","destinationPortRange":"4444","sourceAddressPrefix":"789","destinationAddressPrefix":"1234","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\"","properties":{"provisioningState":"Succeeded","description":"Deny - all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\"","properties":{"provisioningState":"Succeeded","description":"Deny + body: {string: !!python/unicode '{"value":[{"name":"mynsg","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/mynsg","etag":"W/\"c1d831f9-5973-4919-ad1d-2c1ed31659af\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"73039a9a-f315-408f-84a6-dacf8d79b18a","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetInBound","etag":"W/\"c1d831f9-5973-4919-ad1d-2c1ed31659af\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"c1d831f9-5973-4919-ad1d-2c1ed31659af\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllInBound","etag":"W/\"c1d831f9-5973-4919-ad1d-2c1ed31659af\"","properties":{"provisioningState":"Succeeded","description":"Deny + all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"c1d831f9-5973-4919-ad1d-2c1ed31659af\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"c1d831f9-5973-4919-ad1d-2c1ed31659af\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllOutBound","etag":"W/\"c1d831f9-5973-4919-ad1d-2c1ed31659af\"","properties":{"provisioningState":"Succeeded","description":"Deny + all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}},{"name":"myothernsg","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/myothernsg","etag":"W/\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"0a65613a-0e43-45ee-b758-ec0627c42766","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowVnetInBound","etag":"W/\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/DenyAllInBound","etag":"W/\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\"","properties":{"provisioningState":"Succeeded","description":"Deny + all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/DenyAllOutBound","etag":"W/\"68b39fcb-3ee3-4dda-9a38-6fce0bcf6de1\"","properties":{"provisioningState":"Succeeded","description":"Deny + all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}},{"name":"test-nsg1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1","etag":"W/\"d670b5b2-601b-4772-a5ec-1113c672be54\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"d88aaf0f-3bcd-433c-b928-251326140d98","securityRules":[{"name":"web","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web","etag":"W/\"d670b5b2-601b-4772-a5ec-1113c672be54\"","properties":{"provisioningState":"Succeeded","protocol":"*","sourcePortRange":"*","destinationPortRange":"4444","sourceAddressPrefix":"789","destinationAddressPrefix":"1234","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"d670b5b2-601b-4772-a5ec-1113c672be54\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"d670b5b2-601b-4772-a5ec-1113c672be54\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"d670b5b2-601b-4772-a5ec-1113c672be54\"","properties":{"provisioningState":"Succeeded","description":"Deny + all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"d670b5b2-601b-4772-a5ec-1113c672be54\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"d670b5b2-601b-4772-a5ec-1113c672be54\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"d670b5b2-601b-4772-a5ec-1113c672be54\"","properties":{"provisioningState":"Succeeded","description":"Deny all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}},{"name":"sdk-test-mNSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f03d55e3-d89d-495d-bff6-c544cd58ebcf","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG/securityRules/default-allow-ssh","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","properties":{"provisioningState":"Succeeded","description":"Allow inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","properties":{"provisioningState":"Succeeded","description":"Allow inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","properties":{"provisioningState":"Succeeded","description":"Deny @@ -436,48 +440,41 @@ interactions: all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"5cb592e2-37a1-4a48-b777-355082cb2bf6\"","properties":{"provisioningState":"Succeeded","description":"Allow outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"5cb592e2-37a1-4a48-b777-355082cb2bf6\"","properties":{"provisioningState":"Succeeded","description":"Allow outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"5cb592e2-37a1-4a48-b777-355082cb2bf6\"","properties":{"provisioningState":"Succeeded","description":"Deny - all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic"}]}},{"name":"vm1NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","etag":"W/\"6b26ba51-ff31-4b8d-b3bf-ba9f2b121102\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a3f2d3b4-54ef-4e63-b722-f36b18e0c612","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh","etag":"W/\"6b26ba51-ff31-4b8d-b3bf-ba9f2b121102\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"6b26ba51-ff31-4b8d-b3bf-ba9f2b121102\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"6b26ba51-ff31-4b8d-b3bf-ba9f2b121102\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"6b26ba51-ff31-4b8d-b3bf-ba9f2b121102\"","properties":{"provisioningState":"Succeeded","description":"Deny - all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"6b26ba51-ff31-4b8d-b3bf-ba9f2b121102\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"6b26ba51-ff31-4b8d-b3bf-ba9f2b121102\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"6b26ba51-ff31-4b8d-b3bf-ba9f2b121102\"","properties":{"provisioningState":"Succeeded","description":"Deny - all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}},{"name":"yugangw2-vm1NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm1NSG","etag":"W/\"081c28ac-8e3f-4212-a622-7bd750477e28\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"61991477-b199-4c60-aa3c-f32a27d79403","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm1NSG/securityRules/default-allow-ssh","etag":"W/\"081c28ac-8e3f-4212-a622-7bd750477e28\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm1NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"081c28ac-8e3f-4212-a622-7bd750477e28\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"081c28ac-8e3f-4212-a622-7bd750477e28\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm1NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"081c28ac-8e3f-4212-a622-7bd750477e28\"","properties":{"provisioningState":"Succeeded","description":"Deny - all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm1NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"081c28ac-8e3f-4212-a622-7bd750477e28\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm1NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"081c28ac-8e3f-4212-a622-7bd750477e28\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm1NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"081c28ac-8e3f-4212-a622-7bd750477e28\"","properties":{"provisioningState":"Succeeded","description":"Deny - all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-vm1VMNic"}]}},{"name":"nsg5c628358","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5c628358/providers/Microsoft.Network/networkSecurityGroups/nsg5c628358","etag":"W/\"9e86df72-c630-4069-9625-a544fcc5048a\"","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"401dbffd-121a-4e93-be5d-fc9291895786","securityRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5c628358/providers/Microsoft.Network/networkSecurityGroups/nsg5c628358/securityRules/rule1","etag":"W/\"9e86df72-c630-4069-9625-a544fcc5048a\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"80","destinationPortRange":"80","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":100,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"rule2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5c628358/providers/Microsoft.Network/networkSecurityGroups/nsg5c628358/securityRules/rule2","etag":"W/\"9e86df72-c630-4069-9625-a544fcc5048a\"","properties":{"provisioningState":"Succeeded","description":"foo!!","protocol":"*","sourcePortRange":"*","destinationPortRange":"22-25","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":200,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5c628358/providers/Microsoft.Network/networkSecurityGroups/nsg5c628358/defaultSecurityRules/AllowVnetInBound","etag":"W/\"9e86df72-c630-4069-9625-a544fcc5048a\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5c628358/providers/Microsoft.Network/networkSecurityGroups/nsg5c628358/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"9e86df72-c630-4069-9625-a544fcc5048a\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5c628358/providers/Microsoft.Network/networkSecurityGroups/nsg5c628358/defaultSecurityRules/DenyAllInBound","etag":"W/\"9e86df72-c630-4069-9625-a544fcc5048a\"","properties":{"provisioningState":"Succeeded","description":"Deny - all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5c628358/providers/Microsoft.Network/networkSecurityGroups/nsg5c628358/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"9e86df72-c630-4069-9625-a544fcc5048a\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5c628358/providers/Microsoft.Network/networkSecurityGroups/nsg5c628358/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"9e86df72-c630-4069-9625-a544fcc5048a\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5c628358/providers/Microsoft.Network/networkSecurityGroups/nsg5c628358/defaultSecurityRules/DenyAllOutBound","etag":"W/\"9e86df72-c630-4069-9625-a544fcc5048a\"","properties":{"provisioningState":"Succeeded","description":"Deny - all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}},{"name":"backendnsg","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9857/providers/Microsoft.Network/networkSecurityGroups/backendnsg","etag":"W/\"56da2e53-a80b-4963-a15c-d279abc30d3b\"","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"77b9e925-c6e7-4d3c-8605-9c45680674cf","securityRules":[{"name":"DenyInternetInComing","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9857/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetInComing","etag":"W/\"56da2e53-a80b-4963-a15c-d279abc30d3b\"","properties":{"provisioningState":"Succeeded","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"INTERNET","destinationAddressPrefix":"*","access":"Deny","priority":100,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyInternetOutGoing","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9857/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetOutGoing","etag":"W/\"56da2e53-a80b-4963-a15c-d279abc30d3b\"","properties":{"provisioningState":"Succeeded","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"INTERNET","access":"Deny","priority":100,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9857/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetInBound","etag":"W/\"56da2e53-a80b-4963-a15c-d279abc30d3b\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9857/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"56da2e53-a80b-4963-a15c-d279abc30d3b\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9857/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllInBound","etag":"W/\"56da2e53-a80b-4963-a15c-d279abc30d3b\"","properties":{"provisioningState":"Succeeded","description":"Deny - all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9857/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"56da2e53-a80b-4963-a15c-d279abc30d3b\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9857/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"56da2e53-a80b-4963-a15c-d279abc30d3b\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9857/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllOutBound","etag":"W/\"56da2e53-a80b-4963-a15c-d279abc30d3b\"","properties":{"provisioningState":"Succeeded","description":"Deny - all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}},{"name":"yugangw-systemNSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkSecurityGroups/yugangw-systemNSG","etag":"W/\"75182151-088b-492e-9e8b-51cdc8599dfb\"","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"23f117dc-c426-41a8-a51f-94e29a06b317","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkSecurityGroups/yugangw-systemNSG/securityRules/default-allow-ssh","etag":"W/\"75182151-088b-492e-9e8b-51cdc8599dfb\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkSecurityGroups/yugangw-systemNSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"75182151-088b-492e-9e8b-51cdc8599dfb\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkSecurityGroups/yugangw-systemNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"75182151-088b-492e-9e8b-51cdc8599dfb\"","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkSecurityGroups/yugangw-systemNSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"75182151-088b-492e-9e8b-51cdc8599dfb\"","properties":{"provisioningState":"Succeeded","description":"Deny - all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkSecurityGroups/yugangw-systemNSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"75182151-088b-492e-9e8b-51cdc8599dfb\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkSecurityGroups/yugangw-systemNSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"75182151-088b-492e-9e8b-51cdc8599dfb\"","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkSecurityGroups/yugangw-systemNSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"75182151-088b-492e-9e8b-51cdc8599dfb\"","properties":{"provisioningState":"Succeeded","description":"Deny - all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkInterfaces/yugangw-systemVMNic"}]}}]}'} + all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic"}]}},{"name":"MyVmNSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/MyVmNSG","etag":"W/\"db801ebd-f62c-45d9-9360-a599240f9041\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"c6a7d3b1-1808-4c3d-b621-0b9ea83e7fd7","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/MyVmNSG/securityRules/default-allow-ssh","etag":"W/\"db801ebd-f62c-45d9-9360-a599240f9041\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/MyVmNSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"db801ebd-f62c-45d9-9360-a599240f9041\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/MyVmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"db801ebd-f62c-45d9-9360-a599240f9041\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/MyVmNSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"db801ebd-f62c-45d9-9360-a599240f9041\"","properties":{"provisioningState":"Succeeded","description":"Deny + all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/MyVmNSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"db801ebd-f62c-45d9-9360-a599240f9041\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/MyVmNSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"db801ebd-f62c-45d9-9360-a599240f9041\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/MyVmNSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"db801ebd-f62c-45d9-9360-a599240f9041\"","properties":{"provisioningState":"Succeeded","description":"Deny + all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkInterfaces/MyVmVMNic"}]}},{"name":"yg-1NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-1NSG","etag":"W/\"b84cf777-3d18-409f-bfd8-10db21d3a5f3\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"13f57dc3-f309-4e40-9c99-1088f74fb24e","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-1NSG/securityRules/default-allow-ssh","etag":"W/\"b84cf777-3d18-409f-bfd8-10db21d3a5f3\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-1NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"b84cf777-3d18-409f-bfd8-10db21d3a5f3\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"b84cf777-3d18-409f-bfd8-10db21d3a5f3\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-1NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"b84cf777-3d18-409f-bfd8-10db21d3a5f3\"","properties":{"provisioningState":"Succeeded","description":"Deny + all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-1NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"b84cf777-3d18-409f-bfd8-10db21d3a5f3\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-1NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"b84cf777-3d18-409f-bfd8-10db21d3a5f3\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-1NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"b84cf777-3d18-409f-bfd8-10db21d3a5f3\"","properties":{"provisioningState":"Succeeded","description":"Deny + all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkInterfaces/yg-1VMNic"}]}},{"name":"yg-d1NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-d1NSG","etag":"W/\"652b307a-92eb-4120-9ade-b7af3f44c832\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"17c4ffa9-ff45-4d03-8c21-bf0665765aa5","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-d1NSG/securityRules/default-allow-ssh","etag":"W/\"652b307a-92eb-4120-9ade-b7af3f44c832\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-d1NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"652b307a-92eb-4120-9ade-b7af3f44c832\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-d1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"652b307a-92eb-4120-9ade-b7af3f44c832\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-d1NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"652b307a-92eb-4120-9ade-b7af3f44c832\"","properties":{"provisioningState":"Succeeded","description":"Deny + all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-d1NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"652b307a-92eb-4120-9ade-b7af3f44c832\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-d1NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"652b307a-92eb-4120-9ade-b7af3f44c832\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkSecurityGroups/yg-d1NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"652b307a-92eb-4120-9ade-b7af3f44c832\"","properties":{"provisioningState":"Succeeded","description":"Deny + all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkInterfaces/yg-d1VMNic"}]}},{"name":"nsg92426311","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg92426311/providers/Microsoft.Network/networkSecurityGroups/nsg92426311","etag":"W/\"9ff640c9-d898-421a-8541-a92de2e2e4a1\"","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a279142f-ff96-4d38-be6e-2cbac74b3424","securityRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg92426311/providers/Microsoft.Network/networkSecurityGroups/nsg92426311/securityRules/rule1","etag":"W/\"9ff640c9-d898-421a-8541-a92de2e2e4a1\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"80","destinationPortRange":"80","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":100,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"rule2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg92426311/providers/Microsoft.Network/networkSecurityGroups/nsg92426311/securityRules/rule2","etag":"W/\"9ff640c9-d898-421a-8541-a92de2e2e4a1\"","properties":{"provisioningState":"Succeeded","description":"foo!!","protocol":"*","sourcePortRange":"*","destinationPortRange":"22-25","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":200,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg92426311/providers/Microsoft.Network/networkSecurityGroups/nsg92426311/defaultSecurityRules/AllowVnetInBound","etag":"W/\"9ff640c9-d898-421a-8541-a92de2e2e4a1\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg92426311/providers/Microsoft.Network/networkSecurityGroups/nsg92426311/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"9ff640c9-d898-421a-8541-a92de2e2e4a1\"","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg92426311/providers/Microsoft.Network/networkSecurityGroups/nsg92426311/defaultSecurityRules/DenyAllInBound","etag":"W/\"9ff640c9-d898-421a-8541-a92de2e2e4a1\"","properties":{"provisioningState":"Succeeded","description":"Deny + all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg92426311/providers/Microsoft.Network/networkSecurityGroups/nsg92426311/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"9ff640c9-d898-421a-8541-a92de2e2e4a1\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg92426311/providers/Microsoft.Network/networkSecurityGroups/nsg92426311/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"9ff640c9-d898-421a-8541-a92de2e2e4a1\"","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg92426311/providers/Microsoft.Network/networkSecurityGroups/nsg92426311/defaultSecurityRules/DenyAllOutBound","etag":"W/\"9ff640c9-d898-421a-8541-a92de2e2e4a1\"","properties":{"provisioningState":"Succeeded","description":"Deny + all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}}]}'} headers: cache-control: [no-cache] - content-length: ['58734'] + content-length: ['46851'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:20 GMT'] + date: ['Fri, 02 Feb 2018 22:34:08 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] - x-ms-original-request-ids: [1dbee5f3-dfbe-4afd-850b-a4588373ec02, 9d340ab1-569e-49cd-b8ff-323033762b2c, - 4ba316c4-1731-4d36-a370-b9652572cac4] + x-ms-original-request-ids: [1b86b9f1-0e42-4133-b7e3-8cb42a6aa050, 98fd3b1a-7108-449b-a670-99c8f5105edc] status: {code: 200, message: OK} - request: body: null @@ -487,21 +484,22 @@ interactions: CommandName: [network nsg list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"test-nsg1\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"test-nsg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\",\r\ \n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"\ location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"91c277f1-ad42-48d0-844e-38fc091cc22a\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"d88aaf0f-3bcd-433c-b928-251326140d98\"\ ,\r\n \"securityRules\": [\r\n {\r\n \"name\":\ \ \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"\ sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"4444\"\ @@ -513,7 +511,7 @@ interactions: : []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\"\ : [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"description\": \"Allow inbound traffic\ \ from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \ @@ -526,7 +524,7 @@ interactions: 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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"description\": \"Allow inbound traffic\ \ from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \ @@ -539,7 +537,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\ @@ -551,7 +549,7 @@ interactions: \ \"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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"description\": \"Allow outbound traffic\ \ from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\"\ @@ -564,7 +562,7 @@ interactions: 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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"description\": \"Allow outbound traffic\ \ from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \ @@ -577,7 +575,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\ @@ -593,7 +591,7 @@ interactions: cache-control: [no-cache] content-length: ['8033'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:21 GMT'] + date: ['Fri, 02 Feb 2018 22:34:08 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -609,20 +607,22 @@ interactions: CommandName: [network nsg show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"test-nsg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"test-nsg1\",\r\n \"id\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"91c277f1-ad42-48d0-844e-38fc091cc22a\",\r\n \ + ,\r\n \"resourceGuid\": \"d88aaf0f-3bcd-433c-b928-251326140d98\",\r\n \ \ \"securityRules\": [\r\n {\r\n \"name\": \"web\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ ,\r\n \"destinationPortRange\": \"4444\",\r\n \"sourceAddressPrefix\"\ @@ -633,7 +633,7 @@ interactions: : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \ \ }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"\ name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -645,7 +645,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -657,7 +657,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Deny all inbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -668,7 +668,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow outbound traffic from all VMs to all\ \ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\ @@ -680,7 +680,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\ @@ -692,7 +692,7 @@ interactions: : [],\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_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"description\": \"Deny all outbound traffic\",\r\n \ \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \ @@ -706,8 +706,8 @@ interactions: cache-control: [no-cache] content-length: ['7364'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:22 GMT'] - etag: [W/"c6986be7-b24b-4bd4-8a8d-d48c162185d2"] + date: ['Fri, 02 Feb 2018 22:34:09 GMT'] + etag: [W/"d670b5b2-601b-4772-a5ec-1113c672be54"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -723,15 +723,16 @@ interactions: CommandName: [network nsg rule list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"web\",\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\ \n \"destinationPortRange\": \"4444\",\r\n \"sourceAddressPrefix\"\ @@ -744,7 +745,7 @@ interactions: cache-control: [no-cache] content-length: ['855'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:22 GMT'] + date: ['Fri, 02 Feb 2018 22:34:09 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -760,14 +761,15 @@ interactions: CommandName: [network nsg rule show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\ : \"4444\",\r\n \"sourceAddressPrefix\": \"789\",\r\n \"destinationAddressPrefix\"\ @@ -779,8 +781,8 @@ interactions: cache-control: [no-cache] content-length: ['750'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:23 GMT'] - etag: [W/"c6986be7-b24b-4bd4-8a8d-d48c162185d2"] + date: ['Fri, 02 Feb 2018 22:34:09 GMT'] + etag: [W/"d670b5b2-601b-4772-a5ec-1113c672be54"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -796,14 +798,15 @@ interactions: CommandName: [network nsg rule update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ - ,\r\n \"etag\": \"W/\\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ + ,\r\n \"etag\": \"W/\\\"d670b5b2-601b-4772-a5ec-1113c672be54\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\ : \"4444\",\r\n \"sourceAddressPrefix\": \"789\",\r\n \"destinationAddressPrefix\"\ @@ -815,8 +818,8 @@ interactions: cache-control: [no-cache] content-length: ['750'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:23 GMT'] - etag: [W/"c6986be7-b24b-4bd4-8a8d-d48c162185d2"] + date: ['Fri, 02 Feb 2018 22:34:10 GMT'] + etag: [W/"d670b5b2-601b-4772-a5ec-1113c672be54"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -825,12 +828,12 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"name": "web", "etag": "W/\\"c6986be7-b24b-4bd4-8a8d-d48c162185d2\\"", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web", - "properties": {"sourceAddressPrefix": "111", "destinationPortRange": "1234-1235", - "priority": 888, "destinationAddressPrefix": "111", "description": "greatrule", - "direction": "Outbound", "sourcePortRange": "1234-1235", "access": "Deny", "provisioningState": - "Succeeded", "protocol": "Tcp"}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web", + "etag": "W/\"d670b5b2-601b-4772-a5ec-1113c672be54\"", "properties": {"access": + "Deny", "priority": 888, "direction": "Outbound", "protocol": "Tcp", "description": + "greatrule", "destinationPortRange": "1234-1235", "sourcePortRange": "1234-1235", + "destinationAddressPrefix": "111", "sourceAddressPrefix": "111", "provisioningState": + "Succeeded"}, "name": "web"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -838,14 +841,15 @@ interactions: Connection: [keep-alive] Content-Length: ['590'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ - ,\r\n \"etag\": \"W/\\\"ba4f48ce-f122-4bf3-b5bf-a74e2259b9a7\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ + ,\r\n \"etag\": \"W/\\\"4d86dc0a-4bbd-4850-b2eb-9945180e34d1\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ description\": \"greatrule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\"\ : \"1234-1235\",\r\n \"destinationPortRange\": \"1234-1235\",\r\n \"\ @@ -855,11 +859,11 @@ interactions: : [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\ : []\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ab52dc5d-6166-4e39-9b24-183409560625?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/07e63f64-93ce-4916-9208-f67d147e0a29?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['795'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:24 GMT'] + date: ['Fri, 02 Feb 2018 22:34:10 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -876,18 +880,19 @@ interactions: CommandName: [network nsg rule update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ab52dc5d-6166-4e39-9b24-183409560625?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/07e63f64-93ce-4916-9208-f67d147e0a29?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:34 GMT'] + date: ['Fri, 02 Feb 2018 22:34:21 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -903,14 +908,15 @@ interactions: CommandName: [network nsg rule update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ - ,\r\n \"etag\": \"W/\\\"595c5f1e-e0cf-4bd9-bb79-cd20ccaeda57\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ + ,\r\n \"etag\": \"W/\\\"610cacd7-5dfb-4862-8828-890a3a62041b\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ description\": \"greatrule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\"\ : \"1234-1235\",\r\n \"destinationPortRange\": \"1234-1235\",\r\n \"\ @@ -923,8 +929,8 @@ interactions: cache-control: [no-cache] content-length: ['796'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:34 GMT'] - etag: [W/"595c5f1e-e0cf-4bd9-bb79-cd20ccaeda57"] + date: ['Fri, 02 Feb 2018 22:34:22 GMT'] + etag: [W/"610cacd7-5dfb-4862-8828-890a3a62041b"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -940,14 +946,15 @@ interactions: CommandName: [network nsg rule update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ - ,\r\n \"etag\": \"W/\\\"595c5f1e-e0cf-4bd9-bb79-cd20ccaeda57\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ + ,\r\n \"etag\": \"W/\\\"610cacd7-5dfb-4862-8828-890a3a62041b\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ description\": \"greatrule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\"\ : \"1234-1235\",\r\n \"destinationPortRange\": \"1234-1235\",\r\n \"\ @@ -960,8 +967,8 @@ interactions: cache-control: [no-cache] content-length: ['796'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:35 GMT'] - etag: [W/"595c5f1e-e0cf-4bd9-bb79-cd20ccaeda57"] + date: ['Fri, 02 Feb 2018 22:34:22 GMT'] + etag: [W/"610cacd7-5dfb-4862-8828-890a3a62041b"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -970,13 +977,13 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"name": "web", "etag": "W/\\"595c5f1e-e0cf-4bd9-bb79-cd20ccaeda57\\"", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web", - "properties": {"destinationAddressPrefix": "111", "direction": "Inbound", "protocol": - "*", "description": "cool", "sourcePortRanges": [], "destinationPortRanges": - [], "sourceAddressPrefix": "111", "destinationPortRange": "1234-1235", "priority": - 888, "sourcePortRange": "1234-1235", "destinationAddressPrefixes": [], "sourceAddressPrefixes": - [], "provisioningState": "Succeeded", "access": "Allow"}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web", + "etag": "W/\"610cacd7-5dfb-4862-8828-890a3a62041b\"", "properties": {"sourceAddressPrefixes": + [], "sourcePortRanges": [], "direction": "Inbound", "protocol": "*", "description": + "cool", "destinationPortRanges": [], "access": "Allow", "destinationAddressPrefixes": + [], "destinationPortRange": "1234-1235", "sourceAddressPrefix": "111", "priority": + 888, "destinationAddressPrefix": "111", "sourcePortRange": "1234-1235", "provisioningState": + "Succeeded"}, "name": "web"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -984,14 +991,15 @@ interactions: Connection: [keep-alive] Content-Length: ['699'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ - ,\r\n \"etag\": \"W/\\\"98088f04-6500-4950-9460-5a2557e7ca0f\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ + ,\r\n \"etag\": \"W/\\\"5b6a3d74-0f4b-4177-8139-d82259d65828\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ description\": \"cool\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\ : \"1234-1235\",\r\n \"destinationPortRange\": \"1234-1235\",\r\n \"\ @@ -1001,18 +1009,18 @@ interactions: : [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\ : []\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2d2b2d95-c3b8-4d68-93e8-d9c2584d0e5e?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2a3119d3-c924-43cc-858d-4bc96d3b807c?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['788'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:37 GMT'] + date: ['Fri, 02 Feb 2018 22:34:23 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -1022,18 +1030,19 @@ interactions: CommandName: [network nsg rule update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2d2b2d95-c3b8-4d68-93e8-d9c2584d0e5e?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2a3119d3-c924-43cc-858d-4bc96d3b807c?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:51 GMT'] + date: ['Fri, 02 Feb 2018 22:34:33 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1049,14 +1058,15 @@ interactions: CommandName: [network nsg rule update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ - ,\r\n \"etag\": \"W/\\\"4d6905c6-2a45-45bc-9b1e-0c0ee897a6aa\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\ + ,\r\n \"etag\": \"W/\\\"54a43bfa-c295-4aa3-86d0-caf8b7aa36a3\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ description\": \"cool\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\ : \"1234-1235\",\r\n \"destinationPortRange\": \"1234-1235\",\r\n \"\ @@ -1069,8 +1079,8 @@ interactions: cache-control: [no-cache] content-length: ['789'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:10:51 GMT'] - etag: [W/"4d6905c6-2a45-45bc-9b1e-0c0ee897a6aa"] + date: ['Fri, 02 Feb 2018 22:34:33 GMT'] + etag: [W/"54a43bfa-c295-4aa3-86d0-caf8b7aa36a3"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1087,24 +1097,25 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-11-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ca16378-6bc6-43f1-b845-068c99d915e7?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ab673d7-8137-4cc9-95ff-8af0c3d17b55?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 18:10:52 GMT'] + date: ['Fri, 02 Feb 2018 22:34:34 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/8ca16378-6bc6-43f1-b845-068c99d915e7?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5ab673d7-8137-4cc9-95ff-8af0c3d17b55?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1189'] status: {code: 202, message: Accepted} - request: body: null @@ -1114,18 +1125,19 @@ interactions: CommandName: [network nsg rule delete] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ca16378-6bc6-43f1-b845-068c99d915e7?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ab673d7-8137-4cc9-95ff-8af0c3d17b55?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:11:03 GMT'] + date: ['Fri, 02 Feb 2018 22:34:45 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1142,24 +1154,25 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1?api-version=2017-11-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b496ed6f-ecd5-4efb-93ef-82e62c7362ad?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/930e8a81-6e11-4243-afe7-49167cfa767e?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 18:11:05 GMT'] + date: ['Fri, 02 Feb 2018 22:34:46 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/b496ed6f-ecd5-4efb-93ef-82e62c7362ad?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/930e8a81-6e11-4243-afe7-49167cfa767e?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1194'] status: {code: 202, message: Accepted} - request: body: null @@ -1169,18 +1182,19 @@ interactions: CommandName: [network nsg delete] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b496ed6f-ecd5-4efb-93ef-82e62c7362ad?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/930e8a81-6e11-4243-afe7-49167cfa767e?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:11:15 GMT'] + date: ['Fri, 02 Feb 2018 22:34:57 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1196,18 +1210,19 @@ interactions: CommandName: [network nsg list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-11-01 response: - body: {string: '{"value":[]}'} + body: {string: !!python/unicode '{"value":[]}'} headers: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:11:17 GMT'] + date: ['Fri, 02 Feb 2018 22:34:58 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1222,22 +1237,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nsg000001?api-version=2017-05-10 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 18:11:18 GMT'] + date: ['Fri, 02 Feb 2018 22:34:58 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTlNHSFI2UjdBR0NYM05PQkFRTkozWlRTQk0yTzRZUDZRNHw2M0JBOEUxQTA4RDAxMTJCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTlNHM0M0UlJUNEdFU1hXSlRaRkxaMk80VU9PQk1YQUlGR3xBNjQ3NEExODg1MzJBNzdBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1190'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_route_table_operation.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_route_table_operation.yaml index feee8873fa4..559608d1093 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_route_table_operation.yaml +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_route_table_operation.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"tags": {"use": "az-test"}, "location": "westus"}' + body: !!python/unicode '{"location": "westus", "tags": {"use": "az-test"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -8,23 +8,23 @@ interactions: Connection: [keep-alive] Content-Length: ['50'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_route_table000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001","name":"cli_test_route_table000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001","name":"cli_test_route_table000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:22:52 GMT'] + date: ['Fri, 02 Feb 2018 22:32:49 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -34,26 +34,26 @@ interactions: CommandName: [network route-table create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_route_table000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001","name":"cli_test_route_table000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001","name":"cli_test_route_table000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:22:56 GMT'] + date: ['Fri, 02 Feb 2018 22:32:49 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"location": "westus"}' + body: !!python/unicode '{"location": "westus"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -61,24 +61,26 @@ interactions: Connection: [keep-alive] Content-Length: ['22'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-route-table\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table\"\ - ,\r\n \"etag\": \"W/\\\"f399768d-3e4b-48a3-bbb5-1814a87f9e89\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-route-table\",\r\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table\"\ + ,\r\n \"etag\": \"W/\\\"969085a4-1532-4b7e-b21d-d3fbd76fe645\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"fe884d2c-1bc6-470f-bab2-e66da16c0847\",\r\n \"\ + \ \"resourceGuid\": \"e9328a79-921d-4d5b-95b5-9c14a87bb1f0\",\r\n \"\ disableBgpRoutePropagation\": false,\r\n \"routes\": []\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bc6f21db-b7db-472f-9573-3767558cf627?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b992fc70-f39d-464d-a8aa-aa40723cc111?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['564'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:00 GMT'] + date: ['Fri, 02 Feb 2018 22:32:50 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -93,18 +95,19 @@ interactions: CommandName: [network route-table create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bc6f21db-b7db-472f-9573-3767558cf627?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b992fc70-f39d-464d-a8aa-aa40723cc111?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:10 GMT'] + date: ['Fri, 02 Feb 2018 22:33:01 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -120,24 +123,26 @@ interactions: CommandName: [network route-table create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-route-table\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table\"\ - ,\r\n \"etag\": \"W/\\\"bfb6ac5f-4d24-4673-8af7-8e2e85bf418d\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-route-table\",\r\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table\"\ + ,\r\n \"etag\": \"W/\\\"1416ef47-1617-4c25-9343-e534d13a09e4\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"fe884d2c-1bc6-470f-bab2-e66da16c0847\",\r\n \"\ + \ \"resourceGuid\": \"e9328a79-921d-4d5b-95b5-9c14a87bb1f0\",\r\n \"\ disableBgpRoutePropagation\": false,\r\n \"routes\": []\r\n }\r\n}"} headers: cache-control: [no-cache] content-length: ['565'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:11 GMT'] - etag: [W/"bfb6ac5f-4d24-4673-8af7-8e2e85bf418d"] + date: ['Fri, 02 Feb 2018 22:33:01 GMT'] + etag: [W/"1416ef47-1617-4c25-9343-e534d13a09e4"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -146,8 +151,8 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"properties": {"addressPrefix": "10.0.5.0/24", "nextHopType": "None"}, - "name": "my-route"}' + body: !!python/unicode '{"properties": {"addressPrefix": "10.0.5.0/24", "nextHopType": + "None"}, "name": "my-route"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -155,23 +160,25 @@ interactions: Connection: [keep-alive] Content-Length: ['91'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"my-route\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\ - ,\r\n \"etag\": \"W/\\\"eb3a3631-787f-4f3b-adc5-d6c674dbfab7\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"my-route\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\ + ,\r\n \"etag\": \"W/\\\"c1875c56-3d08-4649-a00c-5cdba6ece551\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.5.0/24\",\r\n \"nextHopType\": \"None\"\r\n }\r\ \n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d222987-ff4f-4f76-b176-fe717dae667b?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/be202ce8-d9c5-4ea2-9ffe-73622c37e30e?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['442'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:13 GMT'] + date: ['Fri, 02 Feb 2018 22:33:02 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -186,18 +193,19 @@ interactions: CommandName: [network route-table route create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d222987-ff4f-4f76-b176-fe717dae667b?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/be202ce8-d9c5-4ea2-9ffe-73622c37e30e?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:25 GMT'] + date: ['Fri, 02 Feb 2018 22:33:13 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -213,14 +221,16 @@ interactions: CommandName: [network route-table route create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"my-route\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\ - ,\r\n \"etag\": \"W/\\\"e4d25dff-40e7-4eb3-afb7-6c9238ff32b0\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"my-route\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\ + ,\r\n \"etag\": \"W/\\\"e9edaf59-b96f-47d8-bc98-0d022dad43f0\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.5.0/24\",\r\n \"nextHopType\": \"None\"\r\n }\r\ \n}"} @@ -228,8 +238,8 @@ interactions: cache-control: [no-cache] content-length: ['443'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:26 GMT'] - etag: [W/"e4d25dff-40e7-4eb3-afb7-6c9238ff32b0"] + date: ['Fri, 02 Feb 2018 22:33:13 GMT'] + etag: [W/"e9edaf59-b96f-47d8-bc98-0d022dad43f0"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -245,23 +255,38 @@ interactions: CommandName: [network route-table list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/routeTables?api-version=2017-11-01 response: - body: {string: '{"value":[{"name":"cli-test-route-table","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table","etag":"W/\"e4d25dff-40e7-4eb3-afb7-6c9238ff32b0\"","type":"Microsoft.Network/routeTables","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"fe884d2c-1bc6-470f-bab2-e66da16c0847","disableBgpRoutePropagation":false,"routes":[{"name":"my-route","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route","etag":"W/\"e4d25dff-40e7-4eb3-afb7-6c9238ff32b0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.5.0/24","nextHopType":"None"}}]}},{"name":"rt92974753","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg92974753/providers/Microsoft.Network/routeTables/rt92974753","etag":"W/\"709ecb4d-a36c-4ce1-818d-94e94f3a0843\"","type":"Microsoft.Network/routeTables","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"db88991c-5f2e-4f6b-820b-045d65dbbca9","disableBgpRoutePropagation":false,"routes":[{"name":"route1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg92974753/providers/Microsoft.Network/routeTables/rt92974753/routes/route1","etag":"W/\"709ecb4d-a36c-4ce1-818d-94e94f3a0843\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","nextHopType":"VirtualAppliance","nextHopIpAddress":"10.1.0.4"}},{"name":"route2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg92974753/providers/Microsoft.Network/routeTables/rt92974753/routes/route2","etag":"W/\"709ecb4d-a36c-4ce1-818d-94e94f3a0843\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.1.0/24","nextHopType":"VirtualAppliance","nextHopIpAddress":"10.1.0.5"}}]}}]}'} + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"cli-test-route-table\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table\"\ + ,\r\n \"etag\": \"W/\\\"e9edaf59-b96f-47d8-bc98-0d022dad43f0\\\"\",\r\ + \n \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\"\ + : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"e9328a79-921d-4d5b-95b5-9c14a87bb1f0\"\ + ,\r\n \"disableBgpRoutePropagation\": false,\r\n \"routes\"\ + : [\r\n {\r\n \"name\": \"my-route\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\ + ,\r\n \"etag\": \"W/\\\"e9edaf59-b96f-47d8-bc98-0d022dad43f0\\\"\ + \",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.5.0/24\",\r\n\ + \ \"nextHopType\": \"None\"\r\n }\r\n }\r\ + \n ]\r\n }\r\n }\r\n ]\r\n}"} headers: cache-control: [no-cache] - content-length: ['2055'] + content-length: ['1197'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:27 GMT'] + date: ['Fri, 02 Feb 2018 22:33:14 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] vary: [Accept-Encoding] - x-ms-original-request-ids: [165539cb-73ee-47a2-97d3-968d2c998685, 136399b1-b2f5-4b99-9407-030e480bfd12] status: {code: 200, message: OK} - request: body: null @@ -271,22 +296,23 @@ interactions: CommandName: [network route-table list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli-test-route-table\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table\"\ - ,\r\n \"etag\": \"W/\\\"e4d25dff-40e7-4eb3-afb7-6c9238ff32b0\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"cli-test-route-table\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table\"\ + ,\r\n \"etag\": \"W/\\\"e9edaf59-b96f-47d8-bc98-0d022dad43f0\\\"\",\r\ \n \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"fe884d2c-1bc6-470f-bab2-e66da16c0847\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"e9328a79-921d-4d5b-95b5-9c14a87bb1f0\"\ ,\r\n \"disableBgpRoutePropagation\": false,\r\n \"routes\"\ : [\r\n {\r\n \"name\": \"my-route\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\ - ,\r\n \"etag\": \"W/\\\"e4d25dff-40e7-4eb3-afb7-6c9238ff32b0\\\"\ + ,\r\n \"etag\": \"W/\\\"e9edaf59-b96f-47d8-bc98-0d022dad43f0\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.5.0/24\",\r\n\ \ \"nextHopType\": \"None\"\r\n }\r\n }\r\ @@ -295,7 +321,7 @@ interactions: cache-control: [no-cache] content-length: ['1197'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:27 GMT'] + date: ['Fri, 02 Feb 2018 22:33:14 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -311,20 +337,22 @@ interactions: CommandName: [network route-table show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"cli-test-route-table\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table\"\ - ,\r\n \"etag\": \"W/\\\"e4d25dff-40e7-4eb3-afb7-6c9238ff32b0\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"cli-test-route-table\",\r\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table\"\ + ,\r\n \"etag\": \"W/\\\"e9edaf59-b96f-47d8-bc98-0d022dad43f0\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"fe884d2c-1bc6-470f-bab2-e66da16c0847\",\r\n \"\ + \ \"resourceGuid\": \"e9328a79-921d-4d5b-95b5-9c14a87bb1f0\",\r\n \"\ disableBgpRoutePropagation\": false,\r\n \"routes\": [\r\n {\r\n \ \ \"name\": \"my-route\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\ - ,\r\n \"etag\": \"W/\\\"e4d25dff-40e7-4eb3-afb7-6c9238ff32b0\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e9edaf59-b96f-47d8-bc98-0d022dad43f0\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.5.0/24\",\r\n \"nextHopType\"\ : \"None\"\r\n }\r\n }\r\n ]\r\n }\r\n}"} @@ -332,8 +360,8 @@ interactions: cache-control: [no-cache] content-length: ['1076'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:29 GMT'] - etag: [W/"e4d25dff-40e7-4eb3-afb7-6c9238ff32b0"] + date: ['Fri, 02 Feb 2018 22:33:15 GMT'] + etag: [W/"e9edaf59-b96f-47d8-bc98-0d022dad43f0"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -349,15 +377,16 @@ interactions: CommandName: [network route-table route list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"my-route\",\r\ - \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\ - ,\r\n \"etag\": \"W/\\\"e4d25dff-40e7-4eb3-afb7-6c9238ff32b0\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"my-route\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\ + ,\r\n \"etag\": \"W/\\\"e9edaf59-b96f-47d8-bc98-0d022dad43f0\\\"\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.5.0/24\",\r\n \"nextHopType\"\ : \"None\"\r\n }\r\n }\r\n ]\r\n}"} @@ -365,7 +394,7 @@ interactions: cache-control: [no-cache] content-length: ['508'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:29 GMT'] + date: ['Fri, 02 Feb 2018 22:33:15 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -381,14 +410,16 @@ interactions: CommandName: [network route-table route show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"my-route\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\ - ,\r\n \"etag\": \"W/\\\"e4d25dff-40e7-4eb3-afb7-6c9238ff32b0\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"my-route\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\ + ,\r\n \"etag\": \"W/\\\"e9edaf59-b96f-47d8-bc98-0d022dad43f0\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.5.0/24\",\r\n \"nextHopType\": \"None\"\r\n }\r\ \n}"} @@ -396,8 +427,8 @@ interactions: cache-control: [no-cache] content-length: ['443'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:30 GMT'] - etag: [W/"e4d25dff-40e7-4eb3-afb7-6c9238ff32b0"] + date: ['Fri, 02 Feb 2018 22:33:16 GMT'] + etag: [W/"e9edaf59-b96f-47d8-bc98-0d022dad43f0"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -414,24 +445,25 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route?api-version=2017-11-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc653496-1033-4f52-891a-9cd1e5cf1b0d?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/22b4e926-57d8-4c30-bc72-99ad3e83df2b?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 18:23:31 GMT'] + date: ['Fri, 02 Feb 2018 22:33:17 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/cc653496-1033-4f52-891a-9cd1e5cf1b0d?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/22b4e926-57d8-4c30-bc72-99ad3e83df2b?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1190'] status: {code: 202, message: Accepted} - request: body: null @@ -441,18 +473,19 @@ interactions: CommandName: [network route-table route delete] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc653496-1033-4f52-891a-9cd1e5cf1b0d?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/22b4e926-57d8-4c30-bc72-99ad3e83df2b?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:42 GMT'] + date: ['Fri, 02 Feb 2018 22:33:27 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -468,18 +501,19 @@ interactions: CommandName: [network route-table route list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": []\r\n}"} + body: {string: !!python/unicode "{\r\n \"value\": []\r\n}"} headers: cache-control: [no-cache] content-length: ['19'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:42 GMT'] + date: ['Fri, 02 Feb 2018 22:33:28 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -496,20 +530,21 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table?api-version=2017-11-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3d86ad11-75df-46fc-8fd6-8f06427dec01?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5371ae45-ed92-4cca-88cb-debc3614a968?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 18:23:44 GMT'] + date: ['Fri, 02 Feb 2018 22:33:28 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/3d86ad11-75df-46fc-8fd6-8f06427dec01?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5371ae45-ed92-4cca-88cb-debc3614a968?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -523,18 +558,19 @@ interactions: CommandName: [network route-table delete] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3d86ad11-75df-46fc-8fd6-8f06427dec01?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5371ae45-ed92-4cca-88cb-debc3614a968?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:55 GMT'] + date: ['Fri, 02 Feb 2018 22:33:39 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -550,21 +586,24 @@ interactions: CommandName: [network route-table list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables?api-version=2017-11-01 response: - body: {string: '{"value":[]}'} + body: {string: !!python/unicode "{\r\n \"value\": []\r\n}"} headers: cache-control: [no-cache] - content-length: ['12'] + content-length: ['19'] content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Dec 2017 18:23:57 GMT'] + date: ['Fri, 02 Feb 2018 22:33:40 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] status: {code: 200, message: OK} - request: @@ -576,22 +615,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_route_table000001?api-version=2017-05-10 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 19 Dec 2017 18:23:57 GMT'] + date: ['Fri, 02 Feb 2018 22:33:41 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUk9VVEU6NUZUQUJMRVZNVkxBQzdCNzZGMldSQkw3WU1LVXxBNTFFOUFENzRBOTlDODI4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUk9VVEU6NUZUQUJMRTZDSTQ3WDZYRUNUUVZFWktUVEZWRHwwOENENzNEQjJGNkNBMjZBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1192'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet.yaml index 19d554f8d88..34bf4b5744c 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet.yaml +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"tags": {"use": "az-test"}, "location": "westus"}' + body: !!python/unicode '{"location": "westus", "tags": {"use": "az-test"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -8,23 +8,23 @@ interactions: Connection: [keep-alive] Content-Length: ['50'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_vnet_test000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001","name":"cli_vnet_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001","name":"cli_vnet_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:56:58 GMT'] + date: ['Fri, 02 Feb 2018 22:34:06 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: null @@ -34,28 +34,28 @@ interactions: CommandName: [network vnet create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_vnet_test000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001","name":"cli_vnet_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001","name":"cli_vnet_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:56:59 GMT'] + date: ['Fri, 02 Feb 2018 22:34:06 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"tags": {}, "location": "westus", "properties": {"dhcpOptions": {}, "addressSpace": - {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": "default", "properties": - {"addressPrefix": "10.0.0.0/24"}}]}}' + body: !!python/unicode '{"location": "westus", "properties": {"subnets": [{"properties": + {"addressPrefix": "10.0.0.0/24"}, "name": "default"}], "dhcpOptions": {}, "addressSpace": + {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -63,37 +63,38 @@ interactions: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"86790942-4a5e-4a5b-aa22-9a81cd46cfe5\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"76985baa-72cf-44fc-b7d4-de3e32fb9e31\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\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\": \"default\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"86790942-4a5e-4a5b-aa22-9a81cd46cfe5\\\"\"\ + ,\r\n \"etag\": \"W/\\\"76985baa-72cf-44fc-b7d4-de3e32fb9e31\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\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/e88d0fb8-0c40-42df-9013-fb7e622f0b61?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6fe66efd-b5c6-44aa-a730-7414950b45ca?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['1230'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:00 GMT'] + date: ['Fri, 02 Feb 2018 22:34:07 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1194'] status: {code: 201, message: Created} - request: body: null @@ -103,18 +104,19 @@ interactions: CommandName: [network vnet create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e88d0fb8-0c40-42df-9013-fb7e622f0b61?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6fe66efd-b5c6-44aa-a730-7414950b45ca?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:05 GMT'] + date: ['Fri, 02 Feb 2018 22:34:11 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -130,22 +132,23 @@ interactions: CommandName: [network vnet create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"84bbbfdd-f899-4a53-952a-26f3f7349dd7\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"a5d3b96f-73de-4776-9068-b065686d3f5a\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\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\": \"default\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"84bbbfdd-f899-4a53-952a-26f3f7349dd7\\\"\"\ + ,\r\n \"etag\": \"W/\\\"a5d3b96f-73de-4776-9068-b065686d3f5a\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ @@ -154,8 +157,8 @@ interactions: cache-control: [no-cache] content-length: ['1232'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:05 GMT'] - etag: [W/"84bbbfdd-f899-4a53-952a-26f3f7349dd7"] + date: ['Fri, 02 Feb 2018 22:34:11 GMT'] + etag: [W/"a5d3b96f-73de-4776-9068-b065686d3f5a"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -171,18 +174,19 @@ interactions: CommandName: [network vnet check-ip-address] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/CheckIPAddressAvailability?ipAddress=10.0.0.50&api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/CheckIPAddressAvailability?api-version=2017-11-01&ipAddress=10.0.0.50 response: - body: {string: "{\r\n \"available\": true\r\n}"} + body: {string: !!python/unicode "{\r\n \"available\": true\r\n}"} headers: cache-control: [no-cache] content-length: ['25'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:05 GMT'] + date: ['Fri, 02 Feb 2018 22:34:12 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -198,20 +202,21 @@ interactions: CommandName: [network vnet check-ip-address] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/CheckIPAddressAvailability?ipAddress=10.0.0.0&api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/CheckIPAddressAvailability?api-version=2017-11-01&ipAddress=10.0.0.0 response: - body: {string: "{\r\n \"available\": false,\r\n \"availableIPAddresses\": [\r\ - \n \"10.0.0.4\",\r\n \"10.0.0.5\",\r\n \"10.0.0.6\",\r\n \"10.0.0.7\"\ - ,\r\n \"10.0.0.8\"\r\n ]\r\n}"} + body: {string: !!python/unicode "{\r\n \"available\": false,\r\n \"availableIPAddresses\"\ + : [\r\n \"10.0.0.4\",\r\n \"10.0.0.5\",\r\n \"10.0.0.6\",\r\n \ + \ \"10.0.0.7\",\r\n \"10.0.0.8\"\r\n ]\r\n}"} headers: cache-control: [no-cache] content-length: ['145'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:06 GMT'] + date: ['Fri, 02 Feb 2018 22:34:13 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -227,25 +232,25 @@ interactions: CommandName: [network vnet list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2017-11-01 response: - body: {string: '{"value":[{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"7a9fbc6c-d902-4ce2-ba72-1c43b3201efc\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"},"properties":{"provisioningState":"Succeeded","resourceGuid":"55c22cf6-f423-45d2-92e0-c1e9cd0cc0b1","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"7a9fbc6c-d902-4ce2-ba72-1c43b3201efc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"1fe83bae-1d3a-4b04-af02-731b2b65d150\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"},"properties":{"provisioningState":"Succeeded","resourceGuid":"58d9d284-409c-4aa6-9878-5bd35ac2c617","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"1fe83bae-1d3a-4b04-af02-731b2b65d150\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation016zx7ulhvrc7ng6fcdst72y2t2fgbvbyueykqnw4d76aq4gyxd267voh5nixs/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"912a269c-be6e-4b08-8573-fc20b76ea87b\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"909a5513-261d-4cd4-a8dd-19a18a866f77"},"properties":{"provisioningState":"Succeeded","resourceGuid":"69fa92fe-91e3-4660-8f34-45aae82a467e","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation016zx7ulhvrc7ng6fcdst72y2t2fgbvbyueykqnw4d76aq4gyxd267voh5nixs/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"912a269c-be6e-4b08-8573-fc20b76ea87b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01p5mb65te4noiwqbh7ni3sggmdrhbawq2atk5mc6elgdat5qkg6fuguonzmvj/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"576e184e-a51a-48fd-b2c9-020043506d04\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"ba56a262-8f28-4665-86d9-18a308784945"},"properties":{"provisioningState":"Succeeded","resourceGuid":"1db7de82-4c97-40f9-bdb2-7bcc02cfd8e1","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01p5mb65te4noiwqbh7ni3sggmdrhbawq2atk5mc6elgdat5qkg6fuguonzmvj/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"576e184e-a51a-48fd-b2c9-020043506d04\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationr7zmwrv545myosbhrhgmvyxvh473lloj24vcvwx5xuabi7hadxngt4sg7cbfxm/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"936b05da-874e-4b44-b987-595da14870b2\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"3acb626c-e8a0-431d-bd15-47d2472c013f"},"properties":{"provisioningState":"Succeeded","resourceGuid":"b5b00a5f-652c-4085-b234-d5a09bb2e93a","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationr7zmwrv545myosbhrhgmvyxvh473lloj24vcvwx5xuabi7hadxngt4sg7cbfxm/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"936b05da-874e-4b44-b987-595da14870b2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationyl5duneg4gkn25csd2rd4lbm2yjjq5n33z24jxikgchafi3xnfgokwxtsor56r/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"19c7f019-5a91-488f-9799-327801711743\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"f500a48c-e003-403a-b50a-903a96f6d226"},"properties":{"provisioningState":"Succeeded","resourceGuid":"69b9bb9a-dd28-4987-b24a-d5a88537806d","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationyl5duneg4gkn25csd2rd4lbm2yjjq5n33z24jxikgchafi3xnfgokwxtsor56r/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"19c7f019-5a91-488f-9799-327801711743\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmss1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/virtualNetworks/vmss1VNET","etag":"W/\"7752ff57-88b5-4ba0-8c0e-f0ba4ee7fee9\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"eb2359c9-7133-499a-ab86-3d280eab7055","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vmss1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet","etag":"W/\"7752ff57-88b5-4ba0-8c0e-f0ba4ee7fee9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1241aNic/ipConfigurations/vmss1241aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1241aNic/ipConfigurations/vmss1241aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1241aNic/ipConfigurations/vmss1241aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm5mmz5vntawil36to65ydlasde2ilv7i3xqnwo4tgd2kjh6bayudgutwsaje2t2l7/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1241aNic/ipConfigurations/vmss1241aIPConfig"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmv3rzuVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqvll75nx2wyaqjnzbvggtevhmqywaxkeidu5ijhvxlcurqxekfouz2yi63fl5a4h7/providers/Microsoft.Network/virtualNetworks/clitest-vmv3rzuVNET","etag":"W/\"8ff0561b-2eb9-4e8c-a756-20d992cd2d35\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3d3899d4-2d88-4f01-9a0b-f096d1fc26e1","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmv3rzuSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqvll75nx2wyaqjnzbvggtevhmqywaxkeidu5ijhvxlcurqxekfouz2yi63fl5a4h7/providers/Microsoft.Network/virtualNetworks/clitest-vmv3rzuVNET/subnets/clitest-vmv3rzuSubnet","etag":"W/\"8ff0561b-2eb9-4e8c-a756-20d992cd2d35\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqvll75nx2wyaqjnzbvggtevhmqywaxkeidu5ijhvxlcurqxekfouz2yi63fl5a4h7/providers/Microsoft.Network/networkInterfaces/clitest-vmv3rzuVMNic/ipConfigurations/ipconfigclitest-vmv3rzu"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"ag1Vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic6ybjavp22sekaglftntpmq66fnod5lsqyxdeapclzboezgsbgjjwkdrifp/providers/Microsoft.Network/virtualNetworks/ag1Vnet","etag":"W/\"1482b471-e01d-45ed-a1cc-cfd88f71d18c\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Failed","resourceGuid":"1f13d498-1858-42a8-bd89-2f076419725d","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic6ybjavp22sekaglftntpmq66fnod5lsqyxdeapclzboezgsbgjjwkdrifp/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default","etag":"W/\"1482b471-e01d-45ed-a1cc-cfd88f71d18c\"","properties":{"provisioningState":"Failed","addressPrefix":"10.0.0.0/24"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"84bbbfdd-f899-4a53-952a-26f3f7349dd7\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6c1f5953-7b17-4276-8514-c527b962f3eb","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default","etag":"W/\"84bbbfdd-f899-4a53-952a-26f3f7349dd7\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet72972","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg08336f/providers/Microsoft.Network/virtualNetworks/vnet72972","etag":"W/\"34204fee-9d7a-4608-86ba-081df8739677\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Failed","resourceGuid":"bd802c00-4e50-4bb4-a701-900946343c1a","addressSpace":{"addressPrefixes":["10.0.0.0/24"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"apps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg08336f/providers/Microsoft.Network/virtualNetworks/vnet72972/subnets/apps","etag":"W/\"34204fee-9d7a-4608-86ba-081df8739677\"","properties":{"provisioningState":"Failed","addressPrefix":"10.0.0.128/25"}},{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg08336f/providers/Microsoft.Network/virtualNetworks/vnet72972/subnets/default","etag":"W/\"34204fee-9d7a-4608-86ba-081df8739677\"","properties":{"provisioningState":"Failed","addressPrefix":"10.0.0.0/25"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet14207","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69004/providers/Microsoft.Network/virtualNetworks/vnet14207","etag":"W/\"a9723a42-46db-4f99-a1bf-0f31af92d1f4\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"490f4ddc-f330-4350-a46e-02072f42c81e","addressSpace":{"addressPrefixes":["10.41.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69004/providers/Microsoft.Network/virtualNetworks/vnet14207/subnets/GatewaySubnet","etag":"W/\"a9723a42-46db-4f99-a1bf-0f31af92d1f4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.41.255.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69004/providers/Microsoft.Network/virtualNetworkGateways/vngw245092/ipConfigurations/ipcfg34235"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet94571","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69004/providers/Microsoft.Network/virtualNetworks/vnet94571","etag":"W/\"8b8fe18b-b916-4110-9da3-7b002f82df57\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"82a1f072-c597-4faa-a78f-f9b8f3d31e6e","addressSpace":{"addressPrefixes":["10.11.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69004/providers/Microsoft.Network/virtualNetworks/vnet94571/subnets/GatewaySubnet","etag":"W/\"8b8fe18b-b916-4110-9da3-7b002f82df57\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.11.255.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69004/providers/Microsoft.Network/virtualNetworkGateways/vngw24509/ipConfigurations/ipcfg00629"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet96053","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg798099/providers/Microsoft.Network/virtualNetworks/vnet96053","etag":"W/\"85efc6d4-2600-43b6-bc4e-8d68763d37ff\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Failed","resourceGuid":"ebe7d3fc-a733-4853-8982-6310c518990c","addressSpace":{"addressPrefixes":["10.0.0.0/24"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"apps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg798099/providers/Microsoft.Network/virtualNetworks/vnet96053/subnets/apps","etag":"W/\"85efc6d4-2600-43b6-bc4e-8d68763d37ff\"","properties":{"provisioningState":"Failed","addressPrefix":"10.0.0.128/25"}},{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg798099/providers/Microsoft.Network/virtualNetworks/vnet96053/subnets/default","etag":"W/\"85efc6d4-2600-43b6-bc4e-8d68763d37ff\"","properties":{"provisioningState":"Failed","addressPrefix":"10.0.0.0/25"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-test-umVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET","etag":"W/\"7ccc29ef-fa4f-49b2-9d12-401e15f8bf90\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9138ac66-3a9b-41a5-9b42-ee4035ec0299","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"sdk-test-umSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET/subnets/sdk-test-umSubnet","etag":"W/\"7ccc29ef-fa4f-49b2-9d12-401e15f8bf90\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic/ipConfigurations/ipconfigsdk-test-um"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic/ipConfigurations/ipconfigsdk-test-m"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"60448fc8-c848-4b24-91f4-4a60f7a10412\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2aeffd19-9c8a-4120-bc53-5276bc8db278","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"60448fc8-c848-4b24-91f4-4a60f7a10412\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"48e598cb-3502-47cd-b386-4c5c295ea832\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"37decb21-8ad1-4de1-bebb-aac983954067","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-rg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"48e598cb-3502-47cd-b386-4c5c295ea832\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangw2-vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/virtualNetworks/yugangw2-vm1VNET","etag":"W/\"38f8e7d0-5d16-4069-a886-c807485dfc13\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3f328792-7c91-43bd-a20a-4fc5d58b8516","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangw2-vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/virtualNetworks/yugangw2-vm1VNET/subnets/yugangw2-vm1Subnet","etag":"W/\"38f8e7d0-5d16-4069-a886-c807485dfc13\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-vm1VMNic/ipConfigurations/ipconfigyugangw2-vm1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet457","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1624/providers/Microsoft.Network/virtualNetworks/vmssvnet457","etag":"W/\"3e16e09f-4e02-490d-bc55-bd810115499f\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9cdee346-6db3-4d28-96eb-c5744d7afadd","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1624/providers/Microsoft.Network/virtualNetworks/vmssvnet457/subnets/subnet1","etag":"W/\"3e16e09f-4e02-490d-bc55-bd810115499f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1624/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3012/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1624/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3012/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1624/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3012/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet2266","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7264/providers/Microsoft.Network/virtualNetworks/vmssvnet2266","etag":"W/\"5c86b397-4827-4d23-887e-6084b50ba882\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"48f30b2a-8acd-441d-8678-b7be448b0ad2","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7264/providers/Microsoft.Network/virtualNetworks/vmssvnet2266/subnets/subnet1","etag":"W/\"5c86b397-4827-4d23-887e-6084b50ba882\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7264/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2927/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7264/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2927/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/virtualNetworks/vmssvnet","etag":"W/\"c78c9d5a-d42b-473e-b1cf-7798b9401fa2\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d57281c4-f870-47c4-a08b-116d28422d34","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1","etag":"W/\"c78c9d5a-d42b-473e-b1cf-7798b9401fa2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss9664/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss9664/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7780/providers/Microsoft.Network/loadBalancers/InternalLb1-9193/frontendIPConfigurations/InternalLb1-9193-FE1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet9166","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/virtualNetworks/vmssvnet9166","etag":"W/\"7619ed06-a7ce-42db-a566-73d1e17cae56\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ff241ee5-2c77-4e7a-80f4-e35565e6fa18","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/virtualNetworks/vmssvnet9166/subnets/subnet1","etag":"W/\"7619ed06-a7ce-42db-a566-73d1e17cae56\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3271/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3271/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet38832","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg6644/providers/Microsoft.Network/virtualNetworks/vnet38832","etag":"W/\"3159f456-e4b1-4ef7-a7b4-0f5761acd859\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Failed","resourceGuid":"f997c209-307e-422c-a240-5a5290bc47e6","addressSpace":{"addressPrefixes":["10.0.0.0/24"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg6644/providers/Microsoft.Network/virtualNetworks/vnet38832/subnets/default","etag":"W/\"3159f456-e4b1-4ef7-a7b4-0f5761acd859\"","properties":{"provisioningState":"Failed","addressPrefix":"10.0.0.0/25"}},{"name":"apps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg6644/providers/Microsoft.Network/virtualNetworks/vnet38832/subnets/apps","etag":"W/\"3159f456-e4b1-4ef7-a7b4-0f5761acd859\"","properties":{"provisioningState":"Failed","addressPrefix":"10.0.0.128/25"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet995484","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/virtualNetworks/vnet995484","etag":"W/\"3775c108-2511-4483-a5ee-e85368da81cc\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a59ab5a2-711e-40c9-b642-c116f14df7d0","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/virtualNetworks/vnet995484/subnets/subnet1","etag":"W/\"3775c108-2511-4483-a5ee-e85368da81cc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/networkInterfaces/nic995484/ipConfigurations/primary"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/networkInterfaces/nic2995484/ipConfigurations/primary"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995484/providers/Microsoft.Network/networkInterfaces/nicvm995484af361353/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"net98b60130d4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Network/virtualNetworks/net98b60130d4","etag":"W/\"ff2b6e81-3005-4636-bc42-f9a16f587732\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8fd38c32-7ff8-43fb-b9d4-b9a813b3ec83","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Network/virtualNetworks/net98b60130d4/subnets/subnet1","etag":"W/\"ff2b6e81-3005-4636-bc42-f9a16f587732\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Network/networkInterfaces/nic02019c1e07a/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet508735253e85","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/virtualNetworks/vnet508735253e85","etag":"W/\"6dafbfc6-17a5-4498-9bfe-d0f818fa309e\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5631a65e-4824-4f22-bbd2-f1fcb7b2e564","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/virtualNetworks/vnet508735253e85/subnets/subnet1","etag":"W/\"6dafbfc6-17a5-4498-9bfe-d0f818fa309e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/networkInterfaces/nicvm-32735dbab03546/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"nete1352643ac","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Network/virtualNetworks/nete1352643ac","etag":"W/\"2031b5df-320f-4a54-a38c-07f93c026c67\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8b99246f-a388-46e6-a9d2-c1f66a2c2dec","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Network/virtualNetworks/nete1352643ac/subnets/subnet1","etag":"W/\"2031b5df-320f-4a54-a38c-07f93c026c67\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Network/networkInterfaces/nic6677868bacc/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet879126a87d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Network/virtualNetworks/vnet879126a87d","etag":"W/\"adc5b1d9-6108-4870-b573-aea1ca792237\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"c0655c51-cc75-4f1f-9886-cf73521df7a5","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Network/virtualNetworks/vnet879126a87d/subnets/subnet1","etag":"W/\"adc5b1d9-6108-4870-b573-aea1ca792237\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Network/networkInterfaces/nicvm62581016f24781/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet57813f99a9","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Network/virtualNetworks/vnet57813f99a9","etag":"W/\"c390a9a4-1e3c-45dd-a68a-f8a200592770\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"dbf9d7fb-4239-436a-bc21-7d7867c20ff6","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Network/virtualNetworks/vnet57813f99a9/subnets/subnet1","etag":"W/\"c390a9a4-1e3c-45dd-a68a-f8a200592770\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Network/networkInterfaces/nicvm79503273788530/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetdd865739301a","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1196/providers/Microsoft.Network/virtualNetworks/vnetdd865739301a","etag":"W/\"030cc182-0cb4-435b-84b6-f68567c16c33\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"361f711c-d407-4faa-912b-8820a28d1846","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1196/providers/Microsoft.Network/virtualNetworks/vnetdd865739301a/subnets/subnet1","etag":"W/\"030cc182-0cb4-435b-84b6-f68567c16c33\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1196/providers/Microsoft.Network/networkInterfaces/nicjavavm9cf474697/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet6dc874113693","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1345/providers/Microsoft.Network/virtualNetworks/vnet6dc874113693","etag":"W/\"8c0fa0cc-7690-49ce-9859-20290c992160\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b190d41a-9cd7-4d26-87b8-3e531c5a645b","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1345/providers/Microsoft.Network/virtualNetworks/vnet6dc874113693/subnets/subnet1","etag":"W/\"8c0fa0cc-7690-49ce-9859-20290c992160\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1345/providers/Microsoft.Network/networkInterfaces/nicjavavm39b877307/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet10b57093a1bc","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4533/providers/Microsoft.Network/virtualNetworks/vnet10b57093a1bc","etag":"W/\"b0cfe5c4-aa6d-432e-a611-5923f500fdbf\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"05b8be59-3c97-40ac-940a-5db3ad114a3c","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4533/providers/Microsoft.Network/virtualNetworks/vnet10b57093a1bc/subnets/subnet1","etag":"W/\"b0cfe5c4-aa6d-432e-a611-5923f500fdbf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4533/providers/Microsoft.Network/networkInterfaces/nicjavavm00c709577/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetd6184615914f","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4533/providers/Microsoft.Network/virtualNetworks/vnetd6184615914f","etag":"W/\"62d52c1d-2d0b-43bf-8883-585b77e891ae\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"15dbb647-e313-4954-aaf4-97f910fdeeb9","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4533/providers/Microsoft.Network/virtualNetworks/vnetd6184615914f/subnets/subnet1","etag":"W/\"62d52c1d-2d0b-43bf-8883-585b77e891ae\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4533/providers/Microsoft.Network/networkInterfaces/nicjavavm7bf166302/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet449408930d80","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5209/providers/Microsoft.Network/virtualNetworks/vnet449408930d80","etag":"W/\"e09f1801-9edd-4fc0-ab5a-4e7c596cce5a\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50b721f8-3d7b-485f-af03-5624187b5a86","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5209/providers/Microsoft.Network/virtualNetworks/vnet449408930d80/subnets/subnet1","etag":"W/\"e09f1801-9edd-4fc0-ab5a-4e7c596cce5a\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5209/providers/Microsoft.Network/networkInterfaces/nicjavavm733230993/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet0d2280673098","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6834/providers/Microsoft.Network/virtualNetworks/vnet0d2280673098","etag":"W/\"ba4d3f6e-ae44-48f6-956e-1e845200aeed\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"73303b92-69c7-4f51-8402-2018e9dbaa7d","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6834/providers/Microsoft.Network/virtualNetworks/vnet0d2280673098/subnets/subnet1","etag":"W/\"ba4d3f6e-ae44-48f6-956e-1e845200aeed\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6834/providers/Microsoft.Network/networkInterfaces/nicjavavm486392425/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet974221743ad2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7025/providers/Microsoft.Network/virtualNetworks/vnet974221743ad2","etag":"W/\"6ff934dc-7a1f-403d-88ca-4947f3452ebc\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50c1676c-a17c-42be-ab11-d093fcc7f97a","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7025/providers/Microsoft.Network/virtualNetworks/vnet974221743ad2/subnets/subnet1","etag":"W/\"6ff934dc-7a1f-403d-88ca-4947f3452ebc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7025/providers/Microsoft.Network/networkInterfaces/nicjavavm0b8654912/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetb51670092416","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8402/providers/Microsoft.Network/virtualNetworks/vnetb51670092416","etag":"W/\"efaf00b1-eb61-4458-8393-76e059fbd485\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1352c9e9-9b16-486a-b1f9-b40237543474","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8402/providers/Microsoft.Network/virtualNetworks/vnetb51670092416/subnets/subnet1","etag":"W/\"efaf00b1-eb61-4458-8393-76e059fbd485\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8402/providers/Microsoft.Network/networkInterfaces/nicjavavm888232954/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet3ca77331d81d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest989/providers/Microsoft.Network/virtualNetworks/vnet3ca77331d81d","etag":"W/\"8816c8a5-6f78-481c-ac52-09b11e67f57d\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d019a7cb-73de-4414-8f89-bcb684128a81","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest989/providers/Microsoft.Network/virtualNetworks/vnet3ca77331d81d/subnets/subnet1","etag":"W/\"8816c8a5-6f78-481c-ac52-09b11e67f57d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest989/providers/Microsoft.Network/networkInterfaces/nicjavavm932109527/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetd1f874394e0f","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest1983/providers/Microsoft.Network/virtualNetworks/vnetd1f874394e0f","etag":"W/\"f32c18d2-7130-4c18-9729-ca0087bf6da8\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f504eed7-05db-4ab1-9893-5073f954fce7","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest1983/providers/Microsoft.Network/virtualNetworks/vnetd1f874394e0f/subnets/subnet1","etag":"W/\"f32c18d2-7130-4c18-9729-ca0087bf6da8\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest1983/providers/Microsoft.Network/networkInterfaces/nicjavavm80e489797/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet24537620e15d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2136/providers/Microsoft.Network/virtualNetworks/vnet24537620e15d","etag":"W/\"1e54c441-4e9c-44cb-a6ce-e515f572bb08\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b50841df-e4d0-4d8d-ad90-3fcb8c8b1ed2","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2136/providers/Microsoft.Network/virtualNetworks/vnet24537620e15d/subnets/subnet1","etag":"W/\"1e54c441-4e9c-44cb-a6ce-e515f572bb08\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2136/providers/Microsoft.Network/networkInterfaces/nicjavavmb86868520/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet96169254b6b3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3486/providers/Microsoft.Network/virtualNetworks/vnet96169254b6b3","etag":"W/\"fd7c32fd-50b6-4dfa-be53-09ddd7278e60\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"aae4c2f3-f72c-42ba-a7d7-5544f75fb384","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3486/providers/Microsoft.Network/virtualNetworks/vnet96169254b6b3/subnets/subnet1","etag":"W/\"fd7c32fd-50b6-4dfa-be53-09ddd7278e60\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3486/providers/Microsoft.Network/networkInterfaces/nicjavavm73e405462/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet48a867202931","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4256/providers/Microsoft.Network/virtualNetworks/vnet48a867202931","etag":"W/\"d965094d-9945-4c27-804f-f8763def7ebb\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5d1bad20-a219-4efe-9c89-0d118b092faf","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4256/providers/Microsoft.Network/virtualNetworks/vnet48a867202931/subnets/subnet1","etag":"W/\"d965094d-9945-4c27-804f-f8763def7ebb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4256/providers/Microsoft.Network/networkInterfaces/nicjavavmd9251513a/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vneta7761885d3c0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8665/providers/Microsoft.Network/virtualNetworks/vneta7761885d3c0","etag":"W/\"453e004e-03ad-4f03-924c-7507ce99aae0\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1daf3318-e065-4f0d-a6bc-c80b0b40269e","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8665/providers/Microsoft.Network/virtualNetworks/vneta7761885d3c0/subnets/subnet1","etag":"W/\"453e004e-03ad-4f03-924c-7507ce99aae0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8665/providers/Microsoft.Network/networkInterfaces/nicjavavmc0416832a/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet063608875987","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9282/providers/Microsoft.Network/virtualNetworks/vnet063608875987","etag":"W/\"458276d6-bd7d-43c8-9a1b-f2f44be9081c\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fce9e8ab-f60a-4a32-8ce7-6b59c1c61b38","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9282/providers/Microsoft.Network/virtualNetworks/vnet063608875987/subnets/subnet1","etag":"W/\"458276d6-bd7d-43c8-9a1b-f2f44be9081c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9282/providers/Microsoft.Network/networkInterfaces/nicjavavm529311969/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlwilxdevlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/virtualNetworks/Dtlwilxdevlab","etag":"W/\"eeba9e9f-cb22-413c-98b0-0d0945e88e4c\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{"hidden-DevTestLabs-LabUId":"3f487f2b-f13a-422f-a05c-761b17b0200d"},"properties":{"provisioningState":"Succeeded","resourceGuid":"7440de9b-2ae9-47ed-b156-59546334c73d","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlwilxdevlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/virtualNetworks/Dtlwilxdevlab/subnets/DtlwilxdevlabSubnet","etag":"W/\"eeba9e9f-cb22-413c-98b0-0d0945e88e4c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet3b93748528f4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7397/providers/Microsoft.Network/virtualNetworks/vnet3b93748528f4","etag":"W/\"e965f2d4-5f07-4809-a2c5-834969d00cab\"","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"824d0484-f82d-4701-8f4c-9bb6748f5ed7","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7397/providers/Microsoft.Network/virtualNetworks/vnet3b93748528f4/subnets/subnet1","etag":"W/\"e965f2d4-5f07-4809-a2c5-834969d00cab\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7397/providers/Microsoft.Network/networkInterfaces/nicchashvm86385653e/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vneta1d88066dd58","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7397/providers/Microsoft.Network/virtualNetworks/vneta1d88066dd58","etag":"W/\"9a4865b7-6fcb-490e-9b2a-9ed99aaba83a\"","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6dc8a0b3-9f12-4597-bc36-e8e3a1c46ec2","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7397/providers/Microsoft.Network/virtualNetworks/vneta1d88066dd58/subnets/subnet1","etag":"W/\"9a4865b7-6fcb-490e-9b2a-9ed99aaba83a\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7397/providers/Microsoft.Network/networkInterfaces/nicchashvmbcd47694d/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetd4b2369450b3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5805/providers/Microsoft.Network/virtualNetworks/vnetd4b2369450b3","etag":"W/\"8c9fcc2f-2735-42a4-9e4d-d241f1ed0008\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"116642a0-9cef-4e90-b728-e2c263a93eb7","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5805/providers/Microsoft.Network/virtualNetworks/vnetd4b2369450b3/subnets/subnet1","etag":"W/\"8c9fcc2f-2735-42a4-9e4d-d241f1ed0008\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5805/providers/Microsoft.Network/networkInterfaces/nicextvm3431fcc85570/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetb7b6158551b6","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg710/providers/Microsoft.Network/virtualNetworks/vnetb7b6158551b6","etag":"W/\"99146150-49cb-4614-bf99-483e8dbcf1be\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"952b9cab-2bb4-4da1-851a-87bc3afc681d","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg710/providers/Microsoft.Network/virtualNetworks/vnetb7b6158551b6/subnets/subnet1","etag":"W/\"99146150-49cb-4614-bf99-483e8dbcf1be\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg710/providers/Microsoft.Network/networkInterfaces/nicextvm7751a5338703/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangw-systemVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-systemVNET","etag":"W/\"188c6c85-84ae-44b6-968f-c38f4b944132\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a86b1b0d-47f2-4615-bcba-1d736c8771cd","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangw-systemSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-systemVNET/subnets/yugangw-systemSubnet","etag":"W/\"188c6c85-84ae-44b6-968f-c38f4b944132\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkInterfaces/yugangw-systemVMNic/ipConfigurations/ipconfigyugangw-system"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}'} + body: {string: !!python/unicode '{"value":[{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"7a9fbc6c-d902-4ce2-ba72-1c43b3201efc\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"},"properties":{"provisioningState":"Succeeded","resourceGuid":"55c22cf6-f423-45d2-92e0-c1e9cd0cc0b1","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"7a9fbc6c-d902-4ce2-ba72-1c43b3201efc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"1fe83bae-1d3a-4b04-af02-731b2b65d150\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"},"properties":{"provisioningState":"Succeeded","resourceGuid":"58d9d284-409c-4aa6-9878-5bd35ac2c617","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"1fe83bae-1d3a-4b04-af02-731b2b65d150\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation013mvyy356dnjmb5iwivgwu3gp2bgpjaik6sx3zxuqg36vhnchoc5vwvzzvxu4/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"79ae5e08-d34d-4280-aefa-cf3cf12293ab\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"33f5487f-2303-4193-9ec1-9f4820d78d00"},"properties":{"provisioningState":"Succeeded","resourceGuid":"c55bcb8d-620b-497f-bd22-79a1846b2d78","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation013mvyy356dnjmb5iwivgwu3gp2bgpjaik6sx3zxuqg36vhnchoc5vwvzzvxu4/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"79ae5e08-d34d-4280-aefa-cf3cf12293ab\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation014m5le4sxlxnlbtvhekxljqndmwiuvvczqg2qumloh3nw3a6dg6qfqz65dczz/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"97e1fb0b-2cb7-4662-80e1-ec69277befb9\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"ec24f56f-0a82-42f5-ae26-f391815aaf39"},"properties":{"provisioningState":"Succeeded","resourceGuid":"b502c24e-d203-42e5-bcbf-46b347657f5d","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation014m5le4sxlxnlbtvhekxljqndmwiuvvczqg2qumloh3nw3a6dg6qfqz65dczz/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"97e1fb0b-2cb7-4662-80e1-ec69277befb9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation016zx7ulhvrc7ng6fcdst72y2t2fgbvbyueykqnw4d76aq4gyxd267voh5nixs/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"912a269c-be6e-4b08-8573-fc20b76ea87b\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"909a5513-261d-4cd4-a8dd-19a18a866f77"},"properties":{"provisioningState":"Succeeded","resourceGuid":"69fa92fe-91e3-4660-8f34-45aae82a467e","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation016zx7ulhvrc7ng6fcdst72y2t2fgbvbyueykqnw4d76aq4gyxd267voh5nixs/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"912a269c-be6e-4b08-8573-fc20b76ea87b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01bn7wa4ubnulp6m4khobeloz6mvbxxg6ygalgryhylt2zpjgqcumow6ih26ud/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"5f0f31eb-2085-4921-87ac-fe9c17aaea19\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"417cc8eb-3e86-4a90-9ce0-e215c7a4b9be"},"properties":{"provisioningState":"Succeeded","resourceGuid":"70cf217e-d963-4286-92b2-cb6034ee2dbc","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01bn7wa4ubnulp6m4khobeloz6mvbxxg6ygalgryhylt2zpjgqcumow6ih26ud/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"5f0f31eb-2085-4921-87ac-fe9c17aaea19\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01ei2lu47wac7ixneeciagpf7ocqwvjvrq6rvkjl5hr2t3tyqkrzjdrsyd5lom/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"9b628964-5052-47f1-add2-415d7d28b7ed\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"db05f622-e24b-4bad-8265-0042a9feacff"},"properties":{"provisioningState":"Succeeded","resourceGuid":"5744d642-7849-4ea6-9713-b0e0648e1463","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01ei2lu47wac7ixneeciagpf7ocqwvjvrq6rvkjl5hr2t3tyqkrzjdrsyd5lom/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"9b628964-5052-47f1-add2-415d7d28b7ed\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01l6uben7lla33aijx72dhaf3wb7dlqb2u7ixr7vhmojrwbr6e5gv2rvdneg5r/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"aebd37f0-c219-4978-b642-3cf2120bc421\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"48fc5481-154a-40d8-a96c-90f85a3186b5"},"properties":{"provisioningState":"Succeeded","resourceGuid":"78abbf43-5ba6-465a-b8c5-eb2d43223aef","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01l6uben7lla33aijx72dhaf3wb7dlqb2u7ixr7vhmojrwbr6e5gv2rvdneg5r/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"aebd37f0-c219-4978-b642-3cf2120bc421\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01ldu2m7bvtvotoelxgw2icl5sivnvoixudxyql6l42hseiv5stbbuulg7g3h4/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"c6873805-126f-4e52-8b03-6a2d2d58f3ea\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"3ff20302-c399-4d32-88ed-2c84952da1c3"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d42881b6-2781-47da-9e51-4be841899a4b","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01ldu2m7bvtvotoelxgw2icl5sivnvoixudxyql6l42hseiv5stbbuulg7g3h4/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"c6873805-126f-4e52-8b03-6a2d2d58f3ea\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01p5mb65te4noiwqbh7ni3sggmdrhbawq2atk5mc6elgdat5qkg6fuguonzmvj/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"576e184e-a51a-48fd-b2c9-020043506d04\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"ba56a262-8f28-4665-86d9-18a308784945"},"properties":{"provisioningState":"Succeeded","resourceGuid":"1db7de82-4c97-40f9-bdb2-7bcc02cfd8e1","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01p5mb65te4noiwqbh7ni3sggmdrhbawq2atk5mc6elgdat5qkg6fuguonzmvj/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"576e184e-a51a-48fd-b2c9-020043506d04\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01ptu376gffvlvblokeyvsvqoefixzvz2uosy7gvqozzktnhvpufmcc5ut4ytd/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"39e2361a-068f-429f-95cd-575f864690c4\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"e6cd699b-4ac2-4022-a435-960bc7d3ee9f"},"properties":{"provisioningState":"Succeeded","resourceGuid":"868f1377-c511-472d-81ab-943637701a91","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01ptu376gffvlvblokeyvsvqoefixzvz2uosy7gvqozzktnhvpufmcc5ut4ytd/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"39e2361a-068f-429f-95cd-575f864690c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01undmfcuvtas2vq76b7cdf2bcb522g55yjxgq26oqjumof4h3bkhfa5f5galo/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"efcd6465-7045-460d-a30f-836f400ae231\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"3cd350aa-2568-49ea-a4a2-41dd07e9e8ac"},"properties":{"provisioningState":"Succeeded","resourceGuid":"dcc2b91a-89c3-46ba-9b66-0ce47c938ff8","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01undmfcuvtas2vq76b7cdf2bcb522g55yjxgq26oqjumof4h3bkhfa5f5galo/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"efcd6465-7045-460d-a30f-836f400ae231\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation2nscoydrikfz67cluekp6xqv4zkltay5x7ubl3qh2yb73qfdjq3j24fzcrd766/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"c86301d4-e79e-4574-a2fe-a375329f5ab4\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"8cf9f8f3-ff0c-43a5-809d-b4be39f17fa8"},"properties":{"provisioningState":"Succeeded","resourceGuid":"4e86ea57-aa13-425e-8c2f-988f38490415","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation2nscoydrikfz67cluekp6xqv4zkltay5x7ubl3qh2yb73qfdjq3j24fzcrd766/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"c86301d4-e79e-4574-a2fe-a375329f5ab4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationbvd5rqbmr4xfzxbbls4vvm4zl66fz5ykv73nqx3rtougzgxhksyjpn3l43txu3/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"50811bab-4251-42ef-b850-0bc85098061e\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"40c3e5e9-6d70-41a5-9ba0-dedd33f96963"},"properties":{"provisioningState":"Succeeded","resourceGuid":"3483ec85-4aff-44e3-8516-72025a293fc2","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationbvd5rqbmr4xfzxbbls4vvm4zl66fz5ykv73nqx3rtougzgxhksyjpn3l43txu3/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"50811bab-4251-42ef-b850-0bc85098061e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationgbb6evd4zx72bc5wpfijxlcbpo5n24rkj2kg3y57jpl2mkxc6w5x5exnsantug/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"53e715ed-da30-4a8b-aecf-01d8a854d448\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"bfb18d73-f216-4bdc-aba6-252bba91adb2"},"properties":{"provisioningState":"Succeeded","resourceGuid":"7be59b19-f4c4-4eb8-a87c-8803acfc600f","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationgbb6evd4zx72bc5wpfijxlcbpo5n24rkj2kg3y57jpl2mkxc6w5x5exnsantug/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"53e715ed-da30-4a8b-aecf-01d8a854d448\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationpytfzqow2fyxfbik7w4k34yguitwrmhunpwy4ozpgsy243novl4fjnlev2zfly/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"d45c367d-504a-40c1-aeb5-d11f254c531f\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"7dfd84e6-8815-45cd-a927-4ea20034ff9e"},"properties":{"provisioningState":"Succeeded","resourceGuid":"5e124c0c-7205-4f2f-ab33-90f2d6a41b35","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationpytfzqow2fyxfbik7w4k34yguitwrmhunpwy4ozpgsy243novl4fjnlev2zfly/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"d45c367d-504a-40c1-aeb5-d11f254c531f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationr7zmwrv545myosbhrhgmvyxvh473lloj24vcvwx5xuabi7hadxngt4sg7cbfxm/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"936b05da-874e-4b44-b987-595da14870b2\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"3acb626c-e8a0-431d-bd15-47d2472c013f"},"properties":{"provisioningState":"Succeeded","resourceGuid":"b5b00a5f-652c-4085-b234-d5a09bb2e93a","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationr7zmwrv545myosbhrhgmvyxvh473lloj24vcvwx5xuabi7hadxngt4sg7cbfxm/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"936b05da-874e-4b44-b987-595da14870b2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationsxtwbd7crie33fjnfjz2zp7ibcmfz4gyjh5mvqoqkz3y7txx7g34rl7mmoucew/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"9d6771e6-bd4c-4d39-9951-37c0ed2bb685\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f96ba9d-7858-43e0-a93a-9424a36a0975"},"properties":{"provisioningState":"Succeeded","resourceGuid":"77dc9bb8-9154-4b1c-8e75-dc5476f0605c","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationsxtwbd7crie33fjnfjz2zp7ibcmfz4gyjh5mvqoqkz3y7txx7g34rl7mmoucew/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"9d6771e6-bd4c-4d39-9951-37c0ed2bb685\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationt3zeu76ormrubewlqrnf4ykozdfs3pr2ahftj4d33tuybrpobavi5sbtcdcfc4/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"0e8614ed-8ae8-481d-b6e0-6d71f6139242\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"498bf2d2-520c-42fd-b974-269015697a98"},"properties":{"provisioningState":"Succeeded","resourceGuid":"c5742799-e84a-4309-9407-6d569ca36987","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationt3zeu76ormrubewlqrnf4ykozdfs3pr2ahftj4d33tuybrpobavi5sbtcdcfc4/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"0e8614ed-8ae8-481d-b6e0-6d71f6139242\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationtoxqsril3nh52zq7j2qv45ep7rtig4xnyg77hmcyl2uuausjromygxx7poq77x/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"1e4a5a58-f58e-447c-976b-8b92377d66de\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"0958ba1e-279c-465c-a6a8-2b58d04b60b1"},"properties":{"provisioningState":"Succeeded","resourceGuid":"6a2fd462-b7d7-40a3-a495-78e1144cee88","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationtoxqsril3nh52zq7j2qv45ep7rtig4xnyg77hmcyl2uuausjromygxx7poq77x/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"1e4a5a58-f58e-447c-976b-8b92377d66de\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationyl5duneg4gkn25csd2rd4lbm2yjjq5n33z24jxikgchafi3xnfgokwxtsor56r/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"19c7f019-5a91-488f-9799-327801711743\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"f500a48c-e003-403a-b50a-903a96f6d226"},"properties":{"provisioningState":"Succeeded","resourceGuid":"69b9bb9a-dd28-4987-b24a-d5a88537806d","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomationyl5duneg4gkn25csd2rd4lbm2yjjq5n33z24jxikgchafi3xnfgokwxtsor56r/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"19c7f019-5a91-488f-9799-327801711743\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"mytestvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancerqw7fkzppmyd7dxx6fepkvjgu5twjzldldb5hqzophej2imfd5h24t/providers/Microsoft.Network/virtualNetworks/mytestvnet","etag":"W/\"0f849f7d-6740-457c-bb04-f41af02b2e5a\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6ca96103-498a-427e-9aaa-39e2cb669d9d","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancerqw7fkzppmyd7dxx6fepkvjgu5twjzldldb5hqzophej2imfd5h24t/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default","etag":"W/\"0f849f7d-6740-457c-bb04-f41af02b2e5a\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancerqw7fkzppmyd7dxx6fepkvjgu5twjzldldb5hqzophej2imfd5h24t/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"myvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/virtualNetworks/myvnet","etag":"W/\"d7c3bc01-3ff6-40ec-a714-af496e115782\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"26e9f490-f806-46ba-874e-f4f80083661d","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"mysubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenariot2tzpvrb3h2fqfe4g4zfbzv7pj3wuzgqtwoeoqibk7eolff7iy5v6b/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet","etag":"W/\"d7c3bc01-3ff6-40ec-a714-af496e115782\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"a5d3b96f-73de-4776-9068-b065686d3f5a\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"13d0d37f-37c9-43f0-a795-4f2a37409bd0","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default","etag":"W/\"a5d3b96f-73de-4776-9068-b065686d3f5a\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"net29061c","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg39303/providers/Microsoft.Network/virtualNetworks/net29061c","etag":"W/\"19d285bd-9d50-4ce6-b264-b1f662dbdc65\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"44b4a76c-c0ac-46c1-aba5-158ad2038f46","addressSpace":{"addressPrefixes":["192.168.0.0/16","10.254.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg39303/providers/Microsoft.Network/virtualNetworks/net29061c/subnets/GatewaySubnet","etag":"W/\"19d285bd-9d50-4ce6-b264-b1f662dbdc65\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.200.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg39303/providers/Microsoft.Network/virtualNetworkGateways/vngw96409/ipConfigurations/ipcfg92031"}]}},{"name":"FrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg39303/providers/Microsoft.Network/virtualNetworks/net29061c/subnets/FrontEnd","etag":"W/\"19d285bd-9d50-4ce6-b264-b1f662dbdc65\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.1.0/24"}},{"name":"BackEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg39303/providers/Microsoft.Network/virtualNetworks/net29061c/subnets/BackEnd","etag":"W/\"19d285bd-9d50-4ce6-b264-b1f662dbdc65\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.254.1.0/24"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"net846097","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg41282/providers/Microsoft.Network/virtualNetworks/net846097","etag":"W/\"8689b001-91d2-4cd3-9b26-d9d9eb55169d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8b3c6191-2661-4722-9291-de88280bae70","addressSpace":{"addressPrefixes":["192.168.0.0/16","10.254.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg41282/providers/Microsoft.Network/virtualNetworks/net846097/subnets/GatewaySubnet","etag":"W/\"8689b001-91d2-4cd3-9b26-d9d9eb55169d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.200.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg41282/providers/Microsoft.Network/virtualNetworkGateways/vngw03727/ipConfigurations/ipcfg32088"}]}},{"name":"FrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg41282/providers/Microsoft.Network/virtualNetworks/net846097/subnets/FrontEnd","etag":"W/\"8689b001-91d2-4cd3-9b26-d9d9eb55169d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.1.0/24"}},{"name":"BackEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg41282/providers/Microsoft.Network/virtualNetworks/net846097/subnets/BackEnd","etag":"W/\"8689b001-91d2-4cd3-9b26-d9d9eb55169d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.254.1.0/24"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-test-umVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET","etag":"W/\"7ccc29ef-fa4f-49b2-9d12-401e15f8bf90\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9138ac66-3a9b-41a5-9b42-ee4035ec0299","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"sdk-test-umSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET/subnets/sdk-test-umSubnet","etag":"W/\"7ccc29ef-fa4f-49b2-9d12-401e15f8bf90\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic/ipConfigurations/ipconfigsdk-test-um"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic/ipConfigurations/ipconfigsdk-test-m"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yg-1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/virtualNetworks/yg-1VNET","etag":"W/\"92fb32eb-8415-4422-9fe5-2c27da4f35ae\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0678fbbd-f610-4432-ad3a-c5b6abb8f7aa","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yg-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/virtualNetworks/yg-1VNET/subnets/yg-1Subnet","etag":"W/\"92fb32eb-8415-4422-9fe5-2c27da4f35ae\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkInterfaces/yg-1VMNic/ipConfigurations/ipconfigyg-1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkInterfaces/MyVmVMNic/ipConfigurations/ipconfigMyVm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.Network/networkInterfaces/yg-d1VMNic/ipConfigurations/ipconfigyg-d1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1ec659651466","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc8622group/providers/Microsoft.Network/virtualNetworks/vnet1ec659651466","etag":"W/\"4ecee3e4-b38a-4734-8fab-7ba59053a162\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f85cef1c-a055-43ee-be30-9ce42725f1d2","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc8622group/providers/Microsoft.Network/virtualNetworks/vnet1ec659651466/subnets/subnet1","etag":"W/\"4ecee3e4-b38a-4734-8fab-7ba59053a162\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc8622group/providers/Microsoft.Network/networkInterfaces/nicvm215539121561a/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet9917","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/virtualNetworks/vmssvnet9917","etag":"W/\"bbde8453-381b-47f5-8fba-ac8dfac524e9\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d8309139-6893-4ca9-9429-30f7617b5e8b","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Network/virtualNetworks/vmssvnet9917/subnets/subnet1","etag":"W/\"bbde8453-381b-47f5-8fba-ac8dfac524e9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3095/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4287/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3095/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet9908","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7783/providers/Microsoft.Network/virtualNetworks/vmssvnet9908","etag":"W/\"f6da4157-3409-4c89-a388-e9bd765317cd\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1aa1445e-9424-4c2e-940e-1704f0c83580","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7783/providers/Microsoft.Network/virtualNetworks/vmssvnet9908/subnets/subnet1","etag":"W/\"f6da4157-3409-4c89-a388-e9bd765317cd\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7783/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8187/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7783/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8187/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7783/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8187/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet9166","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/virtualNetworks/vmssvnet9166","etag":"W/\"7619ed06-a7ce-42db-a566-73d1e17cae56\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ff241ee5-2c77-4e7a-80f4-e35565e6fa18","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Network/virtualNetworks/vmssvnet9166/subnets/subnet1","etag":"W/\"7619ed06-a7ce-42db-a566-73d1e17cae56\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3271/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8678/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3271/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/virtualNetworks/vmssvnet","etag":"W/\"5ca5116a-7268-4cbe-b871-10e756f36324\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"41b86504-d11e-451f-b995-7dc19eae2918","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1","etag":"W/\"5ca5116a-7268-4cbe-b871-10e756f36324\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Compute/virtualMachineScaleSets/vmss382/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Compute/virtualMachineScaleSets/vmss382/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8795/providers/Microsoft.Network/loadBalancers/InternalLb1-923/frontendIPConfigurations/InternalLb1-923-FE1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet434","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9054/providers/Microsoft.Network/virtualNetworks/vmssvnet434","etag":"W/\"b50fca7d-436b-4386-b55b-f7f0002e503f\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b5a63368-fbbd-4ddf-91b8-ffe156cadd5a","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9054/providers/Microsoft.Network/virtualNetworks/vmssvnet434/subnets/subnet1","etag":"W/\"b50fca7d-436b-4386-b55b-f7f0002e503f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9054/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8422/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9054/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8422/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9054/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8422/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9054/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8422/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet28025","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg532/providers/Microsoft.Network/virtualNetworks/vnet28025","etag":"W/\"8d7a61fc-20c6-4df0-b73d-4dd409458f3d\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Failed","resourceGuid":"2b1d4a79-6350-4058-908d-a82448885067","addressSpace":{"addressPrefixes":["10.0.0.0/24"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg532/providers/Microsoft.Network/virtualNetworks/vnet28025/subnets/default","etag":"W/\"8d7a61fc-20c6-4df0-b73d-4dd409458f3d\"","properties":{"provisioningState":"Failed","addressPrefix":"10.0.0.0/25"}},{"name":"apps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg532/providers/Microsoft.Network/virtualNetworks/vnet28025/subnets/apps","etag":"W/\"8d7a61fc-20c6-4df0-b73d-4dd409458f3d\"","properties":{"provisioningState":"Failed","addressPrefix":"10.0.0.128/25"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"net98b60130d4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Network/virtualNetworks/net98b60130d4","etag":"W/\"ff2b6e81-3005-4636-bc42-f9a16f587732\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8fd38c32-7ff8-43fb-b9d4-b9a813b3ec83","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Network/virtualNetworks/net98b60130d4/subnets/subnet1","etag":"W/\"ff2b6e81-3005-4636-bc42-f9a16f587732\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg9de67119f7/providers/Microsoft.Network/networkInterfaces/nic02019c1e07a/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet508735253e85","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/virtualNetworks/vnet508735253e85","etag":"W/\"6dafbfc6-17a5-4498-9bfe-d0f818fa309e\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5631a65e-4824-4f22-bbd2-f1fcb7b2e564","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/virtualNetworks/vnet508735253e85/subnets/subnet1","etag":"W/\"6dafbfc6-17a5-4498-9bfe-d0f818fa309e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvad814855116a9864/providers/Microsoft.Network/networkInterfaces/nicvm-32735dbab03546/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"nete1352643ac","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Network/virtualNetworks/nete1352643ac","etag":"W/\"2031b5df-320f-4a54-a38c-07f93c026c67\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8b99246f-a388-46e6-a9d2-c1f66a2c2dec","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Network/virtualNetworks/nete1352643ac/subnets/subnet1","etag":"W/\"2031b5df-320f-4a54-a38c-07f93c026c67\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rged92722916/providers/Microsoft.Network/networkInterfaces/nic6677868bacc/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet6c345226f47d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7848/providers/Microsoft.Network/virtualNetworks/vnet6c345226f47d","etag":"W/\"630e4e8b-11ef-460a-9702-89a51d274031\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0b73e5d7-0e54-42f4-8f96-5179954ad9c3","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7848/providers/Microsoft.Network/virtualNetworks/vnet6c345226f47d/subnets/subnet1","etag":"W/\"630e4e8b-11ef-460a-9702-89a51d274031\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7848/providers/Microsoft.Network/networkInterfaces/nic43268498e04/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet879126a87d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Network/virtualNetworks/vnet879126a87d","etag":"W/\"adc5b1d9-6108-4870-b573-aea1ca792237\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"c0655c51-cc75-4f1f-9886-cf73521df7a5","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Network/virtualNetworks/vnet879126a87d/subnets/subnet1","etag":"W/\"adc5b1d9-6108-4870-b573-aea1ca792237\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm625810group/providers/Microsoft.Network/networkInterfaces/nicvm62581016f24781/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet57813f99a9","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Network/virtualNetworks/vnet57813f99a9","etag":"W/\"c390a9a4-1e3c-45dd-a68a-f8a200592770\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"dbf9d7fb-4239-436a-bc21-7d7867c20ff6","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Network/virtualNetworks/vnet57813f99a9/subnets/subnet1","etag":"W/\"c390a9a4-1e3c-45dd-a68a-f8a200592770\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm795032group/providers/Microsoft.Network/networkInterfaces/nicvm79503273788530/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet11d66567d3a6","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2268/providers/Microsoft.Network/virtualNetworks/vnet11d66567d3a6","etag":"W/\"87134664-d632-42fd-8061-4e94b9b00c7d\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"cd4a6205-9239-4737-a8e2-a7df4e0070c2","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2268/providers/Microsoft.Network/virtualNetworks/vnet11d66567d3a6/subnets/subnet1","etag":"W/\"87134664-d632-42fd-8061-4e94b9b00c7d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2268/providers/Microsoft.Network/networkInterfaces/nicjavavm642264057/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetaa21859195e4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5205/providers/Microsoft.Network/virtualNetworks/vnetaa21859195e4","etag":"W/\"e90cd072-b0d6-4799-a86e-29991ba80391\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b0f25cea-59c8-4ab0-9546-fc138ded18b2","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5205/providers/Microsoft.Network/virtualNetworks/vnetaa21859195e4/subnets/subnet1","etag":"W/\"e90cd072-b0d6-4799-a86e-29991ba80391\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5205/providers/Microsoft.Network/networkInterfaces/nicjavavm66f05524b/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vneteb8486453427","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5497/providers/Microsoft.Network/virtualNetworks/vneteb8486453427","etag":"W/\"ea6ce8f2-43f3-4195-894e-c59e00315752\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"4c9918cf-82c6-427c-b94d-0ef9343af741","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5497/providers/Microsoft.Network/virtualNetworks/vneteb8486453427/subnets/subnet1","etag":"W/\"ea6ce8f2-43f3-4195-894e-c59e00315752\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5497/providers/Microsoft.Network/networkInterfaces/nicjavavme26191389/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetb22473451b20","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6664/providers/Microsoft.Network/virtualNetworks/vnetb22473451b20","etag":"W/\"4fbf9a0c-0ced-4f9f-88cd-ed55c8cf293d\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"bcdf1562-7ce3-46a6-9aac-a57a94ffcfe9","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6664/providers/Microsoft.Network/virtualNetworks/vnetb22473451b20/subnets/subnet1","etag":"W/\"4fbf9a0c-0ced-4f9f-88cd-ed55c8cf293d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6664/providers/Microsoft.Network/networkInterfaces/nicjavavm1dc388316/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet15a08003ba2f","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7355/providers/Microsoft.Network/virtualNetworks/vnet15a08003ba2f","etag":"W/\"fcaf95be-f95f-4e0c-a5bf-ff29e3874ac9\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"994bfdb6-cdbe-4505-b26f-6cf4acc5fd0a","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7355/providers/Microsoft.Network/virtualNetworks/vnet15a08003ba2f/subnets/subnet1","etag":"W/\"fcaf95be-f95f-4e0c-a5bf-ff29e3874ac9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7355/providers/Microsoft.Network/networkInterfaces/nicjavavmf35331887/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet546751457306","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest750/providers/Microsoft.Network/virtualNetworks/vnet546751457306","etag":"W/\"419825d2-2e2a-4c5c-b94e-10a2cd3a6149\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a704976b-f9bd-4904-8d9c-56fd21abd8c8","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest750/providers/Microsoft.Network/virtualNetworks/vnet546751457306/subnets/subnet1","etag":"W/\"419825d2-2e2a-4c5c-b94e-10a2cd3a6149\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest750/providers/Microsoft.Network/networkInterfaces/nicjavavme08803998/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetf288226236dd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest750/providers/Microsoft.Network/virtualNetworks/vnetf288226236dd","etag":"W/\"1a7e92f8-1de1-4905-a5a2-6d471aac2e43\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f3dde5f5-9299-4cae-869c-783a56097b90","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest750/providers/Microsoft.Network/virtualNetworks/vnetf288226236dd/subnets/subnet1","etag":"W/\"1a7e92f8-1de1-4905-a5a2-6d471aac2e43\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest750/providers/Microsoft.Network/networkInterfaces/nicjavavm35c86231c/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet47840363abdc","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8416/providers/Microsoft.Network/virtualNetworks/vnet47840363abdc","etag":"W/\"e3cec911-85cc-4bc8-959c-e410c17bcbf1\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5e643622-8304-4d18-acd6-e062bca1517d","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8416/providers/Microsoft.Network/virtualNetworks/vnet47840363abdc/subnets/subnet1","etag":"W/\"e3cec911-85cc-4bc8-959c-e410c17bcbf1\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8416/providers/Microsoft.Network/networkInterfaces/nicjavavm7a8441882/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetb6221606f5fb","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8416/providers/Microsoft.Network/virtualNetworks/vnetb6221606f5fb","etag":"W/\"8f35d308-91fd-4089-a18c-7421568edd8c\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"279ac104-171c-4de5-ba65-2c75311759d8","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8416/providers/Microsoft.Network/virtualNetworks/vnetb6221606f5fb/subnets/subnet1","etag":"W/\"8f35d308-91fd-4089-a18c-7421568edd8c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8416/providers/Microsoft.Network/networkInterfaces/nicjavavm68423151f/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet022012371e87","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8449/providers/Microsoft.Network/virtualNetworks/vnet022012371e87","etag":"W/\"bae0a425-747d-4af0-b860-812ea0df1213\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"40e69e51-3165-4f30-b233-60e50e43acb2","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8449/providers/Microsoft.Network/virtualNetworks/vnet022012371e87/subnets/subnet1","etag":"W/\"bae0a425-747d-4af0-b860-812ea0df1213\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8449/providers/Microsoft.Network/networkInterfaces/nicjavavm1df55555f/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet2f2673266381","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8785/providers/Microsoft.Network/virtualNetworks/vnet2f2673266381","etag":"W/\"0ee44757-3357-45bd-ac58-92d2040d9df3\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"18115c1c-cdcc-4bb8-b56c-d6c9a134e5ad","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8785/providers/Microsoft.Network/virtualNetworks/vnet2f2673266381/subnets/subnet1","etag":"W/\"0ee44757-3357-45bd-ac58-92d2040d9df3\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8785/providers/Microsoft.Network/networkInterfaces/nicjavavm27f564591/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetb2212189cb37","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9792/providers/Microsoft.Network/virtualNetworks/vnetb2212189cb37","etag":"W/\"51eb1de1-291d-48f1-b1ea-c7b233a27747\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7290a949-f43b-461b-bff5-cdbe6f5b5cc0","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9792/providers/Microsoft.Network/virtualNetworks/vnetb2212189cb37/subnets/subnet1","etag":"W/\"51eb1de1-291d-48f1-b1ea-c7b233a27747\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9792/providers/Microsoft.Network/networkInterfaces/nicjavavm93971807c/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetdd491581862d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9898/providers/Microsoft.Network/virtualNetworks/vnetdd491581862d","etag":"W/\"85abccd3-e7a0-407a-b25c-e12d53e5aa8a\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"44d56d76-0061-4fb1-b4b5-aed7bce5df1f","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9898/providers/Microsoft.Network/virtualNetworks/vnetdd491581862d/subnets/subnet1","etag":"W/\"85abccd3-e7a0-407a-b25c-e12d53e5aa8a\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9898/providers/Microsoft.Network/networkInterfaces/nicjavavm0c2662227/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet2ee9008088cd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2383/providers/Microsoft.Network/virtualNetworks/vnet2ee9008088cd","etag":"W/\"43481e99-bec0-4379-a99b-969c4250df13\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"121e6d45-05e0-4b3a-8176-5d4a960eb58a","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2383/providers/Microsoft.Network/virtualNetworks/vnet2ee9008088cd/subnets/subnet1","etag":"W/\"43481e99-bec0-4379-a99b-969c4250df13\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest2383/providers/Microsoft.Network/networkInterfaces/nicjavavma91944354/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet10e68984b5df","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3916/providers/Microsoft.Network/virtualNetworks/vnet10e68984b5df","etag":"W/\"4c921369-67c5-462d-bd40-0602efca10f7\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"53c61d10-d2c3-4bbb-adda-c20f21f9377f","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3916/providers/Microsoft.Network/virtualNetworks/vnet10e68984b5df/subnets/subnet1","etag":"W/\"4c921369-67c5-462d-bd40-0602efca10f7\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3916/providers/Microsoft.Network/networkInterfaces/nicjavavm4ac40779b/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetcaf398095f9a","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5125/providers/Microsoft.Network/virtualNetworks/vnetcaf398095f9a","etag":"W/\"42581442-a5b3-40d6-80fe-b5174dbcdf71\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5f5a8b61-4e40-420b-a8d6-c4faa713b4ca","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5125/providers/Microsoft.Network/virtualNetworks/vnetcaf398095f9a/subnets/subnet1","etag":"W/\"42581442-a5b3-40d6-80fe-b5174dbcdf71\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5125/providers/Microsoft.Network/networkInterfaces/nicjavavm9e6266671/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vneta8122279cce6","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest817/providers/Microsoft.Network/virtualNetworks/vneta8122279cce6","etag":"W/\"59b71b3c-4da6-42ca-b475-2a3af5ade435\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"92a6d4eb-d22d-4f9d-992b-b5edd423cba6","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest817/providers/Microsoft.Network/virtualNetworks/vneta8122279cce6/subnets/subnet1","etag":"W/\"59b71b3c-4da6-42ca-b475-2a3af5ade435\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest817/providers/Microsoft.Network/networkInterfaces/nicjavavme2a602758/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnete26574994c61","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8789/providers/Microsoft.Network/virtualNetworks/vnete26574994c61","etag":"W/\"425597db-8005-4d01-ac69-7f5fcb190200\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"077e3b36-51f7-479f-943f-62710cd3d721","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8789/providers/Microsoft.Network/virtualNetworks/vnete26574994c61/subnets/subnet1","etag":"W/\"425597db-8005-4d01-ac69-7f5fcb190200\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8789/providers/Microsoft.Network/networkInterfaces/nicjavavmdab71480c/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet338421365b7d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9704/providers/Microsoft.Network/virtualNetworks/vnet338421365b7d","etag":"W/\"29662591-075e-47f6-9a4d-f3d2fb856d6d\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ab063d3e-1ff9-4df0-acaa-c8ca5bbe9149","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9704/providers/Microsoft.Network/virtualNetworks/vnet338421365b7d/subnets/subnet1","etag":"W/\"29662591-075e-47f6-9a4d-f3d2fb856d6d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9704/providers/Microsoft.Network/networkInterfaces/nicjavavm069699332/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet2b3205809de8","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2600/providers/Microsoft.Network/virtualNetworks/vnet2b3205809de8","etag":"W/\"6ddeabed-1ea9-4427-ab21-caac01fa0707\"","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"32598ca3-18d5-4750-aa34-bd70e79bef8e","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2600/providers/Microsoft.Network/virtualNetworks/vnet2b3205809de8/subnets/subnet1","etag":"W/\"6ddeabed-1ea9-4427-ab21-caac01fa0707\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2600/providers/Microsoft.Network/networkInterfaces/nicchashvmec5153844/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet4234811737ae","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2600/providers/Microsoft.Network/virtualNetworks/vnet4234811737ae","etag":"W/\"30d5c4d1-04fa-4e3d-91ef-6a0bba674703\"","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"298ae534-6c00-4738-9e3d-175524a290fe","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2600/providers/Microsoft.Network/virtualNetworks/vnet4234811737ae/subnets/subnet1","etag":"W/\"30d5c4d1-04fa-4e3d-91ef-6a0bba674703\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2600/providers/Microsoft.Network/networkInterfaces/nicchashvm37f948585/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vneta30876386fe0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7256/providers/Microsoft.Network/virtualNetworks/vneta30876386fe0","etag":"W/\"f8f7a7a5-808a-4891-a1b4-1bb4cffc476a\"","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"38eda927-305b-47d0-b397-17514c71f1f2","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7256/providers/Microsoft.Network/virtualNetworks/vneta30876386fe0/subnets/subnet1","etag":"W/\"f8f7a7a5-808a-4891-a1b4-1bb4cffc476a\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7256/providers/Microsoft.Network/networkInterfaces/nicchashvm191589646/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetb7d125714f9c","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7256/providers/Microsoft.Network/virtualNetworks/vnetb7d125714f9c","etag":"W/\"91b306db-4a08-46bc-8195-93b48a20e16c\"","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b259534d-60c4-4e36-a6a2-aa56bf145421","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7256/providers/Microsoft.Network/virtualNetworks/vnetb7d125714f9c/subnets/subnet1","etag":"W/\"91b306db-4a08-46bc-8195-93b48a20e16c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-7256/providers/Microsoft.Network/networkInterfaces/nicchashvmbf503162c/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet9931157225f1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1160/providers/Microsoft.Network/virtualNetworks/vnet9931157225f1","etag":"W/\"310840fc-79bd-40dd-a33b-a02a830cf700\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ff4ea6e4-276f-4326-818a-0e2786810af8","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1160/providers/Microsoft.Network/virtualNetworks/vnet9931157225f1/subnets/subnet1","etag":"W/\"310840fc-79bd-40dd-a33b-a02a830cf700\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1160/providers/Microsoft.Network/networkInterfaces/nicextvm3718ab191695/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet89e4279925c8","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9983/providers/Microsoft.Network/virtualNetworks/vnet89e4279925c8","etag":"W/\"816a5a19-09b6-4e77-bb84-fc4d1016288f\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2eb4c6a5-e339-4c30-828a-1c8fce9a207a","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9983/providers/Microsoft.Network/virtualNetworks/vnet89e4279925c8/subnets/subnet1","etag":"W/\"816a5a19-09b6-4e77-bb84-fc4d1016288f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9983/providers/Microsoft.Network/networkInterfaces/nicextvm90348e177096/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}'} headers: cache-control: [no-cache] - content-length: ['57656'] + content-length: ['76805'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:07 GMT'] + date: ['Fri, 02 Feb 2018 22:34:12 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] - x-ms-original-request-ids: [940f0a74-c1be-45c2-9feb-316758e9bc79, 52b737a5-1435-470d-95c0-e52cd9745cf6, - 4d37c218-bacf-428c-9ad9-01d639c65add, 29cd02ba-6c59-4ea4-9d35-c4f80c46b331, - 2f88457c-99ee-49e7-b567-45282121b803] + x-ms-original-request-ids: [efaebbdc-95c0-4c73-ae6a-017a98867cf9, 2d35e58b-59a7-4467-b0d6-bbdeb24f3746, + 2c921ef0-9d13-4c90-b403-22ec7035c13a, 638ce7f9-c0d2-4bc5-b26b-19bd22d4ea8e] status: {code: 200, message: OK} - request: body: null @@ -255,24 +260,25 @@ interactions: CommandName: [network vnet list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vnet1\",\r\n\ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"84bbbfdd-f899-4a53-952a-26f3f7349dd7\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"a5d3b96f-73de-4776-9068-b065686d3f5a\\\"\",\r\ \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\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\": \"default\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"84bbbfdd-f899-4a53-952a-26f3f7349dd7\\\"\ + ,\r\n \"etag\": \"W/\\\"a5d3b96f-73de-4776-9068-b065686d3f5a\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n \ \ }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\"\ @@ -282,7 +288,7 @@ interactions: cache-control: [no-cache] content-length: ['1393'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:09 GMT'] + date: ['Fri, 02 Feb 2018 22:34:13 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -298,22 +304,23 @@ interactions: CommandName: [network vnet show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"84bbbfdd-f899-4a53-952a-26f3f7349dd7\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"a5d3b96f-73de-4776-9068-b065686d3f5a\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\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\": \"default\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"84bbbfdd-f899-4a53-952a-26f3f7349dd7\\\"\"\ + ,\r\n \"etag\": \"W/\\\"a5d3b96f-73de-4776-9068-b065686d3f5a\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ @@ -322,8 +329,8 @@ interactions: cache-control: [no-cache] content-length: ['1232'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:09 GMT'] - etag: [W/"84bbbfdd-f899-4a53-952a-26f3f7349dd7"] + date: ['Fri, 02 Feb 2018 22:34:14 GMT'] + etag: [W/"a5d3b96f-73de-4776-9068-b065686d3f5a"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -339,22 +346,23 @@ interactions: CommandName: [network vnet update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"84bbbfdd-f899-4a53-952a-26f3f7349dd7\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"a5d3b96f-73de-4776-9068-b065686d3f5a\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\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\": \"default\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"84bbbfdd-f899-4a53-952a-26f3f7349dd7\\\"\"\ + ,\r\n \"etag\": \"W/\\\"a5d3b96f-73de-4776-9068-b065686d3f5a\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ @@ -363,8 +371,8 @@ interactions: cache-control: [no-cache] content-length: ['1232'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:09 GMT'] - etag: [W/"84bbbfdd-f899-4a53-952a-26f3f7349dd7"] + date: ['Fri, 02 Feb 2018 22:34:14 GMT'] + etag: [W/"a5d3b96f-73de-4776-9068-b065686d3f5a"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -373,14 +381,14 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"tags": {}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1", - "location": "westus", "etag": "W/\\"84bbbfdd-f899-4a53-952a-26f3f7349dd7\\"", - "properties": {"resourceGuid": "6c1f5953-7b17-4276-8514-c527b962f3eb", "virtualNetworkPeerings": - [], "enableDdosProtection": false, "dhcpOptions": {"dnsServers": ["1.2.3.4"]}, - "enableVmProtection": false, "addressSpace": {"addressPrefixes": ["20.0.0.0/16", - "10.0.0.0/16"]}, "provisioningState": "Succeeded", "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default", - "name": "default", "etag": "W/\\"84bbbfdd-f899-4a53-952a-26f3f7349dd7\\"", "properties": - {"addressPrefix": "10.0.0.0/24", "provisioningState": "Succeeded"}}]}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1", + "etag": "W/\"a5d3b96f-73de-4776-9068-b065686d3f5a\"", "location": "westus", + "properties": {"virtualNetworkPeerings": [], "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default", + "etag": "W/\"a5d3b96f-73de-4776-9068-b065686d3f5a\"", "properties": {"addressPrefix": + "10.0.0.0/24", "provisioningState": "Succeeded"}, "name": "default"}], "addressSpace": + {"addressPrefixes": ["20.0.0.0/16", "10.0.0.0/16"]}, "enableVmProtection": false, + "dhcpOptions": {"dnsServers": ["1.2.3.4"]}, "resourceGuid": "13d0d37f-37c9-43f0-a795-4f2a37409bd0", + "enableDdosProtection": false, "provisioningState": "Succeeded"}, "tags": {}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -388,33 +396,34 @@ interactions: Connection: [keep-alive] Content-Length: ['987'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"cc7ba7c8-4647-4a5c-93cb-c706d543a359\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"2d3726ef-7551-464c-b0cb-8815830ae7ce\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 20.0.0.0/16\",\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\"\ : {\r\n \"dnsServers\": [\r\n \"1.2.3.4\"\r\n ]\r\n },\r\ \n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"cc7ba7c8-4647-4a5c-93cb-c706d543a359\\\"\"\ + ,\r\n \"etag\": \"W/\\\"2d3726ef-7551-464c-b0cb-8815830ae7ce\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\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/9501ec95-0f05-421b-9f03-b2ba2432e9a4?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/707ad3dc-e3b3-444d-8449-226c423f623a?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['1281'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:10 GMT'] + date: ['Fri, 02 Feb 2018 22:34:15 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -431,18 +440,19 @@ interactions: CommandName: [network vnet update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9501ec95-0f05-421b-9f03-b2ba2432e9a4?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/707ad3dc-e3b3-444d-8449-226c423f623a?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:13 GMT'] + date: ['Fri, 02 Feb 2018 22:34:18 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -458,23 +468,24 @@ interactions: CommandName: [network vnet update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"5d28f3df-d940-4055-a473-f096fa42cf0f\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"f4f98cfe-9212-40b8-b242-e2d18ba6ec33\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 20.0.0.0/16\",\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\"\ : {\r\n \"dnsServers\": [\r\n \"1.2.3.4\"\r\n ]\r\n },\r\ \n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"5d28f3df-d940-4055-a473-f096fa42cf0f\\\"\"\ + ,\r\n \"etag\": \"W/\\\"f4f98cfe-9212-40b8-b242-e2d18ba6ec33\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ @@ -483,8 +494,8 @@ interactions: cache-control: [no-cache] content-length: ['1283'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:13 GMT'] - etag: [W/"5d28f3df-d940-4055-a473-f096fa42cf0f"] + date: ['Fri, 02 Feb 2018 22:34:18 GMT'] + etag: [W/"f4f98cfe-9212-40b8-b242-e2d18ba6ec33"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -500,23 +511,24 @@ interactions: CommandName: [network vnet update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"5d28f3df-d940-4055-a473-f096fa42cf0f\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"f4f98cfe-9212-40b8-b242-e2d18ba6ec33\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 20.0.0.0/16\",\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\"\ : {\r\n \"dnsServers\": [\r\n \"1.2.3.4\"\r\n ]\r\n },\r\ \n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"5d28f3df-d940-4055-a473-f096fa42cf0f\\\"\"\ + ,\r\n \"etag\": \"W/\\\"f4f98cfe-9212-40b8-b242-e2d18ba6ec33\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ @@ -525,8 +537,8 @@ interactions: cache-control: [no-cache] content-length: ['1283'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:15 GMT'] - etag: [W/"5d28f3df-d940-4055-a473-f096fa42cf0f"] + date: ['Fri, 02 Feb 2018 22:34:19 GMT'] + etag: [W/"f4f98cfe-9212-40b8-b242-e2d18ba6ec33"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -535,14 +547,14 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"tags": {}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1", - "location": "westus", "etag": "W/\\"5d28f3df-d940-4055-a473-f096fa42cf0f\\"", - "properties": {"resourceGuid": "6c1f5953-7b17-4276-8514-c527b962f3eb", "virtualNetworkPeerings": - [], "enableDdosProtection": false, "dhcpOptions": {}, "enableVmProtection": - false, "addressSpace": {"addressPrefixes": ["20.0.0.0/16", "10.0.0.0/16"]}, - "provisioningState": "Succeeded", "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default", - "name": "default", "etag": "W/\\"5d28f3df-d940-4055-a473-f096fa42cf0f\\"", "properties": - {"addressPrefix": "10.0.0.0/24", "provisioningState": "Succeeded"}}]}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1", + "etag": "W/\"f4f98cfe-9212-40b8-b242-e2d18ba6ec33\"", "location": "westus", + "properties": {"virtualNetworkPeerings": [], "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default", + "etag": "W/\"f4f98cfe-9212-40b8-b242-e2d18ba6ec33\"", "properties": {"addressPrefix": + "10.0.0.0/24", "provisioningState": "Succeeded"}, "name": "default"}], "addressSpace": + {"addressPrefixes": ["20.0.0.0/16", "10.0.0.0/16"]}, "enableVmProtection": false, + "dhcpOptions": {}, "resourceGuid": "13d0d37f-37c9-43f0-a795-4f2a37409bd0", "enableDdosProtection": + false, "provisioningState": "Succeeded"}, "tags": {}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -550,32 +562,33 @@ interactions: Connection: [keep-alive] Content-Length: ['962'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"83b82509-007d-4af2-9368-87a5a1432458\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"443f9f6b-1318-4bcf-9124-af54aad551c9\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 20.0.0.0/16\",\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\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"83b82509-007d-4af2-9368-87a5a1432458\\\"\"\ + ,\r\n \"etag\": \"W/\\\"443f9f6b-1318-4bcf-9124-af54aad551c9\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\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/f14e1e24-bbec-492a-8687-b79310e0dc10?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7816b741-27be-48b7-9bd7-4af2d739762d?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['1254'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:16 GMT'] + date: ['Fri, 02 Feb 2018 22:34:20 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -592,18 +605,19 @@ interactions: CommandName: [network vnet update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f14e1e24-bbec-492a-8687-b79310e0dc10?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7816b741-27be-48b7-9bd7-4af2d739762d?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:19 GMT'] + date: ['Fri, 02 Feb 2018 22:34:23 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -619,22 +633,23 @@ interactions: CommandName: [network vnet update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"4fc4a9d3-6419-417a-ae38-b80a30a750ab\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"f0d3aba3-b75e-4b6c-b6c2-1be07b5e16d5\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 20.0.0.0/16\",\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\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"4fc4a9d3-6419-417a-ae38-b80a30a750ab\\\"\"\ + ,\r\n \"etag\": \"W/\\\"f0d3aba3-b75e-4b6c-b6c2-1be07b5e16d5\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ @@ -643,8 +658,8 @@ interactions: cache-control: [no-cache] content-length: ['1256'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:20 GMT'] - etag: [W/"4fc4a9d3-6419-417a-ae38-b80a30a750ab"] + date: ['Fri, 02 Feb 2018 22:34:24 GMT'] + etag: [W/"f0d3aba3-b75e-4b6c-b6c2-1be07b5e16d5"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -660,22 +675,23 @@ interactions: CommandName: [network vnet update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"4fc4a9d3-6419-417a-ae38-b80a30a750ab\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"f0d3aba3-b75e-4b6c-b6c2-1be07b5e16d5\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 20.0.0.0/16\",\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\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"4fc4a9d3-6419-417a-ae38-b80a30a750ab\\\"\"\ + ,\r\n \"etag\": \"W/\\\"f0d3aba3-b75e-4b6c-b6c2-1be07b5e16d5\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ @@ -684,8 +700,8 @@ interactions: cache-control: [no-cache] content-length: ['1256'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:21 GMT'] - etag: [W/"4fc4a9d3-6419-417a-ae38-b80a30a750ab"] + date: ['Fri, 02 Feb 2018 22:34:24 GMT'] + etag: [W/"f0d3aba3-b75e-4b6c-b6c2-1be07b5e16d5"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -694,14 +710,14 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: 'b''{"tags": {}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1", - "location": "westus", "etag": "W/\\"4fc4a9d3-6419-417a-ae38-b80a30a750ab\\"", - "properties": {"resourceGuid": "6c1f5953-7b17-4276-8514-c527b962f3eb", "virtualNetworkPeerings": - [], "enableDdosProtection": false, "dhcpOptions": {"dnsServers": []}, "enableVmProtection": - false, "addressSpace": {"addressPrefixes": ["20.0.0.0/24", "10.0.0.0/16"]}, - "provisioningState": "Succeeded", "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default", - "name": "default", "etag": "W/\\"4fc4a9d3-6419-417a-ae38-b80a30a750ab\\"", "properties": - {"addressPrefix": "10.0.0.0/24", "provisioningState": "Succeeded"}}]}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1", + "etag": "W/\"f0d3aba3-b75e-4b6c-b6c2-1be07b5e16d5\"", "location": "westus", + "properties": {"virtualNetworkPeerings": [], "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default", + "etag": "W/\"f0d3aba3-b75e-4b6c-b6c2-1be07b5e16d5\"", "properties": {"addressPrefix": + "10.0.0.0/24", "provisioningState": "Succeeded"}, "name": "default"}], "addressSpace": + {"addressPrefixes": ["20.0.0.0/24", "10.0.0.0/16"]}, "enableVmProtection": false, + "dhcpOptions": {"dnsServers": []}, "resourceGuid": "13d0d37f-37c9-43f0-a795-4f2a37409bd0", + "enableDdosProtection": false, "provisioningState": "Succeeded"}, "tags": {}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -709,39 +725,40 @@ interactions: Connection: [keep-alive] Content-Length: ['978'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"6e50480a-811b-47e2-91a1-a533fd1ce0f8\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"0304d96a-cdc0-4470-aaef-dca563729351\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 20.0.0.0/24\",\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\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"6e50480a-811b-47e2-91a1-a533fd1ce0f8\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0304d96a-cdc0-4470-aaef-dca563729351\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\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/d4b71d52-1c43-4edd-828b-ca72fcc23099?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a8f89e22-33ae-41f2-b2b0-555fd6c2e6d5?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['1254'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:22 GMT'] + date: ['Fri, 02 Feb 2018 22:34:25 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -751,18 +768,19 @@ interactions: CommandName: [network vnet update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d4b71d52-1c43-4edd-828b-ca72fcc23099?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a8f89e22-33ae-41f2-b2b0-555fd6c2e6d5?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:25 GMT'] + date: ['Fri, 02 Feb 2018 22:34:28 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -778,22 +796,23 @@ interactions: CommandName: [network vnet update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"de08cbcf-3093-4de4-b26b-36e52b61ab94\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"37224127-a3d9-4274-9749-e5a04fb7b7cc\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 20.0.0.0/24\",\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\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"de08cbcf-3093-4de4-b26b-36e52b61ab94\\\"\"\ + ,\r\n \"etag\": \"W/\\\"37224127-a3d9-4274-9749-e5a04fb7b7cc\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ @@ -802,8 +821,8 @@ interactions: cache-control: [no-cache] content-length: ['1256'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:26 GMT'] - etag: [W/"de08cbcf-3093-4de4-b26b-36e52b61ab94"] + date: ['Fri, 02 Feb 2018 22:34:28 GMT'] + etag: [W/"37224127-a3d9-4274-9749-e5a04fb7b7cc"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -812,7 +831,8 @@ interactions: vary: [Accept-Encoding] status: {code: 200, message: OK} - request: - body: '{"name": "subnet1", "properties": {"addressPrefix": "20.0.0.0/24"}}' + body: !!python/unicode '{"properties": {"addressPrefix": "20.0.0.0/24"}, "name": + "subnet1"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -820,27 +840,29 @@ interactions: Connection: [keep-alive] Content-Length: ['67'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"e7c503e4-6ec0-45c7-8cb4-82450ab6974b\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ + ,\r\n \"etag\": \"W/\\\"4f45bfce-61db-4b33-b3ca-99e20a32998d\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"20.0.0.0/24\"\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a9c4fe3d-ef9a-4d16-862e-2e8cc439737b?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/535127f6-5af9-4797-9d44-0161dc1969e9?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['402'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:28 GMT'] + date: ['Fri, 02 Feb 2018 22:34:29 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 201, message: Created} - request: body: null @@ -850,18 +872,19 @@ interactions: CommandName: [network vnet subnet create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a9c4fe3d-ef9a-4d16-862e-2e8cc439737b?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/535127f6-5af9-4797-9d44-0161dc1969e9?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:32 GMT'] + date: ['Fri, 02 Feb 2018 22:34:33 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -877,22 +900,24 @@ interactions: CommandName: [network vnet subnet create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"0a173cec-bfcb-420d-88f2-6162496f4937\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ + ,\r\n \"etag\": \"W/\\\"36cdf3be-20bc-4b98-9eeb-a3718cb151c5\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"20.0.0.0/24\"\r\n }\r\n}"} headers: cache-control: [no-cache] content-length: ['403'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:33 GMT'] - etag: [W/"0a173cec-bfcb-420d-88f2-6162496f4937"] + date: ['Fri, 02 Feb 2018 22:34:33 GMT'] + etag: [W/"36cdf3be-20bc-4b98-9eeb-a3718cb151c5"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -908,19 +933,20 @@ interactions: CommandName: [network vnet subnet list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\ - \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"0a173cec-bfcb-420d-88f2-6162496f4937\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ + ,\r\n \"etag\": \"W/\\\"36cdf3be-20bc-4b98-9eeb-a3718cb151c5\\\"\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n \ \ {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"0a173cec-bfcb-420d-88f2-6162496f4937\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"36cdf3be-20bc-4b98-9eeb-a3718cb151c5\\\"\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"20.0.0.0/24\"\r\n }\r\n }\r\n ]\r\ \n}"} @@ -928,7 +954,7 @@ interactions: cache-control: [no-cache] content-length: ['906'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:34 GMT'] + date: ['Fri, 02 Feb 2018 22:34:33 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -944,22 +970,24 @@ interactions: CommandName: [network vnet subnet show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-11-01 response: - body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"0a173cec-bfcb-420d-88f2-6162496f4937\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ + ,\r\n \"etag\": \"W/\\\"36cdf3be-20bc-4b98-9eeb-a3718cb151c5\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"20.0.0.0/24\"\r\n }\r\n}"} headers: cache-control: [no-cache] content-length: ['403'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:34 GMT'] - etag: [W/"0a173cec-bfcb-420d-88f2-6162496f4937"] + date: ['Fri, 02 Feb 2018 22:34:34 GMT'] + etag: [W/"36cdf3be-20bc-4b98-9eeb-a3718cb151c5"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -976,24 +1004,25 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-11-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4e11ad96-29f2-4e98-81cc-f706559e4a0c?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00821f88-1a53-471b-83e6-4436cfc9c744?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 20 Dec 2017 00:57:36 GMT'] + date: ['Fri, 02 Feb 2018 22:34:35 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4e11ad96-29f2-4e98-81cc-f706559e4a0c?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/00821f88-1a53-471b-83e6-4436cfc9c744?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 202, message: Accepted} - request: body: null @@ -1003,18 +1032,19 @@ interactions: CommandName: [network vnet subnet delete] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4e11ad96-29f2-4e98-81cc-f706559e4a0c?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00821f88-1a53-471b-83e6-4436cfc9c744?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:47 GMT'] + date: ['Fri, 02 Feb 2018 22:34:46 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1030,15 +1060,16 @@ interactions: CommandName: [network vnet subnet list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\ - \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"bd6d90c9-d647-4a88-adf8-9610ae365cfe\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ + ,\r\n \"etag\": \"W/\\\"9ca797fa-c5f0-4582-887a-e1e732baf91e\\\"\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\ \n}"} @@ -1046,7 +1077,7 @@ interactions: cache-control: [no-cache] content-length: ['464'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:48 GMT'] + date: ['Fri, 02 Feb 2018 22:34:46 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1062,24 +1093,25 @@ interactions: CommandName: [network vnet list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vnet1\",\r\n\ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"bd6d90c9-d647-4a88-adf8-9610ae365cfe\\\"\",\r\ + body: {string: !!python/unicode "{\r\n \"value\": [\r\n {\r\n \"name\"\ + : \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ + ,\r\n \"etag\": \"W/\\\"9ca797fa-c5f0-4582-887a-e1e732baf91e\\\"\",\r\ \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6c1f5953-7b17-4276-8514-c527b962f3eb\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"13d0d37f-37c9-43f0-a795-4f2a37409bd0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \ \ \"20.0.0.0/24\",\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\"\ : \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"bd6d90c9-d647-4a88-adf8-9610ae365cfe\\\"\ + ,\r\n \"etag\": \"W/\\\"9ca797fa-c5f0-4582-887a-e1e732baf91e\\\"\ \",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n \ \ }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\"\ @@ -1089,7 +1121,7 @@ interactions: cache-control: [no-cache] content-length: ['1421'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:57:48 GMT'] + date: ['Fri, 02 Feb 2018 22:34:47 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1106,24 +1138,25 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-11-01 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1cf7c2dc-163c-4f61-a999-c4edc53e250d?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5d29a984-7628-40b5-9343-34002f068e80?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 20 Dec 2017 00:57:49 GMT'] + date: ['Fri, 02 Feb 2018 22:34:48 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/1cf7c2dc-163c-4f61-a999-c4edc53e250d?api-version=2017-11-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5d29a984-7628-40b5-9343-34002f068e80?api-version=2017-11-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -1133,18 +1166,19 @@ interactions: CommandName: [network vnet delete] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1cf7c2dc-163c-4f61-a999-c4edc53e250d?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5d29a984-7628-40b5-9343-34002f068e80?api-version=2017-11-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:58:00 GMT'] + date: ['Fri, 02 Feb 2018 22:34:58 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1160,18 +1194,19 @@ interactions: CommandName: [network vnet list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 networkmanagementclient/1.7.0 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-11-01 response: - body: {string: "{\r\n \"value\": []\r\n}"} + body: {string: !!python/unicode "{\r\n \"value\": []\r\n}"} headers: cache-control: [no-cache] content-length: ['19'] content-type: [application/json; charset=utf-8] - date: ['Wed, 20 Dec 2017 00:58:01 GMT'] + date: ['Fri, 02 Feb 2018 22:34:59 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1188,22 +1223,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.22 - msrest_azure/0.4.19 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.24] + User-Agent: [python/2.7.12 (Darwin-17.3.0-x86_64-i386-64bit) requests/2.18.4 + msrest/0.4.25 msrest_azure/0.4.20 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.27] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_vnet_test000001?api-version=2017-05-10 response: - body: {string: ''} + body: {string: !!python/unicode ''} headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 20 Dec 2017 00:58:03 GMT'] + date: ['Fri, 02 Feb 2018 22:35:00 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZWTkVUOjVGVEVTVEVPTlFNWDRYUEdEVldJNEEzMlY1VzRCN0lBTUROU3wzRDU0MERFQUVFMzhGNDIwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZWTkVUOjVGVEVTVE9WV1NZRUU3NlVNWUxPV0xMN1NVWDVDRUtGTkxNVnw5MEE1QzkxRjMyMzEyRDVFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/test_network_commands.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/test_network_commands.py index ac09814ee98..a3058251249 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/test_network_commands.py +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/test_network_commands.py @@ -284,35 +284,6 @@ def test_network_app_gateway_with_private_ip(self, resource_group): ]) -@api_version_constraint(ResourceType.MGMT_NETWORK, max_api='2017-03-01') -class NetworkAppGatewayPrivateIpScenarioTest20170301(ScenarioTest): - - @ResourceGroupPreparer(name_prefix='cli_test_ag_private_ip') - def test_network_app_gateway_with_private_ip(self, resource_group): - - self.kwargs.update({ - 'private_ip': '10.0.0.15', - 'pass': 'password', - 'path': os.path.join(TEST_DIR, 'TestCert.pfx') - }) - - self.cmd('network application-gateway create -g {rg} -n ag3 --subnet subnet1 --private-ip-address {private_ip} --cert-file "{path}" --cert-password {pass} --no-wait') - self.cmd('network application-gateway wait -g {rg} -n ag3 --exists') - self.cmd('network application-gateway show -g {rg} -n ag3', checks=[ - self.check('frontendIpConfigurations[0].privateIpAddress', self.kwargs['private_ip']), - self.check('frontendIpConfigurations[0].privateIpAllocationMethod', 'Static') - ]) - self.kwargs['path'] = os.path.join(TEST_DIR, 'TestCert2.pfx') - self.cmd('network application-gateway ssl-cert update -g {rg} --gateway-name ag3 -n ag3SslCert --cert-file "{path}" --cert-password {pass}') - self.cmd('network application-gateway wait -g {rg} -n ag3 --updated') - self.cmd('network application-gateway ssl-policy set -g {rg} --gateway-name ag3 --disabled-ssl-protocols tlsv1_0 tlsv1_1 --no-wait') - self.cmd('network application-gateway ssl-policy show -g {rg} --gateway-name ag3', - checks=self.check('disabledSslProtocols.length(@)', 2)) - self.cmd('network application-gateway ssl-policy set -g {rg} --gateway-name ag3 --clear --no-wait') - self.cmd('network application-gateway ssl-policy show -g {rg} --gateway-name ag3', - checks=self.is_empty()) - - @api_version_constraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01') class NetworkAppGatewaySubresourceScenarioTest(ScenarioTest): diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone1.txt_export.txt b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone1.txt_export.txt index 9df43a5c9f8..7f735c3db55 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone1.txt_export.txt +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone1.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone1.com ; Resource Group Name: cli_dns_zone1_import000001 -; Date and time (UTC): Mon, 22 Jan 2018 15:15:40 -0800 +; Date and time (UTC): Fri, 02 Feb 2018 14:39:08 -0800 $TTL 300 $ORIGIN zone1.com. diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone2.txt_export.txt b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone2.txt_export.txt index c5704ef0abb..b8976b648e8 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone2.txt_export.txt +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone2.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone2.com ; Resource Group Name: cli_dns_zone2_import000001 -; Date and time (UTC): Mon, 22 Jan 2018 15:15:46 -0800 +; Date and time (UTC): Fri, 02 Feb 2018 14:39:14 -0800 $TTL 3600 $ORIGIN zone2.com. diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone3.txt_export.txt b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone3.txt_export.txt index f87b7c37375..3e4532fe558 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone3.txt_export.txt +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone3.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone3.com ; Resource Group Name: cli_dns_zone3_import000001 -; Date and time (UTC): Mon, 22 Jan 2018 15:15:52 -0800 +; Date and time (UTC): Fri, 02 Feb 2018 14:39:20 -0800 $TTL 10800 $ORIGIN zone3.com. diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone4.txt_export.txt b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone4.txt_export.txt index c5ffe455fb8..a942d82d3d0 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone4.txt_export.txt +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone4.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone4.com ; Resource Group Name: cli_dns_zone4_import000001 -; Date and time (UTC): Mon, 22 Jan 2018 15:15:57 -0800 +; Date and time (UTC): Fri, 02 Feb 2018 14:39:24 -0800 $TTL 10800 $ORIGIN zone4.com. diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone5.txt_export.txt b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone5.txt_export.txt index d56d15e4805..56e1bf850ca 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone5.txt_export.txt +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone5.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone5.com ; Resource Group Name: cli_dns_zone5_import000001 -; Date and time (UTC): Mon, 22 Jan 2018 15:16:02 -0800 +; Date and time (UTC): Fri, 02 Feb 2018 14:39:29 -0800 $TTL 10800 $ORIGIN zone5.com. diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone6.txt_export.txt b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone6.txt_export.txt index 0471d05655c..f8d61c1f28c 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone6.txt_export.txt +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/zone_files/zone6.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone6.com ; Resource Group Name: cli_dns_zone6_import000001 -; Date and time (UTC): Mon, 22 Jan 2018 15:16:06 -0800 +; Date and time (UTC): Fri, 02 Feb 2018 14:39:32 -0800 $TTL 300 $ORIGIN zone6.com. diff --git a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/tests/latest/test_custom.py b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/tests/latest/test_profile_custom.py similarity index 100% rename from src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/tests/latest/test_custom.py rename to src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/tests/latest/test_profile_custom.py diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_custom.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_resource_custom.py similarity index 100% rename from src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_custom.py rename to src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/test_resource_custom.py diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/test_custom.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/test_role_custom.py similarity index 100% rename from src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/test_custom.py rename to src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/test_role_custom.py diff --git a/test_failures.txt b/test_failures.txt new file mode 100644 index 00000000000..e69de29bb2d diff --git a/tools/automation/tests/__init__.py b/tools/automation/tests/__init__.py index 68e88740896..9ebade1b4e7 100644 --- a/tools/automation/tests/__init__.py +++ b/tools/automation/tests/__init__.py @@ -6,64 +6,245 @@ import os import sys import argparse +import json +import re import shlex from subprocess import check_output, CalledProcessError from colorama import Fore -from ..utilities.path import filter_user_selected_modules_with_tests +from automation.utilities.display import display, output +from automation.utilities.path import filter_user_selected_modules_with_tests, get_config_dir + + +IS_WINDOWS = sys.platform.lower() in ['windows', 'win32'] +TEST_INDEX_FILE = 'testIndex.json' def execute(args): from .main import run_tests, collect_test + + validate_usage(args) + current_profile = get_current_profile(args) + test_index = get_test_index(args) + + if args.ci: + # CI Mode runs specific modules + selected_modules = [('CI mode', 'azure.cli', 'azure.cli')] + elif not (args.tests or args.src_file): + # Default is to run with modules (possibly via environment variable) + if not args.modules and os.environ.get('AZURE_CLI_TEST_MODULES', None): + display('Test modules list is parsed from environment variable AZURE_CLI_TEST_MODULES.') + args.modules = [m.strip() for m in os.environ.get('AZURE_CLI_TEST_MODULES').split(',')] + + selected_modules = filter_user_selected_modules_with_tests(args.modules, args.profile) + if not selected_modules: + display('No module is selected.') + sys.exit(1) + else: + # Otherwise run specific tests + args.tests = args.tests or [] + # Add any tests from file + if args.src_file: + with open(args.src_file, 'r') as f: + for line in f.readlines(): + line = line.strip('\r\n') + line = line.strip('\n') + if line not in args.tests: + args.tests.append(line) + test_paths = [] + selected_modules = [] + regex = re.compile(r'azure-cli-([^/\\]*)[/\\]') + for t in args.tests: + try: + test_path = os.path.normpath(test_index[t]) + mod_name = regex.findall(test_path)[0] + test_paths.append(test_path) + if mod_name not in selected_modules: + selected_modules.append(mod_name) + except KeyError: + display("Test '{}' not found.".format(t)) + continue + selected_modules = filter_user_selected_modules_with_tests(selected_modules, args.profile) + args.tests = test_paths + + success, failed_tests = run_tests(selected_modules, parallel=args.parallel, run_live=args.live, tests=args.tests) + if args.dest_file: + with open(args.dest_file, 'w') as f: + for failed_test in failed_tests: + f.write(failed_test + '\n') + sys.exit(0 if success else 1) + + +def validate_usage(args): + """ Ensure conflicting options aren't specified. """ + test_usage = '[--test TESTS [TESTS ...]] [--src-file FILENAME]' + module_usage = '--modules MODULES [MODULES ...]' + ci_usage = '--ci' + + usages = [] + if args.tests or args.src_file: + usages.append(test_usage) + if args.modules: + usages.append(module_usage) + if args.ci: + usages.append(ci_usage) + + if len(usages) > 1: + display('usage error: ' + ' | '.join(usages)) + sys.exit(1) + + +def get_current_profile(args): try: - use_shell = sys.platform.lower() in ['windows', 'win32'] + fore_red = Fore.RED if not IS_WINDOWS else '' + fore_reset = Fore.RESET if not IS_WINDOWS else '' current_profile = check_output(shlex.split('az cloud show --query profile -otsv'), - shell=use_shell).decode('utf-8').strip() + shell=IS_WINDOWS).decode('utf-8').strip() if not args.profile: args.profile = current_profile - print('The tests are set to run against current profile {}.' - .format(Fore.RED + current_profile + Fore.RESET)) + display('The tests are set to run against current profile {}.' + .format(fore_red + current_profile + fore_reset)) elif current_profile != args.profile: - print('The tests are set to run against profile {} but the current az cloud profile is {}.' - .format(Fore.RED + args.profile + Fore.RESET, Fore.RED + current_profile + Fore.RESET)) - print('Please use "az cloud set" command to change the current profile.') + display('The tests are set to run against profile {} but the current az cloud profile is {}.' + .format(fore_red + args.profile + fore_reset, fore_red + current_profile + fore_reset)) + display('Please use "az cloud set" command to change the current profile.') sys.exit(1) + return current_profile except CalledProcessError: - print('Failed to retrieve current az profile') + display('Failed to retrieve current az profile') sys.exit(2) - if args.ci: - selected_modules = [('CI mode', 'azure.cli', 'azure.cli')] + +def get_test_index(args): + test_index_path = os.path.join(get_config_dir(), TEST_INDEX_FILE) + test_index = {} + if args.discover: + test_index = discover_tests(args) + with open(test_index_path, 'w') as f: + f.write(json.dumps(test_index)) + elif os.path.isfile(test_index_path): + with open(test_index_path, 'r') as f: + test_index = json.loads(''.join(f.readlines())) else: - if not args.modules and os.environ.get('AZURE_CLI_TEST_MODULES', None): - print('Test modules list is parsed from environment variable AZURE_CLI_TEST_MODULES.') - args.modules = [m.strip() for m in os.environ.get('AZURE_CLI_TEST_MODULES').split(',')] + display('No test index found. Building test') + test_index = discover_tests(args) + with open(test_index_path, 'w') as f: + f.write(json.dumps(test_index)) + return test_index - selected_modules = filter_user_selected_modules_with_tests(args.modules, args.profile) - if not selected_modules: - print('No module is selected.') - sys.exit(1) - success = run_tests(selected_modules, parallel=args.parallel, run_live=args.live, tests=args.tests) +def discover_tests(args): + """ Builds an index of tests so that the user can simply supply the name they wish to test instead of the + full path. + """ + from importlib import import_module + import os + import pkgutil - sys.exit(0 if success else 1) + CORE_EXCLUSIONS = ['command_modules', '__main__', 'testsdk'] + + profile = args.profile + + mods_ns_pkg = import_module('azure.cli.command_modules') + core_ns_pkg = import_module('azure.cli') + command_modules = list(pkgutil.iter_modules(mods_ns_pkg.__path__)) + core_modules = list(pkgutil.iter_modules(core_ns_pkg.__path__)) + all_modules = command_modules + [x for x in core_modules if x[1] not in CORE_EXCLUSIONS] + + display(""" +================== + Discover Tests +================== +""") + + module_data = {} + for mod in all_modules: + mod_name = mod[1] + if mod_name == 'core': + mod_data = { + 'filepath': os.path.join(mod[0].path, mod_name, 'tests'), + 'base_path': 'azure.cli.{}.tests'.format(mod_name), + 'files': {} + } + else: + mod_data = { + 'filepath': os.path.join(mod[0].path, mod_name, 'tests', profile), + 'base_path': 'azure.cli.command_modules.{}.tests.{}'.format(mod_name, profile), + 'files': {} + } + # get the list of test files in each module + try: + contents = os.listdir(mod_data['filepath']) + test_files = {x[:-len('.py')]: {} for x in contents if x.startswith('test_') and x.endswith('.py')} + except Exception: + # skip modules that don't have tests + display("Module '{}' has no tests.".format(mod_name)) + continue + + for file_name in test_files: + mod_data['files'][file_name] = {} + test_file_path = mod_data['base_path'] + '.' + file_name + try: + module = import_module(test_file_path) + except ImportError: + display('Unable to import {}'.format(test_file_path)) + continue + module_dict = module.__dict__ + classes = {} + possible_test_classes = {x: y for x, y in module_dict.items() if not x.startswith('_')} + for class_name, class_def in possible_test_classes.items(): + try: + class_dict = class_def.__dict__ + except AttributeError: + # skip non-class symbols in files like constants, imported methods, etc. + continue + if class_dict.get('__module__') == test_file_path: + tests = [x for x in class_def.__dict__ if x.startswith('test_')] + if tests: + mod_data['files'][file_name][class_name] = tests + + module_data[mod_name] = mod_data + + test_index = {} + def add_to_index(key, path): + key = key or mod_name + if key in test_index: + display("COLLISION: Test '{}' Attempted '{}' Existing '{}'".format(key, test_index[key], path)) + else: + test_index[key] = path + + # build the index + for mod_name, mod_data in module_data.items(): + mod_path = mod_data['filepath'] + for file_name, file_data in mod_data['files'].items(): + file_path = os.path.join(mod_path, file_name) + '.py' + for class_name, test_list in file_data.items(): + for test_name in test_list: + test_path = '{}:{}.{}'.format(file_path, class_name, test_name) + add_to_index(test_name, test_path) + class_path = '{}:{}'.format(file_path, class_name) + add_to_index(class_name, class_path) + add_to_index(file_name, file_path) + add_to_index(mod_name, mod_path) + return test_index def setup_arguments(parser): - parser.add_argument('--module', dest='modules', nargs='+', - help='The modules of which the test to be run. Accept short names, except azure-cli, ' - 'azure-cli-core and azure-cli-nspkg. The modules list can also be set through environment ' - 'variable AZURE_CLI_TEST_MODULES. The value should be a string of space-separated module ' - 'names. The environment variable will be overwritten by command line parameters.') - parser.add_argument('--parallel', action='store_true', - help='Run the tests in parallel. This will affect the test output file.') + parser.add_argument('--modules', dest='modules', nargs='+', + help='Space separated list of modules to be run. Accepts short names, except azure-cli and azure-cli-nspkg.' + 'The modules list can also be set through environment ' + 'variable AZURE_CLI_TEST_MODULES.' + 'The environment variable will be overwritten by command line parameters.') + parser.add_argument('--series', dest='parallel', action='store_false', default=True, help='Disable test parallelization.') parser.add_argument('--live', action='store_true', help='Run all the tests live.') - parser.add_argument('--test', dest='tests', action='append', - help='The specific test to run in the given module. The string can represent a test class or a ' - 'test class and a test method name. Multiple tests can be given, but they should all ' - 'belong to one command modules.') + parser.add_argument('--tests', dest='tests', nargs='+', + help='Space separated list of tests to run. Can specify test filenames, class name or individual method names.') + parser.add_argument('--src-file', dest='src_file', help='Text file of test names to include in the the test run.') + parser.add_argument('--dest-file', dest='dest_file', help='File in which to save the names of any test failures.', default='test_failures.txt') parser.add_argument('--ci', dest='ci', action='store_true', help='Run the tests in CI mode.') + parser.add_argument('--discover', dest='discover', action='store_true', help='Build an index of test names so that you don\'t need to specify ' + 'fully qualified paths when using --tests.') parser.add_argument('--profile', dest='profile', help='Run automation against a specific profile. If omit, the ' 'tests will run against current profile.') parser.set_defaults(func=execute) diff --git a/tools/automation/tests/main.py b/tools/automation/tests/main.py index 40f38d48b1c..e1921d58198 100644 --- a/tools/automation/tests/main.py +++ b/tools/automation/tests/main.py @@ -4,64 +4,46 @@ # -------------------------------------------------------------------------------------------- import os +import sys -from automation.utilities.path import get_repo_root +from automation.utilities.display import display, output +from automation.utilities.path import get_repo_root, get_test_results_dir from automation.tests.nose_helper import get_nose_runner -from automation.utilities.path import get_test_results_dir -def get_unittest_runner(tests): - test_cases = list(tests) - - def _runner(module_paths): - from subprocess import CalledProcessError - if len(module_paths) > 1: - print('When --test is given, no more than 1 module can be selected.') - return False - - module_path = module_paths[0][len(os.path.join(get_repo_root(), 'src' + os.sep)):] - if module_path.startswith('command_modules'): - module_path = module_path.split(os.sep, 2)[-1].replace(os.sep, '.') - else: - module_path = module_path.split(os.sep, 1)[-1].replace(os.sep, '.') - - try: - import unittest - suite = unittest.TestLoader().loadTestsFromNames(['{}.{}'.format(module_path, t) for t in test_cases]) - runner = unittest.TextTestRunner() - result = runner.run(suite) - - return not result.failures - except CalledProcessError: - return False - - return _runner - def run_tests(modules, parallel, run_live, tests): - print('Run automation') - print('Modules: {}'.format(', '.join(name for name, _, _ in modules))) - # create test results folder - test_results_folder = get_test_results_dir(with_timestamp=True, prefix='tests') + if not modules and not tests: + display('No tests set to run.') + sys.exit(1) + + display(""" +============= + Run Tests +============= +""") + if modules: + display('Modules: {}'.format(', '.join(name for name, _, _ in modules))) # set environment variable if run_live: os.environ['AZURE_TEST_RUN_LIVE'] = 'True' - if not tests: - # the --test is not given, use nosetests to run entire module - print('Drive test by nosetests') - runner = get_nose_runner(test_results_folder, parallel=parallel, process_timeout=3600 if run_live else 600) - else: - # the --test is given, use unittest to run single test - print('Drive test by unittest') - runner = get_unittest_runner(tests) + test_paths = tests or [p for _, _, p in modules] - # run tests - result = runner([p for _, _, p in modules]) - - return result + display('Drive test by nosetests') + from six import StringIO + old_stderr = sys.stderr + test_stderr = StringIO() + sys.stderr = test_stderr + runner = get_nose_runner(parallel=parallel, process_timeout=3600 if run_live else 600) + results = runner([path for path in test_paths]) + stderr_val = test_stderr.getvalue() + sys.stderr = old_stderr + test_stderr.close() + failed_tests = summarize_tests(stderr_val) + return results, failed_tests def collect_test(): @@ -91,4 +73,29 @@ def collect_tests(path, return_collection, prefix=''): for suite in loader.loadTestsFromModule(test_module): for test in suite._tests: # pylint: disable=protected-access return_collection.append( - '{}.{}.{}'.format(full_name, test.__class__.__name__, test._testMethodName)) # pylint: disable=protected-access \ No newline at end of file + '{}.{}.{}'.format(full_name, test.__class__.__name__, test._testMethodName)) # pylint: disable=protected-access + +def summarize_tests(test_output): + display(test_output) + failed_tests = [] + for line in test_output.splitlines(): + if '... ERROR' in line or '... FAIL' in line: + line = line.replace('(', '') + line = line.replace(')', '') + try: + test_name, _, _, _ = line.split(' ') + line = test_name + except: + pass + failed_tests.append(line) + + if failed_tests: + display(""" +========== + FAILED +========== +""") + for failed_test in failed_tests: + display(failed_test) + return failed_tests + diff --git a/tools/automation/tests/nose_helper.py b/tools/automation/tests/nose_helper.py index 8a42a4cc258..138c4f2c4f0 100644 --- a/tools/automation/tests/nose_helper.py +++ b/tools/automation/tests/nose_helper.py @@ -7,16 +7,12 @@ from ..utilities.path import get_repo_root -def get_nose_runner(report_folder, parallel=True, process_timeout=600, process_restart=True): +def get_nose_runner(parallel=True, process_timeout=600, process_restart=True): """Create a nose execution method""" def _run_nose(test_folders): import nose import os.path - - if not report_folder or not os.path.exists(report_folder) or not os.path.isdir(report_folder): - raise ValueError('Report folder {} does not exist'.format(report_folder)) - arguments = [__file__, '-v', '-c', os.path.join(get_repo_root(), 'nose.cfg')] if parallel: arguments += ['--processes=-1', '--process-timeout={}'.format(process_timeout)] diff --git a/tools/automation/utilities/display.py b/tools/automation/utilities/display.py index a0a15d77f4c..c9d6aa66ce4 100644 --- a/tools/automation/utilities/display.py +++ b/tools/automation/utilities/display.py @@ -5,6 +5,18 @@ from __future__ import print_function +import sys + + +def display(txt): + """ Output to stderr """ + print(txt, file=sys.stderr) + + +def output(txt): + """ Output to stdout """ + print(txt, file=sys.stdout) + def get_print_format(records): """Find the best format to display the given list of records in table format""" diff --git a/tools/automation/utilities/path.py b/tools/automation/utilities/path.py index de6d57aad17..7b8d2d42339 100644 --- a/tools/automation/utilities/path.py +++ b/tools/automation/utilities/path.py @@ -3,7 +3,7 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -import os.path +import os import glob from automation.utilities.const import COMMAND_MODULE_PREFIX @@ -23,6 +23,11 @@ def get_all_module_paths(): return list(get_core_modules_paths()) + list(get_command_modules_paths(include_prefix=True)) +def get_config_dir(): + """ Returns the users Azure directory. """ + return os.getenv('AZURE_CONFIG_DIR', None) or os.path.expanduser(os.path.join('~', '.azure')) + + def get_command_modules_paths(include_prefix=False): for path in glob.glob(get_repo_root() + '/src/command_modules/{}*/setup.py'.format( COMMAND_MODULE_PREFIX)): @@ -42,6 +47,8 @@ def get_core_modules_paths_with_tests(profile): for name, path in get_core_modules_paths(): for root, dirs, files in os.walk(path): if os.path.basename(root) == 'tests': + if name == 'azure-cli-core': + name = 'core' yield name, path, root @@ -123,13 +130,13 @@ def filter_user_selected_modules(user_input_modules): return list((name, module) for name, module in existing_modules) -def filter_user_selected_modules_with_tests(user_input_modules, profile): +def filter_user_selected_modules_with_tests(user_input_modules=None, profile=None): import itertools existing_modules = list(itertools.chain(get_core_modules_paths_with_tests(profile), get_command_modules_paths_with_tests(profile))) - if user_input_modules: + if user_input_modules is not None: selected_modules = set(user_input_modules) extra = selected_modules - set([name for name, _, _ in existing_modules]) if any(extra): diff --git a/tools/setup.py b/tools/setup.py index c105330abff..c086de89428 100644 --- a/tools/setup.py +++ b/tools/setup.py @@ -32,7 +32,6 @@ 'requests', 'six>=1.10.0', 'tabulate>=0.7.7', - 'pytest', 'colorama>=0.3.7' ]