diff --git a/src/command_modules/azure-cli-network/HISTORY.rst b/src/command_modules/azure-cli-network/HISTORY.rst index 1c3d7867a38..17dba307316 100644 --- a/src/command_modules/azure-cli-network/HISTORY.rst +++ b/src/command_modules/azure-cli-network/HISTORY.rst @@ -6,6 +6,8 @@ Release History unreleased ++++++++++++++++++ +* `express-route peering create`: fix bug when creating a peering without route filtering. +* `express-route update`: fix bug where --provider and --bandwidth arguments did not work. * `network watcher show-topology`: Fix bug with location defaulting logic. 2.0.6 (2017-05-09) diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/custom.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/custom.py index e2db765d176..ec577da5313 100644 --- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/custom.py +++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/custom.py @@ -1657,13 +1657,13 @@ def create_express_route(circuit_name, resource_group_name, bandwidth_in_mbps, p def update_express_route(instance, bandwidth_in_mbps=None, peering_location=None, service_provider_name=None, sku_family=None, sku_tier=None, tags=None): if bandwidth_in_mbps is not None: - instance.service_provider_properties.bandwith = bandwidth_in_mbps + instance.service_provider_properties.bandwith_in_mbps = bandwidth_in_mbps if peering_location is not None: instance.service_provider_properties.peering_location = peering_location if service_provider_name is not None: - instance.service_provider_properties.provider = service_provider_name + instance.service_provider_properties.service_provider_name = service_provider_name if sku_family is not None: instance.sku.family = sku_family @@ -1727,7 +1727,7 @@ def create_express_route_peering( secondary_peer_address_prefix=secondary_peer_address_prefix, shared_key=shared_key, microsoft_peering_config=peering_config) - if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-12-01'): + if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-12-01') and route_filter: RouteFilter = get_sdk(ResourceType.MGMT_NETWORK, 'RouteFilter', mod='models') peering.route_filter = RouteFilter(id=route_filter) return client.create_or_update( diff --git a/src/command_modules/azure-cli-network/tests/recordings/test_network_express_route.yaml b/src/command_modules/azure-cli-network/tests/recordings/test_network_express_route.yaml index 3ee245e363a..ea5c3160a73 100644 --- a/src/command_modules/azure-cli-network/tests/recordings/test_network_express_route.yaml +++ b/src/command_modules/azure-cli-network/tests/recordings/test_network_express_route.yaml @@ -6,10 +6,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [455eb15e-09db-11e7-8853-a0b3ccf7272a] + x-ms-client-request-id: [119d5c94-3b2f-11e7-8e85-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/expressRouteServiceProviders?api-version=2017-03-01 response: @@ -174,7 +175,7 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:58:24 GMT'] + Date: ['Wed, 17 May 2017 18:31:49 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -190,11 +191,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 resourcemanagementclient/0.30.2 Azure-SDK-For-Python - AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 resourcemanagementclient/1.1.0rc1 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [4766ba2c-09db-11e7-9440-a0b3ccf7272a] + x-ms-client-request-id: [1417ce5a-3b2f-11e7-ae14-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route?api-version=2017-05-10 response: @@ -202,7 +203,7 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:58:24 GMT'] + Date: ['Wed, 17 May 2017 18:31:48 GMT'] Expires: ['-1'] Pragma: [no-cache] Strict-Transport-Security: [max-age=31536000; includeSubDomains] @@ -210,28 +211,28 @@ interactions: content-length: ['234'] status: {code: 200, message: OK} - request: - body: '{"location": "westus", "sku": {"family": "MeteredData", "tier": "Premium", - "name": "Premium_MeteredData"}, "properties": {"serviceProviderProperties": - {"bandwidthInMbps": 50, "peeringLocation": "Area51", "serviceProviderName": - "Microsoft ER Test"}}}' + body: '{"sku": {"family": "MeteredData", "tier": "Premium", "name": "Premium_MeteredData"}, + "properties": {"serviceProviderProperties": {"bandwidthInMbps": 50, "peeringLocation": + "Area51", "serviceProviderName": "Microsoft ER Test"}}, "location": "westus"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Length: ['249'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [47758f48-09db-11e7-a990-a0b3ccf7272a] + x-ms-client-request-id: [1431dbc8-3b2f-11e7-be90-a0b3ccf7272a] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"befbce91-ad35-4a82-bc2e-6dd630558df8\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"25c1f596-69ef-4362-bb2c-74f3e713649e\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"resourceGuid\": \"39613741-2792-4edf-95fe-9f553e29c63f\",\r\n \ + ,\r\n \"resourceGuid\": \"601f9751-b7ea-4b94-be06-9b2fccb926fb\",\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\"\ @@ -241,17 +242,17 @@ interactions: ,\r\n \"tier\": \"Premium\",\r\n \"family\": \"MeteredData\"\r\n }\r\ \n}"} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/db48f183-e7b0-4ed5-a91e-ca89ab5b7c86?api-version=2017-03-01'] + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/13aaeda9-1ca5-46d0-baa4-53453fac961d?api-version=2017-03-01'] Cache-Control: [no-cache] Content-Length: ['966'] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:58:26 GMT'] + Date: ['Wed, 17 May 2017 18:31:50 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] 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: ['1197'] status: {code: 201, message: Created} - request: body: null @@ -260,18 +261,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [47758f48-09db-11e7-a990-a0b3ccf7272a] + x-ms-client-request-id: [1431dbc8-3b2f-11e7-be90-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/db48f183-e7b0-4ed5-a91e-ca89ab5b7c86?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/13aaeda9-1ca5-46d0-baa4-53453fac961d?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:58:37 GMT'] + Date: ['Wed, 17 May 2017 18:32:00 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] @@ -288,18 +290,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [47758f48-09db-11e7-a990-a0b3ccf7272a] + x-ms-client-request-id: [1431dbc8-3b2f-11e7-be90-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/db48f183-e7b0-4ed5-a91e-ca89ab5b7c86?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/13aaeda9-1ca5-46d0-baa4-53453fac961d?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:58:47 GMT'] + Date: ['Wed, 17 May 2017 18:32:11 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -315,30 +318,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [47758f48-09db-11e7-a990-a0b3ccf7272a] + x-ms-client-request-id: [1431dbc8-3b2f-11e7-be90-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"cfe5a378-53d5-40e4-b1b3-c91995ea2140\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"e5a11d1a-3891-4337-82b6-dc71d7c89993\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"39613741-2792-4edf-95fe-9f553e29c63f\",\r\n \ + ,\r\n \"resourceGuid\": \"601f9751-b7ea-4b94-be06-9b2fccb926fb\",\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\": \"edd0e13f-9ac7-4ac9-bb91-9d2f2000e8b2\",\r\ + : \"\",\r\n \"serviceKey\": \"b29656a9-1a89-4194-8252-2835869426be\",\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}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:58:47 GMT'] + Date: ['Wed, 17 May 2017 18:32:11 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -354,70 +358,84 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [55f2ecec-09db-11e7-82c1-a0b3ccf7272a] + x-ms-client-request-id: [21f08cc8-3b2f-11e7-8a41-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/expressRouteCircuits?api-version=2017-03-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_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"cfe5a378-53d5-40e4-b1b3-c91995ea2140\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"e5a11d1a-3891-4337-82b6-dc71d7c89993\\\"\",\r\ \n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\ location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"39613741-2792-4edf-95fe-9f553e29c63f\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"601f9751-b7ea-4b94-be06-9b2fccb926fb\"\ ,\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 \"\ - serviceKey\": \"edd0e13f-9ac7-4ac9-bb91-9d2f2000e8b2\",\r\n \"serviceProviderProvisioningState\"\ + serviceKey\": \"b29656a9-1a89-4194-8252-2835869426be\",\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/errg/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"3ddb9cca-d22c-40d9-a4f5-6d02724a788c\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"24219031-97af-4f05-bcde-a267f3db1e4a\\\"\",\r\ \n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\ location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\ \n \"provisioningState\": \"Failed\",\r\n \"resourceGuid\":\ - \ \"c8515ed3-58b1-4acf-b1ea-ce5b3ab48cf7\",\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 \"serviceKey\": \"fcfe8e55-f165-41aa-a393-6ccde9f0b745\"\ + \ \"c8515ed3-58b1-4acf-b1ea-ce5b3ab48cf7\",\r\n \"peerings\": [\r\n\ + \ {\r\n \"name\": \"AzurePublicPeering\",\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/errg/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ + ,\r\n \"etag\": \"W/\\\"24219031-97af-4f05-bcde-a267f3db1e4a\\\"\ + \",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Deleting\",\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\": 102,\r\n \ + \ \"gatewayManagerEtag\": \"W/\\\"datetime'2017-01-18T01%3A52%3A49.9895274Z'\\\ + \"\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\ + \n },\r\n {\r\n \"name\": \"MicrosoftPeering\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/errg/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\ + ,\r\n \"etag\": \"W/\\\"24219031-97af-4f05-bcde-a267f3db1e4a\\\"\ + \",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Deleting\",\r\n \"peeringType\": \"MicrosoftPeering\",\r\n\ + \ \"azureASN\": 0,\r\n \"peerASN\": 10002,\r\n \ + \ \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \ + \ \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n \ + \ \"state\": \"Disabled\",\r\n \"vlanId\": 105,\r\n \ + \ \"lastModifiedBy\": \"\",\r\n \"microsoftPeeringConfig\"\ + : {\r\n \"advertisedPublicPrefixes\": [\r\n \ + \ \"104.0.0.0/30\"\r\n ],\r\n \"advertisedPublicPrefixesState\"\ + : \"NotConfigured\",\r\n \"customerASN\": 10000,\r\n \ + \ \"routingRegistryName\": \"LEVEL3\"\r\n },\r\n \ + \ \"routeFilter\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/errg/providers/Microsoft.Network/routeFilters/rf1\"\ + \r\n }\r\n }\r\n }\r\n ],\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 \"serviceKey\": \"fcfe8e55-f165-41aa-a393-6ccde9f0b745\"\ ,\r\n \"serviceProviderProvisioningState\": \"Provisioning\"\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/tjp-er/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"d80a9293-8980-4838-a3b0-558fe52ac308\\\"\",\r\ - \n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\ - location\": \"westus\",\r\n \"tags\": {\r\n \"best\": \"woot\"\ - ,\r\n \"test\": \"Test\",\r\n \"nest\": \"woot2\"\r\n },\r\ - \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"dd8cb2d7-3557-4f39-ab99-da36d2a1d683\",\r\ - \n \"peerings\": [],\r\n \"authorizations\": [],\r\n \ - \ \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"\ - Microsoft ER Test\",\r\n \"peeringLocation\": \"Area51\",\r\n \ - \ \"bandwidthInMbps\": 100\r\n },\r\n \"circuitProvisioningState\"\ - : \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"\ - serviceKey\": \"893dbc30-b902-4a3f-b1b2-b1db623f0d2e\",\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}"} + \ }\r\n }\r\n ]\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:58:49 GMT'] + Date: ['Wed, 17 May 2017 18:32: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] - content-length: ['3326'] + content-length: ['4402'] status: {code: 200, message: OK} - request: body: null @@ -426,32 +444,33 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [56e89bf8-09db-11e7-baa6-a0b3ccf7272a] + x-ms-client-request-id: [2240f0b0-3b2f-11e7-9a77-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits?api-version=2017-03-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_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"cfe5a378-53d5-40e4-b1b3-c91995ea2140\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"e5a11d1a-3891-4337-82b6-dc71d7c89993\\\"\",\r\ \n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\ location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"39613741-2792-4edf-95fe-9f553e29c63f\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"601f9751-b7ea-4b94-be06-9b2fccb926fb\"\ ,\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 \"\ - serviceKey\": \"edd0e13f-9ac7-4ac9-bb91-9d2f2000e8b2\",\r\n \"serviceProviderProvisioningState\"\ + serviceKey\": \"b29656a9-1a89-4194-8252-2835869426be\",\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}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:58:51 GMT'] + Date: ['Wed, 17 May 2017 18:32:13 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -467,30 +486,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [57e131b4-09db-11e7-b1f7-a0b3ccf7272a] + x-ms-client-request-id: [22870e74-3b2f-11e7-8cf8-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"cfe5a378-53d5-40e4-b1b3-c91995ea2140\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"e5a11d1a-3891-4337-82b6-dc71d7c89993\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"39613741-2792-4edf-95fe-9f553e29c63f\",\r\n \ + ,\r\n \"resourceGuid\": \"601f9751-b7ea-4b94-be06-9b2fccb926fb\",\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\": \"edd0e13f-9ac7-4ac9-bb91-9d2f2000e8b2\",\r\ + : \"\",\r\n \"serviceKey\": \"b29656a9-1a89-4194-8252-2835869426be\",\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}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:58:53 GMT'] + Date: ['Wed, 17 May 2017 18:32:14 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -506,10 +526,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [590859c0-09db-11e7-a5c8-a0b3ccf7272a] + x-ms-client-request-id: [22e303f6-3b2f-11e7-a25f-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/stats?api-version=2017-03-01 response: @@ -518,7 +539,7 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:58:56 GMT'] + Date: ['Wed, 17 May 2017 18:32:14 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -534,30 +555,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [5a7745e2-09db-11e7-9aef-a0b3ccf7272a] + x-ms-client-request-id: [234f9dec-3b2f-11e7-8e13-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"cfe5a378-53d5-40e4-b1b3-c91995ea2140\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"e5a11d1a-3891-4337-82b6-dc71d7c89993\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"39613741-2792-4edf-95fe-9f553e29c63f\",\r\n \ + ,\r\n \"resourceGuid\": \"601f9751-b7ea-4b94-be06-9b2fccb926fb\",\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\": \"edd0e13f-9ac7-4ac9-bb91-9d2f2000e8b2\",\r\ + : \"\",\r\n \"serviceKey\": \"b29656a9-1a89-4194-8252-2835869426be\",\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}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:58:57 GMT'] + Date: ['Wed, 17 May 2017 18:32:15 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -568,46 +590,46 @@ interactions: status: {code: 200, message: OK} - request: body: '{"sku": {"family": "MeteredData", "tier": "Premium", "name": "Premium_MeteredData"}, - "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1", - "etag": "W/\"cfe5a378-53d5-40e4-b1b3-c91995ea2140\"", "location": "westus", - "tags": {"test": "Test"}, "properties": {"serviceProviderProperties": {"bandwidthInMbps": + "tags": {"test": "Test"}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1", + "properties": {"authorizations": [], "allowClassicOperations": false, "gatewayManagerEtag": + "", "provisioningState": "Succeeded", "serviceProviderProperties": {"bandwidthInMbps": 50, "peeringLocation": "Area51", "serviceProviderName": "Microsoft ER Test"}, - "circuitProvisioningState": "Enabled", "allowClassicOperations": false, "serviceProviderProvisioningState": - "NotProvisioned", "gatewayManagerEtag": "", "provisioningState": "Succeeded", - "serviceKey": "edd0e13f-9ac7-4ac9-bb91-9d2f2000e8b2", "peerings": [], "authorizations": - []}}' + "serviceProviderProvisioningState": "NotProvisioned", "circuitProvisioningState": + "Enabled", "serviceKey": "b29656a9-1a89-4194-8252-2835869426be", "peerings": + []}, "location": "westus"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - Content-Length: ['770'] + Content-Length: ['716'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [5ad6dbe8-09db-11e7-b9ff-a0b3ccf7272a] + x-ms-client-request-id: [23b0a0ac-3b2f-11e7-bbe1-a0b3ccf7272a] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"3e333fed-58e7-415b-abae-b234dabda3d9\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"3537889e-2a0c-49b4-bb89-2020d8a7125b\\\"\",\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\": \"\ - 39613741-2792-4edf-95fe-9f553e29c63f\",\r\n \"peerings\": [],\r\n \"\ + 601f9751-b7ea-4b94-be06-9b2fccb926fb\",\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\": \"edd0e13f-9ac7-4ac9-bb91-9d2f2000e8b2\",\r\ + : \"\",\r\n \"serviceKey\": \"b29656a9-1a89-4194-8252-2835869426be\",\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}"} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/4d1a5a56-5f4d-44a0-95f8-e8b3ec9cfc90?api-version=2017-03-01'] + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1b9c6361-e17b-42df-a738-9c3998eae459?api-version=2017-03-01'] Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:59:00 GMT'] + Date: ['Wed, 17 May 2017 18:32:16 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] @@ -616,7 +638,7 @@ interactions: Transfer-Encoding: [chunked] Vary: [Accept-Encoding] content-length: ['1036'] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1194'] status: {code: 200, message: OK} - request: body: null @@ -625,18 +647,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [5ad6dbe8-09db-11e7-b9ff-a0b3ccf7272a] + x-ms-client-request-id: [23b0a0ac-3b2f-11e7-bbe1-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4d1a5a56-5f4d-44a0-95f8-e8b3ec9cfc90?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b9c6361-e17b-42df-a738-9c3998eae459?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:59:09 GMT'] + Date: ['Wed, 17 May 2017 18:32:27 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] @@ -653,46 +676,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [5ad6dbe8-09db-11e7-b9ff-a0b3ccf7272a] + x-ms-client-request-id: [23b0a0ac-3b2f-11e7-bbe1-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4d1a5a56-5f4d-44a0-95f8-e8b3ec9cfc90?api-version=2017-03-01 - response: - body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} - headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:59:20 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Retry-After: ['10'] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] - content-length: ['30'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] - accept-language: [en-US] - x-ms-client-request-id: [5ad6dbe8-09db-11e7-b9ff-a0b3ccf7272a] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4d1a5a56-5f4d-44a0-95f8-e8b3ec9cfc90?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b9c6361-e17b-42df-a738-9c3998eae459?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:59:30 GMT'] + Date: ['Wed, 17 May 2017 18:32:36 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -708,31 +704,32 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [5ad6dbe8-09db-11e7-b9ff-a0b3ccf7272a] + x-ms-client-request-id: [23b0a0ac-3b2f-11e7-bbe1-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"6e8c315e-1f00-456d-a23c-8cdb58869481\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"d7605768-e267-415d-ac1e-48201578e729\\\"\",\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\":\ - \ \"39613741-2792-4edf-95fe-9f553e29c63f\",\r\n \"peerings\": [],\r\n \ + \ \"601f9751-b7ea-4b94-be06-9b2fccb926fb\",\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\": \"edd0e13f-9ac7-4ac9-bb91-9d2f2000e8b2\",\r\ + : \"\",\r\n \"serviceKey\": \"b29656a9-1a89-4194-8252-2835869426be\",\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}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:59:30 GMT'] + Date: ['Wed, 17 May 2017 18:32:37 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -749,30 +746,31 @@ interactions: Connection: [keep-alive] Content-Length: ['2'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [6f33a2a4-09db-11e7-b9f2-a0b3ccf7272a] + x-ms-client-request-id: [3113f5da-3b2f-11e7-963d-a0b3ccf7272a] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\ - ,\r\n \"etag\": \"W/\\\"573e9b80-933f-4df4-9ab2-a436d46d6fd4\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"f056fb62-5f25-4360-a645-0e5005f676bf\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ - authorizationKey\": \"26e5f318-4f32-443c-9f9f-151092d1951f\",\r\n \"authorizationUseStatus\"\ + authorizationKey\": \"460fb385-24a1-405f-a3a5-b01b3d0e72cd\",\r\n \"authorizationUseStatus\"\ : \"Available\"\r\n }\r\n}"} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/671236b3-9735-4daf-aeeb-e45544fd260b?api-version=2017-03-01'] + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/074cb73c-f512-4094-99f5-9cdafc163b9a?api-version=2017-03-01'] Cache-Control: [no-cache] Content-Length: ['438'] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:59:32 GMT'] + Date: ['Wed, 17 May 2017 18:32:38 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] 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 @@ -781,18 +779,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [6f33a2a4-09db-11e7-b9f2-a0b3ccf7272a] + x-ms-client-request-id: [3113f5da-3b2f-11e7-963d-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/671236b3-9735-4daf-aeeb-e45544fd260b?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/074cb73c-f512-4094-99f5-9cdafc163b9a?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:59:43 GMT'] + Date: ['Wed, 17 May 2017 18:32:47 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -808,22 +807,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [6f33a2a4-09db-11e7-b9f2-a0b3ccf7272a] + x-ms-client-request-id: [3113f5da-3b2f-11e7-963d-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\ - ,\r\n \"etag\": \"W/\\\"23144278-411f-445d-9f41-c7e8f39aaf86\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"def9311c-7e72-4505-af90-0d33b08a79a1\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - authorizationKey\": \"26e5f318-4f32-443c-9f9f-151092d1951f\",\r\n \"authorizationUseStatus\"\ + authorizationKey\": \"460fb385-24a1-405f-a3a5-b01b3d0e72cd\",\r\n \"authorizationUseStatus\"\ : \"Available\"\r\n }\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:59:43 GMT'] + Date: ['Wed, 17 May 2017 18:32:48 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -839,24 +839,25 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [76b07c6c-09db-11e7-842c-a0b3ccf7272a] + x-ms-client-request-id: [38432892-3b2f-11e7-8c90-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations?api-version=2017-03-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_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\ - ,\r\n \"etag\": \"W/\\\"23144278-411f-445d-9f41-c7e8f39aaf86\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"def9311c-7e72-4505-af90-0d33b08a79a1\\\"\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"authorizationKey\": \"26e5f318-4f32-443c-9f9f-151092d1951f\"\ + ,\r\n \"authorizationKey\": \"460fb385-24a1-405f-a3a5-b01b3d0e72cd\"\ ,\r\n \"authorizationUseStatus\": \"Available\"\r\n }\r\n }\r\ \n ]\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:59:44 GMT'] + Date: ['Wed, 17 May 2017 18:32:49 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -872,22 +873,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [772dbca4-09db-11e7-b83f-a0b3ccf7272a] + x-ms-client-request-id: [3890b670-3b2f-11e7-bb8d-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\ - ,\r\n \"etag\": \"W/\\\"23144278-411f-445d-9f41-c7e8f39aaf86\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"def9311c-7e72-4505-af90-0d33b08a79a1\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - authorizationKey\": \"26e5f318-4f32-443c-9f9f-151092d1951f\",\r\n \"authorizationUseStatus\"\ + authorizationKey\": \"460fb385-24a1-405f-a3a5-b01b3d0e72cd\",\r\n \"authorizationUseStatus\"\ : \"Available\"\r\n }\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:59:46 GMT'] + Date: ['Wed, 17 May 2017 18:32:50 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -904,26 +906,27 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [77ae2ede-09db-11e7-98da-a0b3ccf7272a] + x-ms-client-request-id: [38d85c80-3b2f-11e7-bf35-a0b3ccf7272a] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-03-01 response: body: {string: ''} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/6df6278a-1cfe-44b7-915d-3c304d07be49?api-version=2017-03-01'] + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/b7f4e92e-1ee2-4d9e-92e2-e2d1389441ee?api-version=2017-03-01'] Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Wed, 15 Mar 2017 23:59:46 GMT'] + Date: ['Wed, 17 May 2017 18:32:50 GMT'] Expires: ['-1'] - Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/6df6278a-1cfe-44b7-915d-3c304d07be49?api-version=2017-03-01'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/b7f4e92e-1ee2-4d9e-92e2-e2d1389441ee?api-version=2017-03-01'] Pragma: [no-cache] Retry-After: ['10'] 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: ['1196'] status: {code: 202, message: Accepted} - request: body: null @@ -932,18 +935,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [77ae2ede-09db-11e7-98da-a0b3ccf7272a] + x-ms-client-request-id: [38d85c80-3b2f-11e7-bf35-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6df6278a-1cfe-44b7-915d-3c304d07be49?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b7f4e92e-1ee2-4d9e-92e2-e2d1389441ee?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Wed, 15 Mar 2017 23:59:56 GMT'] + Date: ['Wed, 17 May 2017 18:33:00 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] @@ -960,18 +964,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [77ae2ede-09db-11e7-98da-a0b3ccf7272a] + x-ms-client-request-id: [38d85c80-3b2f-11e7-bf35-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6df6278a-1cfe-44b7-915d-3c304d07be49?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b7f4e92e-1ee2-4d9e-92e2-e2d1389441ee?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:00:08 GMT'] + Date: ['Wed, 17 May 2017 18:33:11 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -987,10 +992,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [8522b100-09db-11e7-8731-a0b3ccf7272a] + x-ms-client-request-id: [4565a5a8-3b2f-11e7-bb47-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations?api-version=2017-03-01 response: @@ -998,7 +1004,7 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:00:09 GMT'] + Date: ['Wed, 17 May 2017 18:33:11 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1014,31 +1020,32 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [8603e858-09db-11e7-b256-a0b3ccf7272a] + x-ms-client-request-id: [45aca194-3b2f-11e7-82ae-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"db33354b-494a-4115-b777-58e9eb554659\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"5266cf9c-5147-41b9-ac36-a4eeb0f7d20e\\\"\",\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\":\ - \ \"39613741-2792-4edf-95fe-9f553e29c63f\",\r\n \"peerings\": [],\r\n \ + \ \"601f9751-b7ea-4b94-be06-9b2fccb926fb\",\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\": \"edd0e13f-9ac7-4ac9-bb91-9d2f2000e8b2\",\r\ + : \"\",\r\n \"serviceKey\": \"b29656a9-1a89-4194-8252-2835869426be\",\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}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:00:10 GMT'] + Date: ['Wed, 17 May 2017 18:33:12 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1048,8 +1055,8 @@ interactions: content-length: ['1036'] status: {code: 200, message: OK} - request: - body: '{"properties": {"peerASN": 10000, "secondaryPeerAddressPrefix": "101.0.0.0/30", - "vlanId": 100, "peeringType": "AzurePublicPeering", "primaryPeerAddressPrefix": + body: '{"properties": {"peerASN": 10000, "peeringType": "AzurePublicPeering", + "vlanId": 100, "secondaryPeerAddressPrefix": "101.0.0.0/30", "primaryPeerAddressPrefix": "100.0.0.0/30"}}' headers: Accept: [application/json] @@ -1057,32 +1064,33 @@ interactions: Connection: [keep-alive] Content-Length: ['176'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [867770d0-09db-11e7-bed1-a0b3ccf7272a] + x-ms-client-request-id: [45fb8d90-3b2f-11e7-8bd4-a0b3ccf7272a] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"67056f81-a1a1-4345-9367-6da481b1a1f5\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"e4554025-4972-4f97-934e-70d5af248c42\\\"\",\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/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/caab8374-389e-49f0-b4d4-db6a6060e978?api-version=2017-03-01'] + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/c8536a52-5820-4f43-b52f-631c85163dc7?api-version=2017-03-01'] Cache-Control: [no-cache] Content-Length: ['607'] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:00:11 GMT'] + Date: ['Wed, 17 May 2017 18:33:13 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] 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: ['1198'] status: {code: 201, message: Created} - request: body: null @@ -1091,18 +1099,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [867770d0-09db-11e7-bed1-a0b3ccf7272a] + x-ms-client-request-id: [45fb8d90-3b2f-11e7-8bd4-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/caab8374-389e-49f0-b4d4-db6a6060e978?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c8536a52-5820-4f43-b52f-631c85163dc7?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:00:22 GMT'] + Date: ['Wed, 17 May 2017 18:33:23 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] @@ -1119,18 +1128,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [867770d0-09db-11e7-bed1-a0b3ccf7272a] + x-ms-client-request-id: [45fb8d90-3b2f-11e7-8bd4-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/caab8374-389e-49f0-b4d4-db6a6060e978?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c8536a52-5820-4f43-b52f-631c85163dc7?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:00:33 GMT'] + Date: ['Wed, 17 May 2017 18:33:34 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1146,15 +1156,16 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [867770d0-09db-11e7-bed1-a0b3ccf7272a] + x-ms-client-request-id: [45fb8d90-3b2f-11e7-8bd4-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"6bba404f-7229-4bbb-87c3-95f912c58a09\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"9a597732-5e86-419f-bd47-b4031e671759\\\"\",\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\"\ @@ -1165,7 +1176,7 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:00:34 GMT'] + Date: ['Wed, 17 May 2017 18:33:36 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1181,21 +1192,22 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [9518e526-09db-11e7-ac85-a0b3ccf7272a] + x-ms-client-request-id: [5455f5f4-3b2f-11e7-bfae-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"6bba404f-7229-4bbb-87c3-95f912c58a09\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"9a597732-5e86-419f-bd47-b4031e671759\\\"\",\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\":\ - \ \"39613741-2792-4edf-95fe-9f553e29c63f\",\r\n \"peerings\": [\r\n \ + \ \"601f9751-b7ea-4b94-be06-9b2fccb926fb\",\r\n \"peerings\": [\r\n \ \ {\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"6bba404f-7229-4bbb-87c3-95f912c58a09\\\"\"\ + ,\r\n \"etag\": \"W/\\\"9a597732-5e86-419f-bd47-b4031e671759\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\"\ : 12076,\r\n \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\"\ @@ -1208,14 +1220,14 @@ interactions: : \"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\": \"edd0e13f-9ac7-4ac9-bb91-9d2f2000e8b2\",\r\ + : \"\",\r\n \"serviceKey\": \"b29656a9-1a89-4194-8252-2835869426be\",\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}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:00:35 GMT'] + Date: ['Wed, 17 May 2017 18:33:37 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1225,8 +1237,8 @@ interactions: content-length: ['1868'] status: {code: 200, message: OK} - request: - body: '{"properties": {"peerASN": 10001, "secondaryPeerAddressPrefix": "103.0.0.0/30", - "vlanId": 101, "peeringType": "AzurePrivatePeering", "primaryPeerAddressPrefix": + body: '{"properties": {"peerASN": 10001, "peeringType": "AzurePrivatePeering", + "vlanId": 101, "secondaryPeerAddressPrefix": "103.0.0.0/30", "primaryPeerAddressPrefix": "102.0.0.0/30"}}' headers: Accept: [application/json] @@ -1234,15 +1246,16 @@ interactions: Connection: [keep-alive] Content-Length: ['177'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [9585bf9c-09db-11e7-8bbf-a0b3ccf7272a] + x-ms-client-request-id: [54c4aaac-3b2f-11e7-a296-a0b3ccf7272a] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\ - ,\r\n \"etag\": \"W/\\\"e554de98-8f0b-4ae6-afa0-5369738352cc\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"76138dcb-8b69-4248-a520-599080a2cdf1\\\"\",\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\ @@ -1250,17 +1263,17 @@ interactions: \ \"Disabled\",\r\n \"vlanId\": 101,\r\n \"lastModifiedBy\": \"\"\r\n\ \ }\r\n}"} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/c4fc37ab-ffb9-425b-8b26-94fc4972ddfa?api-version=2017-03-01'] + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/692dec30-6061-4c2e-b32c-9c3360adc834?api-version=2017-03-01'] Cache-Control: [no-cache] Content-Length: ['610'] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:00:37 GMT'] + Date: ['Wed, 17 May 2017 18:33:38 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] 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: ['1197'] status: {code: 201, message: Created} - request: body: null @@ -1269,18 +1282,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [9585bf9c-09db-11e7-8bbf-a0b3ccf7272a] + x-ms-client-request-id: [54c4aaac-3b2f-11e7-a296-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4fc37ab-ffb9-425b-8b26-94fc4972ddfa?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/692dec30-6061-4c2e-b32c-9c3360adc834?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:00:48 GMT'] + Date: ['Wed, 17 May 2017 18:33:48 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] @@ -1297,18 +1311,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [9585bf9c-09db-11e7-8bbf-a0b3ccf7272a] + x-ms-client-request-id: [54c4aaac-3b2f-11e7-a296-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4fc37ab-ffb9-425b-8b26-94fc4972ddfa?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/692dec30-6061-4c2e-b32c-9c3360adc834?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:00:58 GMT'] + Date: ['Wed, 17 May 2017 18:33:58 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] @@ -1325,18 +1340,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [9585bf9c-09db-11e7-8bbf-a0b3ccf7272a] + x-ms-client-request-id: [54c4aaac-3b2f-11e7-a296-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4fc37ab-ffb9-425b-8b26-94fc4972ddfa?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/692dec30-6061-4c2e-b32c-9c3360adc834?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:01:09 GMT'] + Date: ['Wed, 17 May 2017 18:34:09 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1352,15 +1368,16 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [9585bf9c-09db-11e7-8bbf-a0b3ccf7272a] + x-ms-client-request-id: [54c4aaac-3b2f-11e7-a296-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\ - ,\r\n \"etag\": \"W/\\\"03003687-1b51-43e3-a737-ace769c50c77\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"21f6e54b-8f9a-43a6-8a4f-9326d6e9cb1e\\\"\",\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\"\ @@ -1371,7 +1388,7 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:01:09 GMT'] + Date: ['Wed, 17 May 2017 18:34:10 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1387,21 +1404,22 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [aa28e776-09db-11e7-8f43-a0b3ccf7272a] + x-ms-client-request-id: [687ca078-3b2f-11e7-b56b-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\ - ,\r\n \"etag\": \"W/\\\"03003687-1b51-43e3-a737-ace769c50c77\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"21f6e54b-8f9a-43a6-8a4f-9326d6e9cb1e\\\"\",\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\":\ - \ \"39613741-2792-4edf-95fe-9f553e29c63f\",\r\n \"peerings\": [\r\n \ + \ \"601f9751-b7ea-4b94-be06-9b2fccb926fb\",\r\n \"peerings\": [\r\n \ \ {\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"03003687-1b51-43e3-a737-ace769c50c77\\\"\"\ + ,\r\n \"etag\": \"W/\\\"21f6e54b-8f9a-43a6-8a4f-9326d6e9cb1e\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\"\ : 12076,\r\n \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\"\ @@ -1411,7 +1429,7 @@ interactions: \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_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\ - ,\r\n \"etag\": \"W/\\\"03003687-1b51-43e3-a737-ace769c50c77\\\"\"\ + ,\r\n \"etag\": \"W/\\\"21f6e54b-8f9a-43a6-8a4f-9326d6e9cb1e\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \"azureASN\"\ : 12076,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\"\ @@ -1424,14 +1442,14 @@ interactions: : \"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\": \"edd0e13f-9ac7-4ac9-bb91-9d2f2000e8b2\",\r\ + : \"\",\r\n \"serviceKey\": \"b29656a9-1a89-4194-8252-2835869426be\",\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}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:01:12 GMT'] + Date: ['Wed, 17 May 2017 18:34:11 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1441,25 +1459,26 @@ interactions: content-length: ['2698'] status: {code: 200, message: OK} - request: - body: '{"properties": {"vlanId": 103, "peerASN": 10002, "microsoftPeeringConfig": - {"advertisedPublicPrefixes": ["104.0.0.0/30"], "routingRegistryName": "LEVEL3", - "customerASN": 10000}, "secondaryPeerAddressPrefix": "105.0.0.0/30", "peeringType": - "MicrosoftPeering", "primaryPeerAddressPrefix": "104.0.0.0/30"}}' + body: '{"properties": {"primaryPeerAddressPrefix": "104.0.0.0/30", "peerASN": + 10002, "vlanId": 103, "secondaryPeerAddressPrefix": "105.0.0.0/30", "peeringType": + "MicrosoftPeering", "microsoftPeeringConfig": {"customerASN": 10000, "advertisedPublicPrefixes": + ["104.0.0.0/30"], "routingRegistryName": "LEVEL3"}}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Length: ['303'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [ab058bde-09db-11e7-9201-a0b3ccf7272a] + x-ms-client-request-id: [68db8582-3b2f-11e7-ae35-a0b3ccf7272a] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\ - ,\r\n \"etag\": \"W/\\\"a2a6b628-f92f-4d49-af9f-ff4b74bdbbcd\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"24757d52-1f14-403e-afe7-3e4028f159db\\\"\",\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 \"\ @@ -1470,17 +1489,17 @@ interactions: \n \"customerASN\": 10000,\r\n \"routingRegistryName\": \"LEVEL3\"\ \r\n }\r\n }\r\n}"} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/40e5ed7e-dfa5-40ff-b4bc-2ad2017d723f?api-version=2017-03-01'] + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/73777a23-3ce7-45e7-92ae-f2a28182ba63?api-version=2017-03-01'] Cache-Control: [no-cache] Content-Length: ['838'] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:01:13 GMT'] + Date: ['Wed, 17 May 2017 18:34:11 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] 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: ['1193'] status: {code: 201, message: Created} - request: body: null @@ -1489,137 +1508,30 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] - accept-language: [en-US] - x-ms-client-request-id: [ab058bde-09db-11e7-9201-a0b3ccf7272a] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/40e5ed7e-dfa5-40ff-b4bc-2ad2017d723f?api-version=2017-03-01 - response: - body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} - headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:01:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Retry-After: ['10'] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] - content-length: ['30'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] - accept-language: [en-US] - x-ms-client-request-id: [ab058bde-09db-11e7-9201-a0b3ccf7272a] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/40e5ed7e-dfa5-40ff-b4bc-2ad2017d723f?api-version=2017-03-01 - response: - body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} - headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:01:36 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Retry-After: ['10'] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] - content-length: ['30'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] - accept-language: [en-US] - x-ms-client-request-id: [ab058bde-09db-11e7-9201-a0b3ccf7272a] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/40e5ed7e-dfa5-40ff-b4bc-2ad2017d723f?api-version=2017-03-01 - response: - body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} - headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:01:46 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Retry-After: ['10'] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] - content-length: ['30'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] - accept-language: [en-US] - x-ms-client-request-id: [ab058bde-09db-11e7-9201-a0b3ccf7272a] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/40e5ed7e-dfa5-40ff-b4bc-2ad2017d723f?api-version=2017-03-01 - response: - body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} - headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:01:57 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Retry-After: ['10'] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] - content-length: ['30'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [ab058bde-09db-11e7-9201-a0b3ccf7272a] + x-ms-client-request-id: [68db8582-3b2f-11e7-ae35-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/40e5ed7e-dfa5-40ff-b4bc-2ad2017d723f?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73777a23-3ce7-45e7-92ae-f2a28182ba63?api-version=2017-03-01 response: - body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + body: {string: "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\"\ + : \" UnauthorizedForMicrosoftPeering\",\r\n \"message\": \" The Customer\ + \ subscription id 0b1f6471-1bf0-4dda-aec3-cb9272f09590 is not authorized for\ + \ creating Microsoft Peering. Read about requesting approval at https://support.microsoft.com/kb/3181709\ + \ \",\r\n \"details\": []\r\n }\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:02:08 GMT'] + Date: ['Wed, 17 May 2017 18:34:21 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] Strict-Transport-Security: [max-age=31536000; includeSubDomains] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] - content-length: ['29'] + content-length: ['326'] status: {code: 200, message: OK} - request: body: null @@ -1628,76 +1540,36 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [ab058bde-09db-11e7-9201-a0b3ccf7272a] + x-ms-client-request-id: [6f70f5ee-3b2f-11e7-b861-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\ - ,\r\n \"etag\": \"W/\\\"d6e3fc9b-4900-4780-a484-4abd43fab139\\\"\",\r\n \ - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - peeringType\": \"MicrosoftPeering\",\r\n \"azureASN\": 12076,\r\n \"\ - peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\ - \n \"secondaryPeerAddressPrefix\": \"105.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\": 103,\r\n \"gatewayManagerEtag\"\ - : \"\",\r\n \"lastModifiedBy\": \"Customer\",\r\n \"microsoftPeeringConfig\"\ - : {\r\n \"advertisedPublicPrefixes\": [\r\n \"104.0.0.0/30\"\r\ - \n ],\r\n \"advertisedPublicPrefixesState\": \"ValidationNeeded\"\ - ,\r\n \"customerASN\": 10000,\r\n \"routingRegistryName\": \"LEVEL3\"\ + ,\r\n \"etag\": \"W/\\\"a6286b58-fa0c-49ad-92ea-b53f91515f01\\\"\",\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\"\ + : \"105.0.0.0/30\",\r\n \"state\": \"Disabled\",\r\n \"vlanId\": 103,\r\ + \n \"lastModifiedBy\": \"\",\r\n \"microsoftPeeringConfig\": {\r\n \ + \ \"advertisedPublicPrefixes\": [\r\n \"104.0.0.0/30\"\r\n \ + \ ],\r\n \"advertisedPublicPrefixesState\": \"NotConfigured\",\r\n \ + \ \"customerASN\": 10000,\r\n \"routingRegistryName\": \"LEVEL3\"\ \r\n }\r\n }\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:02:09 GMT'] + Date: ['Wed, 17 May 2017 18:34:22 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] Strict-Transport-Security: [max-age=31536000; includeSubDomains] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] - content-length: ['996'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] - accept-language: [en-US] - x-ms-client-request-id: [cd59ef06-09db-11e7-840a-a0b3ccf7272a] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-03-01 - response: - body: {string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\ - ,\r\n \"etag\": \"W/\\\"d6e3fc9b-4900-4780-a484-4abd43fab139\\\"\",\r\n \ - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - peeringType\": \"MicrosoftPeering\",\r\n \"azureASN\": 12076,\r\n \"\ - peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\ - \n \"secondaryPeerAddressPrefix\": \"105.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\": 103,\r\n \"gatewayManagerEtag\"\ - : \"\",\r\n \"lastModifiedBy\": \"Customer\",\r\n \"microsoftPeeringConfig\"\ - : {\r\n \"advertisedPublicPrefixes\": [\r\n \"104.0.0.0/30\"\r\ - \n ],\r\n \"advertisedPublicPrefixesState\": \"ValidationNeeded\"\ - ,\r\n \"customerASN\": 10000,\r\n \"routingRegistryName\": \"LEVEL3\"\ - \r\n }\r\n }\r\n}"} - headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:02:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] - content-length: ['996'] + content-length: ['836'] status: {code: 200, message: OK} - request: body: null @@ -1707,26 +1579,27 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [ce01f09e-09db-11e7-a32f-a0b3ccf7272a] + x-ms-client-request-id: [6f9c5064-3b2f-11e7-9805-a0b3ccf7272a] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-03-01 response: body: {string: ''} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/034c26be-871f-40a2-b809-e7d94a2ac161?api-version=2017-03-01'] + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3d98f358-af05-4eb8-b961-7daba9b365a3?api-version=2017-03-01'] Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 16 Mar 2017 00:02:11 GMT'] + Date: ['Wed, 17 May 2017 18:34:23 GMT'] Expires: ['-1'] - Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/034c26be-871f-40a2-b809-e7d94a2ac161?api-version=2017-03-01'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/3d98f358-af05-4eb8-b961-7daba9b365a3?api-version=2017-03-01'] Pragma: [no-cache] Retry-After: ['10'] 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: ['1195'] status: {code: 202, message: Accepted} - request: body: null @@ -1735,102 +1608,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [ce01f09e-09db-11e7-a32f-a0b3ccf7272a] + x-ms-client-request-id: [6f9c5064-3b2f-11e7-9805-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/034c26be-871f-40a2-b809-e7d94a2ac161?api-version=2017-03-01 - response: - body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} - headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:02:21 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Retry-After: ['10'] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] - content-length: ['30'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] - accept-language: [en-US] - x-ms-client-request-id: [ce01f09e-09db-11e7-a32f-a0b3ccf7272a] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/034c26be-871f-40a2-b809-e7d94a2ac161?api-version=2017-03-01 - response: - body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} - headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:02:32 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Retry-After: ['10'] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] - content-length: ['30'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] - accept-language: [en-US] - x-ms-client-request-id: [ce01f09e-09db-11e7-a32f-a0b3ccf7272a] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/034c26be-871f-40a2-b809-e7d94a2ac161?api-version=2017-03-01 - response: - body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} - headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:02:42 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Retry-After: ['10'] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] - content-length: ['30'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] - accept-language: [en-US] - x-ms-client-request-id: [ce01f09e-09db-11e7-a32f-a0b3ccf7272a] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/034c26be-871f-40a2-b809-e7d94a2ac161?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3d98f358-af05-4eb8-b961-7daba9b365a3?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:02:52 GMT'] + Date: ['Wed, 17 May 2017 18:34:33 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1846,16 +1636,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [e7666702-09db-11e7-933a-a0b3ccf7272a] + x-ms-client-request-id: [76308d4a-3b2f-11e7-b039-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings?api-version=2017-03-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_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"2c76a970-6713-4bad-abb1-1ef44b659c27\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"24375a2a-f900-43f4-9fa2-4b8c304e5fec\\\"\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\"\ : 12076,\r\n \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\"\ @@ -1865,7 +1656,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_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\ - ,\r\n \"etag\": \"W/\\\"2c76a970-6713-4bad-abb1-1ef44b659c27\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"24375a2a-f900-43f4-9fa2-4b8c304e5fec\\\"\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \"azureASN\"\ : 12076,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\"\ @@ -1878,7 +1669,7 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:03:00 GMT'] + Date: ['Wed, 17 May 2017 18:34:35 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1894,15 +1685,16 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [eb7789ca-09db-11e7-932c-a0b3ccf7272a] + x-ms-client-request-id: [777e8078-3b2f-11e7-be62-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"2c76a970-6713-4bad-abb1-1ef44b659c27\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"24375a2a-f900-43f4-9fa2-4b8c304e5fec\\\"\",\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\"\ @@ -1913,7 +1705,7 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:03:00 GMT'] + Date: ['Wed, 17 May 2017 18:34:37 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1923,28 +1715,28 @@ interactions: content-length: ['762'] status: {code: 200, message: OK} - request: - body: '{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering", - "properties": {"state": "Enabled", "vlanId": 200, "provisioningState": "Succeeded", - "lastModifiedBy": "Customer", "secondaryAzurePort": "A51-TEST-06GMR-CIS-2-SEC-A", - "peerASN": 10000, "primaryAzurePort": "A51-TEST-06GMR-CIS-1-PRI-A", "azureASN": - 12076, "primaryPeerAddressPrefix": "100.0.0.0/30", "gatewayManagerEtag": "", - "peeringType": "AzurePublicPeering", "secondaryPeerAddressPrefix": "101.0.0.0/30"}, - "etag": "W/\"2c76a970-6713-4bad-abb1-1ef44b659c27\"", "name": "AzurePublicPeering"}' + body: '{"name": "AzurePublicPeering", "properties": {"primaryPeerAddressPrefix": + "100.0.0.0/30", "peerASN": 10000, "gatewayManagerEtag": "", "provisioningState": + "Succeeded", "azureASN": 12076, "state": "Enabled", "secondaryPeerAddressPrefix": + "101.0.0.0/30", "lastModifiedBy": "Customer", "peeringType": "AzurePublicPeering", + "primaryAzurePort": "A51-TEST-06GMR-CIS-1-PRI-A", "secondaryAzurePort": "A51-TEST-06GMR-CIS-2-SEC-A", + "vlanId": 200}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - Content-Length: ['682'] + Content-Length: ['628'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [ebe19b4c-09db-11e7-91ad-a0b3ccf7272a] + x-ms-client-request-id: [786b25ba-3b2f-11e7-9cc8-a0b3ccf7272a] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"1145d082-0369-4ec2-9914-611488097d49\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"214060e8-bec2-4aa2-b3d3-f8568614172d\\\"\",\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\"\ @@ -1953,10 +1745,10 @@ 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/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/29393b77-af7c-4e32-9a43-ed76261d5b1b?api-version=2017-03-01'] + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/4d4199a2-c220-4823-9b4d-fcd6cef5b4f2?api-version=2017-03-01'] Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:03:01 GMT'] + Date: ['Wed, 17 May 2017 18:34:37 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] @@ -1965,7 +1757,7 @@ interactions: Transfer-Encoding: [chunked] Vary: [Accept-Encoding] content-length: ['761'] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -1974,18 +1766,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [ebe19b4c-09db-11e7-91ad-a0b3ccf7272a] + x-ms-client-request-id: [786b25ba-3b2f-11e7-9cc8-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/29393b77-af7c-4e32-9a43-ed76261d5b1b?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4d4199a2-c220-4823-9b4d-fcd6cef5b4f2?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:03:12 GMT'] + Date: ['Wed, 17 May 2017 18:34:48 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] @@ -2002,18 +1795,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [ebe19b4c-09db-11e7-91ad-a0b3ccf7272a] + x-ms-client-request-id: [786b25ba-3b2f-11e7-9cc8-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/29393b77-af7c-4e32-9a43-ed76261d5b1b?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4d4199a2-c220-4823-9b4d-fcd6cef5b4f2?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:03:22 GMT'] + Date: ['Wed, 17 May 2017 18:34:58 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2029,15 +1823,16 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [ebe19b4c-09db-11e7-91ad-a0b3ccf7272a] + x-ms-client-request-id: [786b25ba-3b2f-11e7-9cc8-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-03-01 response: body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\ - ,\r\n \"etag\": \"W/\\\"2d22f58e-5fd1-44d7-966c-491c29b6e8ca\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"7ae1aef0-1f84-45f1-8b12-8f7b07d384f6\\\"\",\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\"\ @@ -2048,7 +1843,7 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:03:23 GMT'] + Date: ['Wed, 17 May 2017 18:35:00 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2065,10 +1860,11 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [f967959c-09db-11e7-b4fd-a0b3ccf7272a] + x-ms-client-request-id: [85e27578-3b2f-11e7-920b-a0b3ccf7272a] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/azureprivatepeering/arpTables/primary?api-version=2017-03-01 response: @@ -2077,9 +1873,9 @@ interactions: Cache-Control: [no-cache] Content-Length: ['4'] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:03:24 GMT'] + Date: ['Wed, 17 May 2017 18:35:00 GMT'] Expires: ['-1'] - Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fc55156a-a4c2-4da7-9dbf-57d30cdfdae9?api-version=2017-03-01'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/523958ec-9e90-431d-a4cc-c326eb9bd71e?api-version=2017-03-01'] Pragma: [no-cache] Retry-After: ['10'] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2093,21 +1889,22 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [f967959c-09db-11e7-b4fd-a0b3ccf7272a] + x-ms-client-request-id: [85e27578-3b2f-11e7-920b-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/fc55156a-a4c2-4da7-9dbf-57d30cdfdae9?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/523958ec-9e90-431d-a4cc-c326eb9bd71e?api-version=2017-03-01 response: body: {string: 'null'} headers: Cache-Control: [no-cache] Content-Length: ['4'] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:03:34 GMT'] + Date: ['Wed, 17 May 2017 18:35:11 GMT'] Expires: ['-1'] - Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fc55156a-a4c2-4da7-9dbf-57d30cdfdae9?api-version=2017-03-01'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/523958ec-9e90-431d-a4cc-c326eb9bd71e?api-version=2017-03-01'] Pragma: [no-cache] Retry-After: ['10'] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2120,20 +1917,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [f967959c-09db-11e7-b4fd-a0b3ccf7272a] + x-ms-client-request-id: [85e27578-3b2f-11e7-920b-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/fc55156a-a4c2-4da7-9dbf-57d30cdfdae9?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/523958ec-9e90-431d-a4cc-c326eb9bd71e?api-version=2017-03-01 response: body: {string: "{\r\n \"value\": []\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:03:44 GMT'] + Date: ['Wed, 17 May 2017 18:35:21 GMT'] Expires: ['-1'] - Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fc55156a-a4c2-4da7-9dbf-57d30cdfdae9?api-version=2017-03-01'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/523958ec-9e90-431d-a4cc-c326eb9bd71e?api-version=2017-03-01'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] Strict-Transport-Security: [max-age=31536000; includeSubDomains] @@ -2149,10 +1947,11 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [0643e506-09dc-11e7-ad03-a0b3ccf7272a] + x-ms-client-request-id: [9305e76e-3b2f-11e7-9c65-a0b3ccf7272a] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/azureprivatepeering/routeTables/primary?api-version=2017-03-01 response: @@ -2161,14 +1960,14 @@ interactions: Cache-Control: [no-cache] Content-Length: ['4'] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:03:45 GMT'] + Date: ['Wed, 17 May 2017 18:35:22 GMT'] Expires: ['-1'] - Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/0f930afe-16bf-4cb9-b964-776af6d89d3f?api-version=2017-03-01'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/f60a3a7e-ed4a-4663-bbfd-bf2f02ecbda7?api-version=2017-03-01'] Pragma: [no-cache] Retry-After: ['10'] 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: ['1196'] status: {code: 202, message: Accepted} - request: body: null @@ -2177,21 +1976,22 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [0643e506-09dc-11e7-ad03-a0b3ccf7272a] + x-ms-client-request-id: [9305e76e-3b2f-11e7-9c65-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/0f930afe-16bf-4cb9-b964-776af6d89d3f?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/f60a3a7e-ed4a-4663-bbfd-bf2f02ecbda7?api-version=2017-03-01 response: body: {string: 'null'} headers: Cache-Control: [no-cache] Content-Length: ['4'] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:03:55 GMT'] + Date: ['Wed, 17 May 2017 18:35:32 GMT'] Expires: ['-1'] - Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/0f930afe-16bf-4cb9-b964-776af6d89d3f?api-version=2017-03-01'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/f60a3a7e-ed4a-4663-bbfd-bf2f02ecbda7?api-version=2017-03-01'] Pragma: [no-cache] Retry-After: ['10'] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2204,20 +2004,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [0643e506-09dc-11e7-ad03-a0b3ccf7272a] + x-ms-client-request-id: [9305e76e-3b2f-11e7-9c65-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/0f930afe-16bf-4cb9-b964-776af6d89d3f?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/f60a3a7e-ed4a-4663-bbfd-bf2f02ecbda7?api-version=2017-03-01 response: body: {string: "{\r\n \"value\": []\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:04:05 GMT'] + Date: ['Wed, 17 May 2017 18:35:43 GMT'] Expires: ['-1'] - Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/0f930afe-16bf-4cb9-b964-776af6d89d3f?api-version=2017-03-01'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/f60a3a7e-ed4a-4663-bbfd-bf2f02ecbda7?api-version=2017-03-01'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] Strict-Transport-Security: [max-age=31536000; includeSubDomains] @@ -2233,26 +2034,27 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [132213ee-09dc-11e7-b549-a0b3ccf7272a] + x-ms-client-request-id: [9f9233ee-3b2f-11e7-b902-a0b3ccf7272a] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-03-01 response: body: {string: ''} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ca01797e-e6b6-4eaf-8b79-71cf38c7391b?api-version=2017-03-01'] + Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7ed57c57-d282-4507-b9b5-21ad7fb6df99?api-version=2017-03-01'] Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 16 Mar 2017 00:04:07 GMT'] + Date: ['Wed, 17 May 2017 18:35:43 GMT'] Expires: ['-1'] - Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/ca01797e-e6b6-4eaf-8b79-71cf38c7391b?api-version=2017-03-01'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7ed57c57-d282-4507-b9b5-21ad7fb6df99?api-version=2017-03-01'] Pragma: [no-cache] Retry-After: ['10'] 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: 202, message: Accepted} - request: body: null @@ -2261,18 +2063,48 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] + accept-language: [en-US] + x-ms-client-request-id: [9f9233ee-3b2f-11e7-b902-a0b3ccf7272a] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7ed57c57-d282-4507-b9b5-21ad7fb6df99?api-version=2017-03-01 + response: + body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} + headers: + Cache-Control: [no-cache] + Content-Type: [application/json; charset=utf-8] + Date: ['Wed, 17 May 2017 18:35:54 GMT'] + Expires: ['-1'] + Pragma: [no-cache] + Retry-After: ['10'] + Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + Strict-Transport-Security: [max-age=31536000; includeSubDomains] + Transfer-Encoding: [chunked] + Vary: [Accept-Encoding] + content-length: ['30'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [132213ee-09dc-11e7-b549-a0b3ccf7272a] + x-ms-client-request-id: [9f9233ee-3b2f-11e7-b902-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ca01797e-e6b6-4eaf-8b79-71cf38c7391b?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7ed57c57-d282-4507-b9b5-21ad7fb6df99?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:04:17 GMT'] + Date: ['Wed, 17 May 2017 18:36:04 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] @@ -2289,18 +2121,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [132213ee-09dc-11e7-b549-a0b3ccf7272a] + x-ms-client-request-id: [9f9233ee-3b2f-11e7-b902-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ca01797e-e6b6-4eaf-8b79-71cf38c7391b?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7ed57c57-d282-4507-b9b5-21ad7fb6df99?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:04:28 GMT'] + Date: ['Wed, 17 May 2017 18:36:15 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] @@ -2317,18 +2150,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [132213ee-09dc-11e7-b549-a0b3ccf7272a] + x-ms-client-request-id: [9f9233ee-3b2f-11e7-b902-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ca01797e-e6b6-4eaf-8b79-71cf38c7391b?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7ed57c57-d282-4507-b9b5-21ad7fb6df99?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:04:39 GMT'] + Date: ['Wed, 17 May 2017 18:36:25 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] @@ -2345,18 +2179,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [132213ee-09dc-11e7-b549-a0b3ccf7272a] + x-ms-client-request-id: [9f9233ee-3b2f-11e7-b902-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ca01797e-e6b6-4eaf-8b79-71cf38c7391b?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7ed57c57-d282-4507-b9b5-21ad7fb6df99?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:04:50 GMT'] + Date: ['Wed, 17 May 2017 18:36:35 GMT'] Expires: ['-1'] Pragma: [no-cache] Retry-After: ['10'] @@ -2373,18 +2208,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [132213ee-09dc-11e7-b549-a0b3ccf7272a] + x-ms-client-request-id: [9f9233ee-3b2f-11e7-b902-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ca01797e-e6b6-4eaf-8b79-71cf38c7391b?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7ed57c57-d282-4507-b9b5-21ad7fb6df99?api-version=2017-03-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:05:01 GMT'] + Date: ['Wed, 17 May 2017 18:36:45 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2400,10 +2236,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [33ad7664-09dc-11e7-b833-a0b3ccf7272a] + x-ms-client-request-id: [c52eeaac-3b2f-11e7-9ed2-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits?api-version=2017-03-01 response: @@ -2411,7 +2248,7 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Thu, 16 Mar 2017 00:05:02 GMT'] + Date: ['Wed, 17 May 2017 18:36:46 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] diff --git a/src/command_modules/azure-cli-network/tests/recordings/test_network_load_balancer_ip_config.yaml b/src/command_modules/azure-cli-network/tests/recordings/test_network_load_balancer_ip_config.yaml index 5ba5182b037..3f6394844ca 100644 --- a/src/command_modules/azure-cli-network/tests/recordings/test_network_load_balancer_ip_config.yaml +++ b/src/command_modules/azure-cli-network/tests/recordings/test_network_load_balancer_ip_config.yaml @@ -6,112 +6,111 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [1494ebf0-13f1-11e7-825d-a0b3ccf7272a] + x-ms-client-request-id: [02c90680-3b2f-11e7-b1f3-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"46e67fd2-63b6-4956-8daa-ee218b3f723c\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"7970ce33-d6f0-4827-8577-c243c9e5fa7e\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"46e67fd2-63b6-4956-8daa-ee218b3f723c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7970ce33-d6f0-4827-8577-c243c9e5fa7e\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"46e67fd2-63b6-4956-8daa-ee218b3f723c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7970ce33-d6f0-4827-8577-c243c9e5fa7e\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 19:59:40 GMT'] - ETag: [W/"46e67fd2-63b6-4956-8daa-ee218b3f723c"] - 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] - content-length: ['1844'] + cache-control: [no-cache] + content-length: ['1757'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:31:19 GMT'] + etag: [W/"7970ce33-d6f0-4827-8577-c243c9e5fa7e"] + 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: '{"tags": {}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1", - "etag": "W/\"46e67fd2-63b6-4956-8daa-ee218b3f723c\"", "location": "westus", - "properties": {"loadBalancingRules": [], "resourceGuid": "9f1635ec-1dbe-4287-bcd0-eacc5dc8e900", - "provisioningState": "Succeeded", "backendAddressPools": [{"name": "lb1bepool", - "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool", - "etag": "W/\"46e67fd2-63b6-4956-8daa-ee218b3f723c\"", "properties": {"provisioningState": - "Succeeded"}}], "inboundNatPools": [], "inboundNatRules": [], "frontendIPConfigurations": - [{"etag": "W/\"46e67fd2-63b6-4956-8daa-ee218b3f723c\"", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd", - "name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1"}, - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded"}}, - {"name": "ipconfig1", "properties": {"publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip2"}, - "privateIPAllocationMethod": "dynamic"}}], "outboundNatRules": [], "probes": - []}}' + body: !!python/unicode '{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1", + "etag": "W/\"7970ce33-d6f0-4827-8577-c243c9e5fa7e\"", "location": "westus", + "properties": {"inboundNatRules": [], "resourceGuid": "0ca5fd75-5cd3-4ecb-aecb-268496ac0187", + "frontendIPConfigurations": [{"etag": "W/\"7970ce33-d6f0-4827-8577-c243c9e5fa7e\"", + "properties": {"privateIPAllocationMethod": "Dynamic", "provisioningState": + "Succeeded", "publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1"}}, + "name": "LoadBalancerFrontEnd", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"}, + {"properties": {"privateIPAllocationMethod": "dynamic", "publicIPAddress": {"id": + "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip2"}}, + "name": "ipconfig1"}], "outboundNatRules": [], "loadBalancingRules": [], "inboundNatPools": + [], "backendAddressPools": [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool", + "etag": "W/\"7970ce33-d6f0-4827-8577-c243c9e5fa7e\"", "name": "lb1bepool", "properties": + {"provisioningState": "Succeeded"}}], "provisioningState": "Succeeded", "probes": + []}, "tags": {}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Length: ['1686'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [14c4cde6-13f1-11e7-85f0-a0b3ccf7272a] + x-ms-client-request-id: [02f7908f-3b2f-11e7-883a-a0b3ccf7272a] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip2\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/62b7e972-e024-4519-b1ba-5fcbb2d5f500?api-version=2017-03-01'] - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 19:59:41 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] - content-length: ['2521'] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/326c328d-a1af-4711-9f14-16e5165daa45?api-version=2017-03-01'] + cache-control: [no-cache] + content-length: ['2434'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:31:20 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: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -120,25 +119,26 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [14c4cde6-13f1-11e7-85f0-a0b3ccf7272a] + x-ms-client-request-id: [02f7908f-3b2f-11e7-883a-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/62b7e972-e024-4519-b1ba-5fcbb2d5f500?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/326c328d-a1af-4711-9f14-16e5165daa45?api-version=2017-03-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-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:00: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] + cache-control: [no-cache] content-length: ['29'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:31:50 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 @@ -147,51 +147,50 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [14c4cde6-13f1-11e7-85f0-a0b3ccf7272a] + x-ms-client-request-id: [02f7908f-3b2f-11e7-883a-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip2\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:00:11 GMT'] - ETag: [W/"a6e2718c-7721-4722-b5a9-ae67595b7c0b"] - 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] - content-length: ['2521'] + cache-control: [no-cache] + content-length: ['2434'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:31:51 GMT'] + etag: [W/"0314a0b2-854e-4438-a189-77e572232b4a"] + 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 @@ -200,51 +199,50 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [278c4eb6-13f1-11e7-9f66-a0b3ccf7272a] + x-ms-client-request-id: [1572b470-3b2f-11e7-80ac-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip2\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:00:12 GMT'] - ETag: [W/"a6e2718c-7721-4722-b5a9-ae67595b7c0b"] - 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] - content-length: ['2521'] + cache-control: [no-cache] + content-length: ['2434'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:31:51 GMT'] + etag: [W/"0314a0b2-854e-4438-a189-77e572232b4a"] + 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 @@ -253,119 +251,118 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [2840a324-13f1-11e7-8285-a0b3ccf7272a] + x-ms-client-request-id: [15b0f5f0-3b2f-11e7-96c1-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip2\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0314a0b2-854e-4438-a189-77e572232b4a\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:00:14 GMT'] - ETag: [W/"a6e2718c-7721-4722-b5a9-ae67595b7c0b"] - 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] - content-length: ['2521'] + cache-control: [no-cache] + content-length: ['2434'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:31:52 GMT'] + etag: [W/"0314a0b2-854e-4438-a189-77e572232b4a"] + 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: '{"tags": {}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1", - "etag": "W/\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\"", "location": "westus", - "properties": {"loadBalancingRules": [], "resourceGuid": "9f1635ec-1dbe-4287-bcd0-eacc5dc8e900", - "provisioningState": "Succeeded", "backendAddressPools": [{"name": "lb1bepool", - "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool", - "etag": "W/\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\"", "properties": {"provisioningState": - "Succeeded"}}], "inboundNatPools": [], "inboundNatRules": [], "frontendIPConfigurations": - [{"etag": "W/\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\"", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd", - "name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1"}, - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded"}}, - {"etag": "W/\"a6e2718c-7721-4722-b5a9-ae67595b7c0b\"", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1", - "name": "ipconfig1", "properties": {"publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip3"}, - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded"}}], - "outboundNatRules": [], "probes": []}}' + body: !!python/unicode '{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1", + "etag": "W/\"0314a0b2-854e-4438-a189-77e572232b4a\"", "location": "westus", + "properties": {"inboundNatRules": [], "resourceGuid": "0ca5fd75-5cd3-4ecb-aecb-268496ac0187", + "frontendIPConfigurations": [{"etag": "W/\"0314a0b2-854e-4438-a189-77e572232b4a\"", + "properties": {"privateIPAllocationMethod": "Dynamic", "provisioningState": + "Succeeded", "publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1"}}, + "name": "LoadBalancerFrontEnd", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"}, + {"etag": "W/\"0314a0b2-854e-4438-a189-77e572232b4a\"", "properties": {"privateIPAllocationMethod": + "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip3"}}, + "name": "ipconfig1", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1"}], + "outboundNatRules": [], "loadBalancingRules": [], "inboundNatPools": [], "backendAddressPools": + [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool", + "etag": "W/\"0314a0b2-854e-4438-a189-77e572232b4a\"", "name": "lb1bepool", "properties": + {"provisioningState": "Succeeded"}}], "provisioningState": "Succeeded", "probes": + []}, "tags": {}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Length: ['1970'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [286713da-13f1-11e7-aa65-a0b3ccf7272a] + x-ms-client-request-id: [15da9e00-3b2f-11e7-a27b-a0b3ccf7272a] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip3\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7ca33b19-472c-47c3-970a-6d6c888f2d1b?api-version=2017-03-01'] - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:00: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] - content-length: ['2521'] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/76d6a1bb-939c-413a-8138-55fe22c17e53?api-version=2017-03-01'] + cache-control: [no-cache] + content-length: ['2434'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:31: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: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -374,25 +371,26 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [286713da-13f1-11e7-aa65-a0b3ccf7272a] + x-ms-client-request-id: [15da9e00-3b2f-11e7-a27b-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7ca33b19-472c-47c3-970a-6d6c888f2d1b?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/76d6a1bb-939c-413a-8138-55fe22c17e53?api-version=2017-03-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-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:00:44 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] + cache-control: [no-cache] content-length: ['29'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:32:22 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] status: {code: 200, message: OK} - request: body: null @@ -401,51 +399,50 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [286713da-13f1-11e7-aa65-a0b3ccf7272a] + x-ms-client-request-id: [15da9e00-3b2f-11e7-a27b-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip3\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:00:44 GMT'] - ETag: [W/"1e21a672-a65d-4eb3-8a97-759832faf01c"] - 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] - content-length: ['2521'] + cache-control: [no-cache] + content-length: ['2434'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:32:22 GMT'] + etag: [W/"3f07588c-30f4-487e-be43-5bb70b6e448c"] + 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 @@ -454,51 +451,50 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [3b159ede-13f1-11e7-bd8e-a0b3ccf7272a] + x-ms-client-request-id: [284a7740-3b2f-11e7-8133-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip3\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:00:45 GMT'] - ETag: [W/"1e21a672-a65d-4eb3-8a97-759832faf01c"] - 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] - content-length: ['2521'] + cache-control: [no-cache] + content-length: ['2434'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:32:22 GMT'] + etag: [W/"3f07588c-30f4-487e-be43-5bb70b6e448c"] + 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 @@ -507,119 +503,118 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [3b995bd4-13f1-11e7-bbbf-a0b3ccf7272a] + x-ms-client-request-id: [2874bb8f-3b2f-11e7-b8e3-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip3\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"1e21a672-a65d-4eb3-8a97-759832faf01c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3f07588c-30f4-487e-be43-5bb70b6e448c\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:00:46 GMT'] - ETag: [W/"1e21a672-a65d-4eb3-8a97-759832faf01c"] - 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] - content-length: ['2521'] + cache-control: [no-cache] + content-length: ['2434'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:32:23 GMT'] + etag: [W/"3f07588c-30f4-487e-be43-5bb70b6e448c"] + 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: '{"tags": {}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1", - "etag": "W/\"1e21a672-a65d-4eb3-8a97-759832faf01c\"", "location": "westus", - "properties": {"loadBalancingRules": [], "resourceGuid": "9f1635ec-1dbe-4287-bcd0-eacc5dc8e900", - "provisioningState": "Succeeded", "backendAddressPools": [{"name": "lb1bepool", - "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool", - "etag": "W/\"1e21a672-a65d-4eb3-8a97-759832faf01c\"", "properties": {"provisioningState": - "Succeeded"}}], "inboundNatPools": [], "inboundNatRules": [], "frontendIPConfigurations": - [{"etag": "W/\"1e21a672-a65d-4eb3-8a97-759832faf01c\"", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd", - "name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1"}, - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded"}}, - {"etag": "W/\"1e21a672-a65d-4eb3-8a97-759832faf01c\"", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1", - "name": "ipconfig1", "properties": {"publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip2"}, - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded"}}], - "outboundNatRules": [], "probes": []}}' + body: !!python/unicode '{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1", + "etag": "W/\"3f07588c-30f4-487e-be43-5bb70b6e448c\"", "location": "westus", + "properties": {"inboundNatRules": [], "resourceGuid": "0ca5fd75-5cd3-4ecb-aecb-268496ac0187", + "frontendIPConfigurations": [{"etag": "W/\"3f07588c-30f4-487e-be43-5bb70b6e448c\"", + "properties": {"privateIPAllocationMethod": "Dynamic", "provisioningState": + "Succeeded", "publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1"}}, + "name": "LoadBalancerFrontEnd", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"}, + {"etag": "W/\"3f07588c-30f4-487e-be43-5bb70b6e448c\"", "properties": {"privateIPAllocationMethod": + "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip2"}}, + "name": "ipconfig1", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1"}], + "outboundNatRules": [], "loadBalancingRules": [], "inboundNatPools": [], "backendAddressPools": + [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool", + "etag": "W/\"3f07588c-30f4-487e-be43-5bb70b6e448c\"", "name": "lb1bepool", "properties": + {"provisioningState": "Succeeded"}}], "provisioningState": "Succeeded", "probes": + []}, "tags": {}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Length: ['1970'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [3bf03d28-13f1-11e7-9589-a0b3ccf7272a] + x-ms-client-request-id: [28c880de-3b2f-11e7-a027-a0b3ccf7272a] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"76c6614d-c004-406c-b5c5-029cbcad79cb\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"ee609f89-5ed7-47d1-af55-205edb352f0a\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"76c6614d-c004-406c-b5c5-029cbcad79cb\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ee609f89-5ed7-47d1-af55-205edb352f0a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"76c6614d-c004-406c-b5c5-029cbcad79cb\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ee609f89-5ed7-47d1-af55-205edb352f0a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip2\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"76c6614d-c004-406c-b5c5-029cbcad79cb\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ee609f89-5ed7-47d1-af55-205edb352f0a\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5986b995-952e-4bc7-96f6-1a3be45000f3?api-version=2017-03-01'] - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:00:46 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] - content-length: ['2521'] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/20f2897c-a879-4a11-965b-2b7560a37537?api-version=2017-03-01'] + cache-control: [no-cache] + content-length: ['2434'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:32: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: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -628,25 +623,26 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [3bf03d28-13f1-11e7-9589-a0b3ccf7272a] + x-ms-client-request-id: [28c880de-3b2f-11e7-a027-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5986b995-952e-4bc7-96f6-1a3be45000f3?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/20f2897c-a879-4a11-965b-2b7560a37537?api-version=2017-03-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-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:01: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] + cache-control: [no-cache] content-length: ['29'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:32: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 @@ -655,51 +651,50 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [3bf03d28-13f1-11e7-9589-a0b3ccf7272a] + x-ms-client-request-id: [28c880de-3b2f-11e7-a027-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"76c6614d-c004-406c-b5c5-029cbcad79cb\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"ee609f89-5ed7-47d1-af55-205edb352f0a\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"76c6614d-c004-406c-b5c5-029cbcad79cb\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ee609f89-5ed7-47d1-af55-205edb352f0a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"76c6614d-c004-406c-b5c5-029cbcad79cb\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ee609f89-5ed7-47d1-af55-205edb352f0a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip2\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"76c6614d-c004-406c-b5c5-029cbcad79cb\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ee609f89-5ed7-47d1-af55-205edb352f0a\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:01:17 GMT'] - ETag: [W/"76c6614d-c004-406c-b5c5-029cbcad79cb"] - 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] - content-length: ['2521'] + cache-control: [no-cache] + content-length: ['2434'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:32:54 GMT'] + etag: [W/"ee609f89-5ed7-47d1-af55-205edb352f0a"] + 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 @@ -708,110 +703,109 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [4f264ed8-13f1-11e7-8d1e-a0b3ccf7272a] + x-ms-client-request-id: [3b56425e-3b2f-11e7-9d9b-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"76c6614d-c004-406c-b5c5-029cbcad79cb\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"ee609f89-5ed7-47d1-af55-205edb352f0a\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"76c6614d-c004-406c-b5c5-029cbcad79cb\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ee609f89-5ed7-47d1-af55-205edb352f0a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/ipconfig1\"\ - ,\r\n \"etag\": \"W/\\\"76c6614d-c004-406c-b5c5-029cbcad79cb\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ee609f89-5ed7-47d1-af55-205edb352f0a\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip2\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"76c6614d-c004-406c-b5c5-029cbcad79cb\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ee609f89-5ed7-47d1-af55-205edb352f0a\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:01:19 GMT'] - ETag: [W/"76c6614d-c004-406c-b5c5-029cbcad79cb"] - 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] - content-length: ['2521'] + cache-control: [no-cache] + content-length: ['2434'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:32:55 GMT'] + etag: [W/"ee609f89-5ed7-47d1-af55-205edb352f0a"] + 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: '{"tags": {}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1", - "etag": "W/\"76c6614d-c004-406c-b5c5-029cbcad79cb\"", "location": "westus", - "properties": {"loadBalancingRules": [], "resourceGuid": "9f1635ec-1dbe-4287-bcd0-eacc5dc8e900", - "provisioningState": "Succeeded", "backendAddressPools": [{"name": "lb1bepool", - "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool", - "etag": "W/\"76c6614d-c004-406c-b5c5-029cbcad79cb\"", "properties": {"provisioningState": - "Succeeded"}}], "inboundNatPools": [], "inboundNatRules": [], "frontendIPConfigurations": - [{"etag": "W/\"76c6614d-c004-406c-b5c5-029cbcad79cb\"", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd", - "name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1"}, - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded"}}], - "outboundNatRules": [], "probes": []}}' + body: !!python/unicode '{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1", + "etag": "W/\"ee609f89-5ed7-47d1-af55-205edb352f0a\"", "location": "westus", + "properties": {"inboundNatRules": [], "resourceGuid": "0ca5fd75-5cd3-4ecb-aecb-268496ac0187", + "frontendIPConfigurations": [{"etag": "W/\"ee609f89-5ed7-47d1-af55-205edb352f0a\"", + "properties": {"privateIPAllocationMethod": "Dynamic", "provisioningState": + "Succeeded", "publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1"}}, + "name": "LoadBalancerFrontEnd", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"}], + "outboundNatRules": [], "loadBalancingRules": [], "inboundNatPools": [], "backendAddressPools": + [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool", + "etag": "W/\"ee609f89-5ed7-47d1-af55-205edb352f0a\"", "name": "lb1bepool", "properties": + {"provisioningState": "Succeeded"}}], "provisioningState": "Succeeded", "probes": + []}, "tags": {}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Length: ['1415'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [4f6f9c98-13f1-11e7-b0e0-a0b3ccf7272a] + x-ms-client-request-id: [3bac78b0-3b2f-11e7-a490-a0b3ccf7272a] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"c74f3d20-3cb0-410c-bffc-c5ce0c693447\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"1110777f-cc96-49da-b364-524977a75f3f\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"c74f3d20-3cb0-410c-bffc-c5ce0c693447\\\"\"\ + ,\r\n \"etag\": \"W/\\\"1110777f-cc96-49da-b364-524977a75f3f\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"c74f3d20-3cb0-410c-bffc-c5ce0c693447\\\"\"\ + ,\r\n \"etag\": \"W/\\\"1110777f-cc96-49da-b364-524977a75f3f\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5476747f-6b4a-4d71-9fcd-d11c1abc2113?api-version=2017-03-01'] - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:01:19 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] - content-length: ['1844'] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/14685409-f8c4-4ac4-9840-7fd1e93f9830?api-version=2017-03-01'] + cache-control: [no-cache] + content-length: ['1757'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:32:54 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -820,25 +814,26 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [4f6f9c98-13f1-11e7-b0e0-a0b3ccf7272a] + x-ms-client-request-id: [3bac78b0-3b2f-11e7-a490-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5476747f-6b4a-4d71-9fcd-d11c1abc2113?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/14685409-f8c4-4ac4-9840-7fd1e93f9830?api-version=2017-03-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-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:01:50 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] + cache-control: [no-cache] content-length: ['29'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:33:26 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 @@ -847,45 +842,44 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [4f6f9c98-13f1-11e7-b0e0-a0b3ccf7272a] + x-ms-client-request-id: [3bac78b0-3b2f-11e7-a490-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"c74f3d20-3cb0-410c-bffc-c5ce0c693447\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"1110777f-cc96-49da-b364-524977a75f3f\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"c74f3d20-3cb0-410c-bffc-c5ce0c693447\\\"\"\ + ,\r\n \"etag\": \"W/\\\"1110777f-cc96-49da-b364-524977a75f3f\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"c74f3d20-3cb0-410c-bffc-c5ce0c693447\\\"\"\ + ,\r\n \"etag\": \"W/\\\"1110777f-cc96-49da-b364-524977a75f3f\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:01:51 GMT'] - ETag: [W/"c74f3d20-3cb0-410c-bffc-c5ce0c693447"] - 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] - content-length: ['1844'] + cache-control: [no-cache] + content-length: ['1757'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:33:26 GMT'] + etag: [W/"1110777f-cc96-49da-b364-524977a75f3f"] + 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 @@ -894,45 +888,44 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [62d3c1ac-13f1-11e7-814f-a0b3ccf7272a] + x-ms-client-request-id: [4e2615f0-3b2f-11e7-a5f4-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ - ,\r\n \"etag\": \"W/\\\"c74f3d20-3cb0-410c-bffc-c5ce0c693447\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1\"\ + ,\r\n \"etag\": \"W/\\\"1110777f-cc96-49da-b364-524977a75f3f\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f1635ec-1dbe-4287-bcd0-eacc5dc8e900\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"0ca5fd75-5cd3-4ecb-aecb-268496ac0187\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"c74f3d20-3cb0-410c-bffc-c5ce0c693447\\\"\"\ + ,\r\n \"etag\": \"W/\\\"1110777f-cc96-49da-b364-524977a75f3f\\\"\"\ ,\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_balancer_ip_config/providers/Microsoft.Network/publicIPAddresses/publicip1\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\ - ,\r\n \"etag\": \"W/\\\"c74f3d20-3cb0-410c-bffc-c5ce0c693447\\\"\"\ + ,\r\n \"etag\": \"W/\\\"1110777f-cc96-49da-b364-524977a75f3f\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:01:52 GMT'] - ETag: [W/"c74f3d20-3cb0-410c-bffc-c5ce0c693447"] - 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] - content-length: ['1844'] + cache-control: [no-cache] + content-length: ['1757'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:33:26 GMT'] + etag: [W/"1110777f-cc96-49da-b364-524977a75f3f"] + 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 @@ -941,113 +934,111 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [637afe7e-13f1-11e7-90d2-a0b3ccf7272a] + x-ms-client-request-id: [4e522f00-3b2f-11e7-b281-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ - ,\r\n \"etag\": \"W/\\\"6734d760-0499-4e8f-bcbb-692897012ed8\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ + ,\r\n \"etag\": \"W/\\\"da7a8b8c-d902-41e0-9e63-b809d37557d2\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"a3c71734-6f1d-4b15-934c-d5111e8b74b3\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"c7bda57d-976b-49a7-bad6-7117dec543e9\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"6734d760-0499-4e8f-bcbb-692897012ed8\\\"\"\ + ,\r\n \"etag\": \"W/\\\"da7a8b8c-d902-41e0-9e63-b809d37557d2\\\"\"\ ,\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_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\ - ,\r\n \"etag\": \"W/\\\"6734d760-0499-4e8f-bcbb-692897012ed8\\\"\"\ + ,\r\n \"etag\": \"W/\\\"da7a8b8c-d902-41e0-9e63-b809d37557d2\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:01:53 GMT'] - ETag: [W/"6734d760-0499-4e8f-bcbb-692897012ed8"] - 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] - content-length: ['1888'] + cache-control: [no-cache] + content-length: ['1801'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:33:26 GMT'] + etag: [W/"da7a8b8c-d902-41e0-9e63-b809d37557d2"] + 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: '{"tags": {}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2", - "etag": "W/\"6734d760-0499-4e8f-bcbb-692897012ed8\"", "location": "westus", - "properties": {"loadBalancingRules": [], "resourceGuid": "a3c71734-6f1d-4b15-934c-d5111e8b74b3", - "provisioningState": "Succeeded", "backendAddressPools": [{"name": "lb2bepool", - "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool", - "etag": "W/\"6734d760-0499-4e8f-bcbb-692897012ed8\"", "properties": {"provisioningState": - "Succeeded"}}], "inboundNatPools": [], "inboundNatRules": [], "frontendIPConfigurations": - [{"etag": "W/\"6734d760-0499-4e8f-bcbb-692897012ed8\"", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd", - "name": "LoadBalancerFrontEnd", "properties": {"privateIPAddress": "10.0.0.4", - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded", "subnet": - {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}}, - {"name": "ipconfig2", "properties": {"privateIPAddress": "10.0.0.99", "privateIPAllocationMethod": - "static", "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}}], - "outboundNatRules": [], "probes": []}}' + body: !!python/unicode '{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2", + "etag": "W/\"da7a8b8c-d902-41e0-9e63-b809d37557d2\"", "location": "westus", + "properties": {"inboundNatRules": [], "resourceGuid": "c7bda57d-976b-49a7-bad6-7117dec543e9", + "frontendIPConfigurations": [{"etag": "W/\"da7a8b8c-d902-41e0-9e63-b809d37557d2\"", + "properties": {"subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, + "privateIPAllocationMethod": "Dynamic", "privateIPAddress": "10.0.0.4", "provisioningState": + "Succeeded"}, "name": "LoadBalancerFrontEnd", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd"}, + {"properties": {"subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, + "privateIPAllocationMethod": "static", "privateIPAddress": "10.0.0.99"}, "name": + "ipconfig2"}], "outboundNatRules": [], "loadBalancingRules": [], "inboundNatPools": + [], "backendAddressPools": [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool", + "etag": "W/\"da7a8b8c-d902-41e0-9e63-b809d37557d2\"", "name": "lb2bepool", "properties": + {"provisioningState": "Succeeded"}}], "provisioningState": "Succeeded", "probes": + []}, "tags": {}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Length: ['1752'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [63b3d2f8-13f1-11e7-89f6-a0b3ccf7272a] + x-ms-client-request-id: [4e74840f-3b2f-11e7-8251-a0b3ccf7272a] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"a3c71734-6f1d-4b15-934c-d5111e8b74b3\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"c7bda57d-976b-49a7-bad6-7117dec543e9\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\"\ ,\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_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/ipconfig2\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.99\",\r\n \"privateIPAllocationMethod\"\ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/959002b1-7600-4a92-b0bb-6d9fbc48891d?api-version=2017-03-01'] - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:01:54 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] - content-length: ['2609'] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/0c7f6242-9420-409e-80b8-00edd92b60a0?api-version=2017-03-01'] + cache-control: [no-cache] + content-length: ['2522'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:33:26 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 @@ -1056,25 +1047,26 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [63b3d2f8-13f1-11e7-89f6-a0b3ccf7272a] + x-ms-client-request-id: [4e74840f-3b2f-11e7-8251-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/959002b1-7600-4a92-b0bb-6d9fbc48891d?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0c7f6242-9420-409e-80b8-00edd92b60a0?api-version=2017-03-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-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:02:24 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] + cache-control: [no-cache] content-length: ['29'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:33:57 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] status: {code: 200, message: OK} - request: body: null @@ -1083,51 +1075,50 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [63b3d2f8-13f1-11e7-89f6-a0b3ccf7272a] + x-ms-client-request-id: [4e74840f-3b2f-11e7-8251-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"a3c71734-6f1d-4b15-934c-d5111e8b74b3\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"c7bda57d-976b-49a7-bad6-7117dec543e9\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\"\ ,\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_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/ipconfig2\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.99\",\r\n \"privateIPAllocationMethod\"\ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:02:25 GMT'] - ETag: [W/"303b4b18-1a0f-470b-952b-9933c035d771"] - 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] - content-length: ['2609'] + cache-control: [no-cache] + content-length: ['2522'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:33:57 GMT'] + etag: [W/"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533"] + 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 @@ -1136,51 +1127,50 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [76e60590-13f1-11e7-871a-a0b3ccf7272a] + x-ms-client-request-id: [60cb3000-3b2f-11e7-94d7-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"a3c71734-6f1d-4b15-934c-d5111e8b74b3\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"c7bda57d-976b-49a7-bad6-7117dec543e9\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\"\ ,\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_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/ipconfig2\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.99\",\r\n \"privateIPAllocationMethod\"\ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:02:26 GMT'] - ETag: [W/"303b4b18-1a0f-470b-952b-9933c035d771"] - 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] - content-length: ['2609'] + cache-control: [no-cache] + content-length: ['2522'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:33:58 GMT'] + etag: [W/"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533"] + 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 @@ -1189,120 +1179,119 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [7793b940-13f1-11e7-bda3-a0b3ccf7272a] + x-ms-client-request-id: [60e854ee-3b2f-11e7-990c-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"a3c71734-6f1d-4b15-934c-d5111e8b74b3\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"c7bda57d-976b-49a7-bad6-7117dec543e9\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\"\ ,\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_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/ipconfig2\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.99\",\r\n \"privateIPAllocationMethod\"\ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\ - ,\r\n \"etag\": \"W/\\\"303b4b18-1a0f-470b-952b-9933c035d771\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:02:27 GMT'] - ETag: [W/"303b4b18-1a0f-470b-952b-9933c035d771"] - 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] - content-length: ['2609'] + cache-control: [no-cache] + content-length: ['2522'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:33:57 GMT'] + etag: [W/"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533"] + 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: '{"tags": {}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2", - "etag": "W/\"303b4b18-1a0f-470b-952b-9933c035d771\"", "location": "westus", - "properties": {"loadBalancingRules": [], "resourceGuid": "a3c71734-6f1d-4b15-934c-d5111e8b74b3", - "provisioningState": "Succeeded", "backendAddressPools": [{"name": "lb2bepool", - "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool", - "etag": "W/\"303b4b18-1a0f-470b-952b-9933c035d771\"", "properties": {"provisioningState": - "Succeeded"}}], "inboundNatPools": [], "inboundNatRules": [], "frontendIPConfigurations": - [{"etag": "W/\"303b4b18-1a0f-470b-952b-9933c035d771\"", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd", - "name": "LoadBalancerFrontEnd", "properties": {"privateIPAddress": "10.0.0.4", - "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded", "subnet": - {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}}, - {"etag": "W/\"303b4b18-1a0f-470b-952b-9933c035d771\"", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/ipconfig2", - "name": "ipconfig2", "properties": {"privateIPAddress": "10.0.1.100", "privateIPAllocationMethod": - "static", "provisioningState": "Succeeded", "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet2"}}}], - "outboundNatRules": [], "probes": []}}' + body: !!python/unicode '{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2", + "etag": "W/\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\"", "location": "westus", + "properties": {"inboundNatRules": [], "resourceGuid": "c7bda57d-976b-49a7-bad6-7117dec543e9", + "frontendIPConfigurations": [{"etag": "W/\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\"", + "properties": {"subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, + "privateIPAllocationMethod": "Dynamic", "privateIPAddress": "10.0.0.4", "provisioningState": + "Succeeded"}, "name": "LoadBalancerFrontEnd", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd"}, + {"etag": "W/\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\"", "properties": {"subnet": + {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet2"}, + "privateIPAllocationMethod": "static", "privateIPAddress": "10.0.1.100", "provisioningState": + "Succeeded"}, "name": "ipconfig2", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/ipconfig2"}], + "outboundNatRules": [], "loadBalancingRules": [], "inboundNatPools": [], "backendAddressPools": + [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool", + "etag": "W/\"c3f2f55b-f1fb-4051-a26e-aa5f2cb6a533\"", "name": "lb2bepool", "properties": + {"provisioningState": "Succeeded"}}], "provisioningState": "Succeeded", "probes": + []}, "tags": {}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Length: ['2037'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [77dcb0d4-13f1-11e7-9c4b-a0b3ccf7272a] + x-ms-client-request-id: [610f16cf-3b2f-11e7-a043-a0b3ccf7272a] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ - ,\r\n \"etag\": \"W/\\\"5c761cc9-0ce3-4811-a31f-f75d142d5a9e\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ + ,\r\n \"etag\": \"W/\\\"d3bbcab2-4683-4eb6-9051-698896699f1b\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"a3c71734-6f1d-4b15-934c-d5111e8b74b3\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"c7bda57d-976b-49a7-bad6-7117dec543e9\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"5c761cc9-0ce3-4811-a31f-f75d142d5a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d3bbcab2-4683-4eb6-9051-698896699f1b\\\"\"\ ,\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_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/ipconfig2\"\ - ,\r\n \"etag\": \"W/\\\"5c761cc9-0ce3-4811-a31f-f75d142d5a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d3bbcab2-4683-4eb6-9051-698896699f1b\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.1.100\",\r\n \"privateIPAllocationMethod\"\ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet2\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\ - ,\r\n \"etag\": \"W/\\\"5c761cc9-0ce3-4811-a31f-f75d142d5a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d3bbcab2-4683-4eb6-9051-698896699f1b\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/6c2ce6d1-5655-4eaf-b813-7604450e379a?api-version=2017-03-01'] - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:02:27 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] - content-length: ['2610'] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/6c2f174c-4363-4692-ae7a-f890234450ba?api-version=2017-03-01'] + cache-control: [no-cache] + content-length: ['2523'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:33:58 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -1311,25 +1300,26 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [77dcb0d4-13f1-11e7-9c4b-a0b3ccf7272a] + x-ms-client-request-id: [610f16cf-3b2f-11e7-a043-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6c2ce6d1-5655-4eaf-b813-7604450e379a?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6c2f174c-4363-4692-ae7a-f890234450ba?api-version=2017-03-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-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:02:57 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - Strict-Transport-Security: [max-age=31536000; includeSubDomains] - Transfer-Encoding: [chunked] - Vary: [Accept-Encoding] + cache-control: [no-cache] content-length: ['29'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:34:28 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] status: {code: 200, message: OK} - request: body: null @@ -1338,51 +1328,50 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [77dcb0d4-13f1-11e7-9c4b-a0b3ccf7272a] + x-ms-client-request-id: [610f16cf-3b2f-11e7-a043-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ - ,\r\n \"etag\": \"W/\\\"5c761cc9-0ce3-4811-a31f-f75d142d5a9e\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ + ,\r\n \"etag\": \"W/\\\"d3bbcab2-4683-4eb6-9051-698896699f1b\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"a3c71734-6f1d-4b15-934c-d5111e8b74b3\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"c7bda57d-976b-49a7-bad6-7117dec543e9\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"5c761cc9-0ce3-4811-a31f-f75d142d5a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d3bbcab2-4683-4eb6-9051-698896699f1b\\\"\"\ ,\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_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/ipconfig2\"\ - ,\r\n \"etag\": \"W/\\\"5c761cc9-0ce3-4811-a31f-f75d142d5a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d3bbcab2-4683-4eb6-9051-698896699f1b\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.1.100\",\r\n \"privateIPAllocationMethod\"\ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet2\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\ - ,\r\n \"etag\": \"W/\\\"5c761cc9-0ce3-4811-a31f-f75d142d5a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d3bbcab2-4683-4eb6-9051-698896699f1b\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:02:59 GMT'] - ETag: [W/"5c761cc9-0ce3-4811-a31f-f75d142d5a9e"] - 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] - content-length: ['2610'] + cache-control: [no-cache] + content-length: ['2523'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:34:29 GMT'] + etag: [W/"d3bbcab2-4683-4eb6-9051-698896699f1b"] + 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 @@ -1391,50 +1380,49 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.6 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev] + User-Agent: [python/2.7.11 (Windows-10-10.0.15063) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [8b26a2ec-13f1-11e7-a009-a0b3ccf7272a] + x-ms-client-request-id: [7396bdcf-3b2f-11e7-bc5d-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2?api-version=2017-03-01 response: - body: {string: "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ - ,\r\n \"etag\": \"W/\\\"5c761cc9-0ce3-4811-a31f-f75d142d5a9e\\\"\",\r\n \ + body: {string: !!python/unicode "{\r\n \"name\": \"lb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2\"\ + ,\r\n \"etag\": \"W/\\\"d3bbcab2-4683-4eb6-9051-698896699f1b\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"a3c71734-6f1d-4b15-934c-d5111e8b74b3\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"c7bda57d-976b-49a7-bad6-7117dec543e9\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"5c761cc9-0ce3-4811-a31f-f75d142d5a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d3bbcab2-4683-4eb6-9051-698896699f1b\\\"\"\ ,\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_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ ipconfig2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/ipconfig2\"\ - ,\r\n \"etag\": \"W/\\\"5c761cc9-0ce3-4811-a31f-f75d142d5a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d3bbcab2-4683-4eb6-9051-698896699f1b\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.1.100\",\r\n \"privateIPAllocationMethod\"\ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer_ip_config/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet2\"\ \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_balancer_ip_config/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\ - ,\r\n \"etag\": \"W/\\\"5c761cc9-0ce3-4811-a31f-f75d142d5a9e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d3bbcab2-4683-4eb6-9051-698896699f1b\\\"\"\ ,\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\"\ - : [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"\ - version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\ - \n}"} + : [],\r\n \"inboundNatPools\": []\r\n }\r\n}"} headers: - Cache-Control: [no-cache] - Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 28 Mar 2017 20:02:59 GMT'] - ETag: [W/"5c761cc9-0ce3-4811-a31f-f75d142d5a9e"] - 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] - content-length: ['2610'] + cache-control: [no-cache] + content-length: ['2523'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 17 May 2017 18:34:29 GMT'] + etag: [W/"d3bbcab2-4683-4eb6-9051-698896699f1b"] + 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} version: 1 diff --git a/src/command_modules/azure-cli-network/tests/recordings/test_network_nic_convenience_commands.yaml b/src/command_modules/azure-cli-network/tests/recordings/test_network_nic_convenience_commands.yaml index cedeaedee8a..ef211723260 100644 --- a/src/command_modules/azure-cli-network/tests/recordings/test_network_nic_convenience_commands.yaml +++ b/src/command_modules/azure-cli-network/tests/recordings/test_network_nic_convenience_commands.yaml @@ -6,29 +6,30 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.5 - msrest_azure/0.4.7 computemanagementclient/0.33.1rc1 Azure-SDK-For-Python - AZURECLI/TEST/2.0.0+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 computemanagementclient/1.0.0rc1 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [1e94d154-0366-11e7-ad58-a0b3ccf7272a] + x-ms-client-request-id: [3272974c-3b31-11e7-ae8f-a0b3ccf7272a] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Compute/virtualMachines/conveniencevm1?api-version=2016-04-30-preview response: - body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"bbe529f1-cfc1-4f63-a55c-a125951c20f2\"\ + body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"e85f6f74-1467-4f0b-9536-9ae5ce2e5441\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\"\ - ,\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\ - \n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"name\": \"osdisk_unULYC6fgZ\",\r\n \"createOption\": \"FromImage\"\ + ,\r\n \"sku\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n\ + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ + \ \"name\": \"osdisk_ff5OKxFIjx\",\r\n \"createOption\": \"FromImage\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n\ \ \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Compute/disks/osdisk_unULYC6fgZ\"\ - \r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ - : {\r\n \"computerName\": \"conveniencevm1\",\r\n \"adminUsername\"\ - : \"myusername\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\"\ - : {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Compute/disks/osdisk_ff5OKxFIjx\"\ + \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ + : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"conveniencevm1\"\ + ,\r\n \"adminUsername\": \"myusername\",\r\n \"linuxConfiguration\"\ + : {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \ + \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\"\ + :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\"\ }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"\ Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"\ tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Compute/virtualMachines/conveniencevm1\"\ @@ -36,14 +37,14 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 07 Mar 2017 18:44:39 GMT'] + Date: ['Wed, 17 May 2017 18:46:59 GMT'] Expires: ['-1'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] Strict-Transport-Security: [max-age=31536000; includeSubDomains] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] - content-length: ['1554'] + content-length: ['1579'] status: {code: 200, message: OK} - request: body: null @@ -53,10 +54,11 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.5 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.0+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [1f05aea6-0366-11e7-9667-a0b3ccf7272a] + x-ms-client-request-id: [329dc3e8-3b31-11e7-9dba-a0b3ccf7272a] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/effectiveNetworkSecurityGroups?api-version=2017-03-01 response: @@ -152,16 +154,16 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 07 Mar 2017 18:44:45 GMT'] + Date: ['Wed, 17 May 2017 18:47:06 GMT'] Expires: ['-1'] - Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/21b35f43-36d3-49d9-b966-41c443f3976e?api-version=2017-03-01'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/59e5b0c7-2ba8-43a5-beae-a782b35ab87b?api-version=2017-03-01'] 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] content-length: ['6184'] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -170,12 +172,13 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.5 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.0+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [1f05aea6-0366-11e7-9667-a0b3ccf7272a] + x-ms-client-request-id: [329dc3e8-3b31-11e7-9dba-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/21b35f43-36d3-49d9-b966-41c443f3976e?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/59e5b0c7-2ba8-43a5-beae-a782b35ab87b?api-version=2017-03-01 response: body: {string: "{\r\n \"value\": [\r\n {\r\n \"networkSecurityGroup\"\ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"\ @@ -269,9 +272,9 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 07 Mar 2017 18:45:16 GMT'] + Date: ['Wed, 17 May 2017 18:47:36 GMT'] Expires: ['-1'] - Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/21b35f43-36d3-49d9-b966-41c443f3976e?api-version=2017-03-01'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/59e5b0c7-2ba8-43a5-beae-a782b35ab87b?api-version=2017-03-01'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] Strict-Transport-Security: [max-age=31536000; includeSubDomains] @@ -287,10 +290,11 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.5 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.0+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [3607ae10-0366-11e7-ac9a-a0b3ccf7272a] + x-ms-client-request-id: [494f0c00-3b31-11e7-b5e3-a0b3ccf7272a] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/effectiveRouteTable?api-version=2017-03-01 response: @@ -316,16 +320,16 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 07 Mar 2017 18:45:25 GMT'] + Date: ['Wed, 17 May 2017 18:47:44 GMT'] Expires: ['-1'] - Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/dc62a026-20d1-414a-8f54-a41640e0dd1f?api-version=2017-03-01'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/07a21e92-4f22-440d-b6c2-53339676d1f3?api-version=2017-03-01'] 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] content-length: ['1163'] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -334,12 +338,13 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.1 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.5 - msrest_azure/0.4.7 networkmanagementclient/0.30.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.0+dev] + User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.7 + msrest_azure/0.4.7 networkmanagementclient/1.0.0rc3 Azure-SDK-For-Python + AZURECLI/TEST/2.0.6+dev] accept-language: [en-US] - x-ms-client-request-id: [3607ae10-0366-11e7-ac9a-a0b3ccf7272a] + x-ms-client-request-id: [494f0c00-3b31-11e7-b5e3-a0b3ccf7272a] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/dc62a026-20d1-414a-8f54-a41640e0dd1f?api-version=2017-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/07a21e92-4f22-440d-b6c2-53339676d1f3?api-version=2017-03-01 response: body: {string: "{\r\n \"value\": [\r\n {\r\n \"source\": \"Default\"\ ,\r\n \"state\": \"Active\",\r\n \"addressPrefix\": [\r\n \ @@ -363,9 +368,9 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json; charset=utf-8] - Date: ['Tue, 07 Mar 2017 18:45:56 GMT'] + Date: ['Wed, 17 May 2017 18:48:15 GMT'] Expires: ['-1'] - Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/dc62a026-20d1-414a-8f54-a41640e0dd1f?api-version=2017-03-01'] + Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/07a21e92-4f22-440d-b6c2-53339676d1f3?api-version=2017-03-01'] Pragma: [no-cache] Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] Strict-Transport-Security: [max-age=31536000; includeSubDomains]