From b07f68c305019db131351fd1c058f1fd30086f77 Mon Sep 17 00:00:00 2001 From: Hovsep Date: Tue, 22 Jan 2019 15:18:00 -0800 Subject: [PATCH] Release 1.19 bugfixes (#573) * Fixed null ref exception in WebApps. * Fixing other bool cast issues in WebApps. * Fixed CosmosDB internal mapping issue. * Fixed build breaks and upgraded CR to the latest. --- Samples/Samples.csproj | 2 +- Tests/AzSdk.test.reference.props | 5 +- Tests/Fluent.Tests/CosmosDB/CosmosDBTest.cs | 59 + .../Fluent.Tests.CosmosDB/CosmosDBBugfix.json | 5066 +++++++++++++++++ src/AzSdk.reference.props | 2 +- .../AppService/WebAppBaseImpl.cs | 6 +- .../AppService/WebAppDiagnosticLogsImpl.cs | 14 +- .../AppService/WebAppSourceControlImpl.cs | 2 +- .../CosmosDB/CosmosDBAccountImpl.cs | 27 +- ...e.Management.ResourceManager.Fluent.csproj | 2 +- 10 files changed, 5163 insertions(+), 22 deletions(-) create mode 100644 Tests/Fluent.Tests/SessionRecords/Fluent.Tests.CosmosDB/CosmosDBBugfix.json diff --git a/Samples/Samples.csproj b/Samples/Samples.csproj index 8a27c60e9..27d730790 100644 --- a/Samples/Samples.csproj +++ b/Samples/Samples.csproj @@ -29,7 +29,7 @@ - + diff --git a/Tests/AzSdk.test.reference.props b/Tests/AzSdk.test.reference.props index dc3010fcd..edb441e98 100644 --- a/Tests/AzSdk.test.reference.props +++ b/Tests/AzSdk.test.reference.props @@ -1,7 +1,7 @@ - + @@ -11,4 +11,7 @@ + + netcoreapp2.0 + \ No newline at end of file diff --git a/Tests/Fluent.Tests/CosmosDB/CosmosDBTest.cs b/Tests/Fluent.Tests/CosmosDB/CosmosDBTest.cs index 61925f5d9..e50cd2508 100644 --- a/Tests/Fluent.Tests/CosmosDB/CosmosDBTest.cs +++ b/Tests/Fluent.Tests/CosmosDB/CosmosDBTest.cs @@ -5,6 +5,7 @@ using Fluent.Tests.Common; using Microsoft.Azure.Management.CosmosDB.Fluent; using Microsoft.Azure.Management.CosmosDB.Fluent.Models; +using Microsoft.Azure.Management.Network.Fluent.Models; using Microsoft.Azure.Management.ResourceManager.Fluent.Core; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; @@ -70,5 +71,63 @@ public void CosmosDBCRUD() } } + + + [Fact] + public void CosmosDBBugfix() + { + using (var context = FluentMockContext.Start(GetType().FullName)) + { + var dbName = TestUtilities.GenerateName("db"); + var saName = TestUtilities.GenerateName("dbsa"); + var rgName = TestUtilities.GenerateName("ddbRg"); + var manager = TestHelper.CreateCosmosDB(); + var resourceManager = TestHelper.CreateResourceManager(); + ICosmosDBAccount databaseAccount = null; + var azure = TestHelper.CreateRollupClient(); + + try + { + databaseAccount = manager.CosmosDBAccounts.Define(dbName) + .WithRegion(Region.USWest) + .WithNewResourceGroup(rgName) + .WithKind(DatabaseAccountKind.GlobalDocumentDB) + .WithSessionConsistency() + .WithWriteReplication(Region.USWest) + .WithReadReplication(Region.USCentral) + .WithIpRangeFilter("") + .Create(); + + // BUGFIX + var vn = azure.Networks.Define(dbName) + .WithRegion(Region.USWest) + .WithNewResourceGroup(rgName) + .WithAddressSpace("192.168.0.0/16") + .DefineSubnet("subnet1") + .WithAddressPrefix("192.168.1.0/24") + .WithAccessFromService(ServiceEndpointType.MicrosoftAzureCosmosDB) + .Attach() + .DefineSubnet("subnet2") + .WithAddressPrefix("192.168.2.0/24") + .WithAccessFromService(ServiceEndpointType.MicrosoftAzureCosmosDB) + .Attach() + .Create(); + + + databaseAccount.Update().WithVirtualNetwork(vn.Id, "Subnet1").Apply(); + databaseAccount.Update().WithVirtualNetwork(vn.Id, "Subnet1").Apply(); + databaseAccount.Update().WithVirtualNetwork(vn.Id, "Subnet1").Apply(); + // END of BUGFIX + } + finally + { + try + { + resourceManager.ResourceGroups.BeginDeleteByName(rgName); + } + catch { } + } + } + } } } diff --git a/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.CosmosDB/CosmosDBBugfix.json b/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.CosmosDB/CosmosDBBugfix.json new file mode 100644 index 000000000..91a1fd43e --- /dev/null +++ b/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.CosmosDB/CosmosDBBugfix.json @@ -0,0 +1,5066 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourcegroups/ddbRg3818?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlZ3JvdXBzL2RkYlJnMzgxOD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "320ef636-1e79-4f46-b134-226a3feb8cfc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.ResourceManager.Fluent.ResourceManagementClient/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 18:59:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "79570c81-00a2-41e4-9266-7a21fb5bead5" + ], + "x-ms-correlation-request-id": [ + "79570c81-00a2-41e4-9266-7a21fb5bead5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T185946Z:79570c81-00a2-41e4-9266-7a21fb5bead5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818\",\r\n \"name\": \"ddbRg3818\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourcegroups/ddbRg3818?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlZ3JvdXBzL2RkYlJnMzgxOD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea17d11a-4d02-4dee-bd00-e08a2bdbd0e5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.ResourceManager.Fluent.ResourceManagementClient/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:15:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "f74a73bf-5e28-481a-812c-d6286f1d53c2" + ], + "x-ms-correlation-request-id": [ + "f74a73bf-5e28-481a-812c-d6286f1d53c2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191558Z:f74a73bf-5e28-481a-812c-d6286f1d53c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818\",\r\n \"name\": \"ddbRg3818\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQ/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"westus\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"locationName\": \"centralus\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"ipRangeFilter\": \"\",\r\n \"capabilities\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec52b9f3-8ca1-4961-9f06-765c9654372d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "474" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 18:59:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "92e970cb-c436-4c43-80eb-c46de8406794" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T185949Z:92e970cb-c436-4c43-80eb-c46de8406794" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1140" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434\",\r\n \"name\": \"db3434\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Initializing\",\r\n \"ipRangeFilter\": \"\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Initializing\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Initializing\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Initializing\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQ/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxStalenessPrefix\": 100,\r\n \"maxIntervalInSeconds\": 5\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"ipRangeFilter\": \"\",\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"capabilities\": [],\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/Subnet1\"\r\n }\r\n ],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"west us\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb23f31b-f14f-4c4a-8d20-02012deac50b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "806" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:16:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e9fa2036-4fe6-4e0c-b9b0-f14580a7e183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e2b04aec-adb2-4db7-82a5-0ab2bd92932e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191614Z:e2b04aec-adb2-4db7-82a5-0ab2bd92932e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1818" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434\",\r\n \"name\": \"db3434\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://db3434.documents.azure.com:443/\",\r\n \"ipRangeFilter\": \"\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQ/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxStalenessPrefix\": 100,\r\n \"maxIntervalInSeconds\": 5\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"ipRangeFilter\": \"\",\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"capabilities\": [],\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbrg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/Subnet1\"\r\n }\r\n ],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"west us\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9f8d182-8480-4b44-afb1-7866eca0cf15" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "986" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:21:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "947434ad-6260-4fe4-ad0a-e932676e2c5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "5cd690ee-2aa1-416b-b8c8-70b4fdd39435" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192152Z:5cd690ee-2aa1-416b-b8c8-70b4fdd39435" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2010" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434\",\r\n \"name\": \"db3434\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://db3434.documents.azure.com:443/\",\r\n \"ipRangeFilter\": \"\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbrg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\",\r\n \"ignoreMissingVNetServiceEndpoint\": false\r\n }\r\n ],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQ/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxStalenessPrefix\": 100,\r\n \"maxIntervalInSeconds\": 5\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"ipRangeFilter\": \"\",\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"capabilities\": [],\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbrg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbrg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/Subnet1\"\r\n }\r\n ],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"west us\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c527a514-2722-4097-8d6e-19a7ab42af28" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1166" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:26:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e4c98bdf-977a-4eca-bb0a-9f22c9237fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "38019c67-e98c-4b1c-949a-d946622986c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192700Z:38019c67-e98c-4b1c-949a-d946622986c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2204" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434\",\r\n \"name\": \"db3434\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://db3434.documents.azure.com:443/\",\r\n \"ipRangeFilter\": \"\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbrg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\",\r\n \"ignoreMissingVNetServiceEndpoint\": false\r\n },\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbrg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\",\r\n \"ignoreMissingVNetServiceEndpoint\": false\r\n }\r\n ],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:00:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d122c6a4-11be-4e66-a08c-1f097aa6df4b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190019Z:d122c6a4-11be-4e66-a08c-1f097aa6df4b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:00:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ba5e34ad-012b-4f51-a646-3d79f189e0bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190049Z:ba5e34ad-012b-4f51-a646-3d79f189e0bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:01:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "6c571104-624d-440b-8265-6f5784dc729d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190119Z:6c571104-624d-440b-8265-6f5784dc729d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:01:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "490f7546-d7d8-4232-94f3-31025fc7cf91" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190149Z:490f7546-d7d8-4232-94f3-31025fc7cf91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:02:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "f9023dd5-ab2b-44c0-8903-d4469e743c8c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190219Z:f9023dd5-ab2b-44c0-8903-d4469e743c8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:02:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "446e4f6a-6b09-413c-ad56-5959b584ee2d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190249Z:446e4f6a-6b09-413c-ad56-5959b584ee2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:03:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "f11cf3ea-56ea-4ff8-9583-aff65489354e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190319Z:f11cf3ea-56ea-4ff8-9583-aff65489354e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:03:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "c8c29fda-e411-4c65-ae92-26bb640f7d58" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190350Z:c8c29fda-e411-4c65-ae92-26bb640f7d58" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:04:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "0cbaad39-d0b2-4937-ace7-8605e0057de2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190420Z:0cbaad39-d0b2-4937-ace7-8605e0057de2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:04:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "2f0f37b2-f82e-45ba-aeb4-b686dd4f3351" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190450Z:2f0f37b2-f82e-45ba-aeb4-b686dd4f3351" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:05:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "78057737-5295-463a-b5d1-46b12e9b06a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190520Z:78057737-5295-463a-b5d1-46b12e9b06a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:05:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "48a301e4-4224-430f-be64-3ea0b68d6f6f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190550Z:48a301e4-4224-430f-be64-3ea0b68d6f6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:06:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "9c5a08e8-a8fb-4ed9-b848-b910d795dcd2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190620Z:9c5a08e8-a8fb-4ed9-b848-b910d795dcd2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:06:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "ef6d6589-e093-4223-b476-3ce57b7dc611" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190650Z:ef6d6589-e093-4223-b476-3ce57b7dc611" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:07:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "5c7df12b-1dec-4aa9-a54e-3f55c6f2e9bb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190720Z:5c7df12b-1dec-4aa9-a54e-3f55c6f2e9bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:07:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "64f5128c-5de5-44cc-8859-aff2be57d713" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190750Z:64f5128c-5de5-44cc-8859-aff2be57d713" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:08:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "4fed3c75-6787-4c34-9b42-3cc29cd958e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190820Z:4fed3c75-6787-4c34-9b42-3cc29cd958e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:08:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "73d77cd9-bd9a-4516-a707-06f9013e5bbc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190851Z:73d77cd9-bd9a-4516-a707-06f9013e5bbc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:09:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "17722467-bbd8-44cb-aead-3342c52b5680" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190921Z:17722467-bbd8-44cb-aead-3342c52b5680" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:09:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "728b64d8-37cb-4d7b-9d42-abeba54f22b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T190951Z:728b64d8-37cb-4d7b-9d42-abeba54f22b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:10:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "f9f9727d-beb9-415e-a17a-731bacd665c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191021Z:f9f9727d-beb9-415e-a17a-731bacd665c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:10:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "82025ddb-11c6-4350-8cfc-6e12dee2dfd6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191051Z:82025ddb-11c6-4350-8cfc-6e12dee2dfd6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:11:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a940911c-f4fc-4e82-b495-4a3d0e60b709" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191121Z:a940911c-f4fc-4e82-b495-4a3d0e60b709" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:11:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "db3b108d-d804-40ef-ac2e-79d63a859da0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191151Z:db3b108d-d804-40ef-ac2e-79d63a859da0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:12:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "6c11f30d-0157-4dad-afaa-8ec19406687a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191221Z:6c11f30d-0157-4dad-afaa-8ec19406687a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:12:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "49d9710c-2a66-449c-a8b5-61c7fd43b265" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191252Z:49d9710c-2a66-449c-a8b5-61c7fd43b265" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:13:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "27a246b7-40ce-4c86-8bf1-861750e854b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191322Z:27a246b7-40ce-4c86-8bf1-861750e854b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:13:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "15592d49-eb8b-47d3-b0ab-6f8e69f6eb85" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191352Z:15592d49-eb8b-47d3-b0ab-6f8e69f6eb85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:14:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "a9d727d5-97a2-4877-837f-667ba11949e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191422Z:a9d727d5-97a2-4877-837f-667ba11949e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:14:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "8b33654f-61f4-4e8e-9477-07086441a41e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191452Z:8b33654f-61f4-4e8e-9477-07086441a41e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:15:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4f264a25-77a1-44fa-9703-d270c557c0c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "f542d8d9-9dc1-43ba-bc5d-3bd14fde8679" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191522Z:f542d8d9-9dc1-43ba-bc5d-3bd14fde8679" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy80ZjI2NGEyNS03N2ExLTQ0ZmEtOTcwMy1kMjcwYzU1N2MwYzY/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:15:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "ef51c24f-1648-49be-a82a-b06f40095411" + ], + "x-ms-correlation-request-id": [ + "ef51c24f-1648-49be-a82a-b06f40095411" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191552Z:ef51c24f-1648-49be-a82a-b06f40095411" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "33" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/4f264a25-77a1-44fa-9703-d270c557c0c6?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQ/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6dd92ffe-1533-4a97-b76c-1d1b39a63d31" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:15:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "90935a5e-e394-428a-9b33-22705889d2eb" + ], + "x-ms-correlation-request-id": [ + "90935a5e-e394-428a-9b33-22705889d2eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191557Z:90935a5e-e394-428a-9b33-22705889d2eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1824" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434\",\r\n \"name\": \"db3434\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db3434.documents.azure.com:443/\",\r\n \"ipRangeFilter\": \"\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQ/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91dc847f-6e40-4505-9b6b-d3ba15e0d306" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:21:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "c1290e52-dc82-40dc-9773-0d5ac17ca4e3" + ], + "x-ms-correlation-request-id": [ + "c1290e52-dc82-40dc-9773-0d5ac17ca4e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192150Z:c1290e52-dc82-40dc-9773-0d5ac17ca4e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2016" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434\",\r\n \"name\": \"db3434\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db3434.documents.azure.com:443/\",\r\n \"ipRangeFilter\": \"\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbrg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\",\r\n \"ignoreMissingVNetServiceEndpoint\": false\r\n }\r\n ],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQ/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69ec2406-8156-4eb3-b542-5391f916ccf2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:26:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "4952100f-7ab0-4385-bdac-d7609160b192" + ], + "x-ms-correlation-request-id": [ + "4952100f-7ab0-4385-bdac-d7609160b192" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192658Z:4952100f-7ab0-4385-bdac-d7609160b192" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2210" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434\",\r\n \"name\": \"db3434\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db3434.documents.azure.com:443/\",\r\n \"ipRangeFilter\": \"\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbrg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\",\r\n \"ignoreMissingVNetServiceEndpoint\": false\r\n },\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbrg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\",\r\n \"ignoreMissingVNetServiceEndpoint\": false\r\n }\r\n ],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQ/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d397749-436c-4622-9fdc-764c1d158ae7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:32:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "d39a3101-0e85-48d1-b09a-2b1603fd04b8" + ], + "x-ms-correlation-request-id": [ + "d39a3101-0e85-48d1-b09a-2b1603fd04b8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T193206Z:d39a3101-0e85-48d1-b09a-2b1603fd04b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2404" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434\",\r\n \"name\": \"db3434\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db3434.documents.azure.com:443/\",\r\n \"ipRangeFilter\": \"\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbrg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\",\r\n \"ignoreMissingVNetServiceEndpoint\": false\r\n },\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbrg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\",\r\n \"ignoreMissingVNetServiceEndpoint\": false\r\n },\r\n {\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbrg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\",\r\n \"ignoreMissingVNetServiceEndpoint\": false\r\n }\r\n ],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://db3434-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://db3434-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db3434-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"db3434-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.Network/virtualNetworks/db3434?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2RiMzQzND9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [\r\n {\r\n \"service\": \"Microsoft.AzureCosmosDB\",\r\n \"locations\": []\r\n }\r\n ]\r\n },\r\n \"name\": \"subnet1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"serviceEndpoints\": [\r\n {\r\n \"service\": \"Microsoft.AzureCosmosDB\",\r\n \"locations\": []\r\n }\r\n ]\r\n },\r\n \"name\": \"subnet2\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92951629-e430-4022-a32c-a984149684e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.Network.Fluent.NetworkManagementClient/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "818" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:15:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a8e680cb-7bae-4c22-ab16-2bc8b65812e7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/providers/Microsoft.Network/locations/westus/operations/a8e680cb-7bae-4c22-ab16-2bc8b65812e7?api-version=2018-04-01" + ], + "x-ms-correlation-request-id": [ + "c4b343df-f00d-49da-874a-fc76d125a349" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191559Z:c4b343df-f00d-49da-874a-fc76d125a349" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"db3434\",\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.Network/virtualNetworks/db3434\",\r\n \"etag\": \"W/\\\"b32ec689-59c1-4bc1-affe-a7ec44e6b609\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e72c77c4-b97f-40a7-ae8d-6296b7bd85d1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b32ec689-59c1-4bc1-affe-a7ec44e6b609\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n \"service\": \"Microsoft.AzureCosmosDB\",\r\n \"locations\": [\r\n \"*\"\r\n ]\r\n }\r\n ],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet2\",\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet2\",\r\n \"etag\": \"W/\\\"b32ec689-59c1-4bc1-affe-a7ec44e6b609\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n \"service\": \"Microsoft.AzureCosmosDB\",\r\n \"locations\": [\r\n \"*\"\r\n ]\r\n }\r\n ],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/providers/Microsoft.Network/locations/westus/operations/a8e680cb-7bae-4c22-ab16-2bc8b65812e7?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYThlNjgwY2ItN2JhZS00YzIyLWFiMTYtMmJjOGI2NTgxMmU3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.Network.Fluent.NetworkManagementClient/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:16:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "832c2fe6-7813-4a04-8e0b-424a97eea733" + ], + "x-ms-correlation-request-id": [ + "37aeb1df-678a-4a0a-92b8-b8f52c8237c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191602Z:37aeb1df-678a-4a0a-92b8-b8f52c8237c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/providers/Microsoft.Network/locations/westus/operations/a8e680cb-7bae-4c22-ab16-2bc8b65812e7?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYThlNjgwY2ItN2JhZS00YzIyLWFiMTYtMmJjOGI2NTgxMmU3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.Network.Fluent.NetworkManagementClient/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:16:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "7b33c2b5-66f0-465b-b80f-9114aac6ab43" + ], + "x-ms-correlation-request-id": [ + "bff91a24-8dad-4045-80e4-b327de446824" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191612Z:bff91a24-8dad-4045-80e4-b327de446824" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.Network/virtualNetworks/db3434?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2RiMzQzND9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.Network.Fluent.NetworkManagementClient/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:16:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"85b85ed7-7517-445c-b22a-78a1f010ab99\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c639f559-be74-4a96-8a5a-ce1109b99986" + ], + "x-ms-correlation-request-id": [ + "353c0ef1-51c9-47c0-b92c-eb1e7bb9a640" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191612Z:353c0ef1-51c9-47c0-b92c-eb1e7bb9a640" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"db3434\",\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.Network/virtualNetworks/db3434\",\r\n \"etag\": \"W/\\\"85b85ed7-7517-445c-b22a-78a1f010ab99\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e72c77c4-b97f-40a7-ae8d-6296b7bd85d1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet1\",\r\n \"etag\": \"W/\\\"85b85ed7-7517-445c-b22a-78a1f010ab99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"service\": \"Microsoft.AzureCosmosDB\",\r\n \"locations\": [\r\n \"*\"\r\n ]\r\n }\r\n ],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet2\",\r\n \"id\": \"/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.Network/virtualNetworks/db3434/subnets/subnet2\",\r\n \"etag\": \"W/\\\"85b85ed7-7517-445c-b22a-78a1f010ab99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"service\": \"Microsoft.AzureCosmosDB\",\r\n \"locations\": [\r\n \"*\"\r\n ]\r\n }\r\n ],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lOWZhMjAzNi00ZmU2LTRlMGMtYjliMC1mMTQ1ODBhN2UxODM/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:16:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e9fa2036-4fe6-4e0c-b9b0-f14580a7e183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "225470e0-1438-4b6f-a4db-f417b5d0eacb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191644Z:225470e0-1438-4b6f-a4db-f417b5d0eacb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lOWZhMjAzNi00ZmU2LTRlMGMtYjliMC1mMTQ1ODBhN2UxODM/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:17:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e9fa2036-4fe6-4e0c-b9b0-f14580a7e183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "9ad5321e-f13c-4563-a1d0-544e2bb7da59" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191714Z:9ad5321e-f13c-4563-a1d0-544e2bb7da59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lOWZhMjAzNi00ZmU2LTRlMGMtYjliMC1mMTQ1ODBhN2UxODM/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:17:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e9fa2036-4fe6-4e0c-b9b0-f14580a7e183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "c1b2a1d0-66db-4206-bc81-d916aeab06ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191745Z:c1b2a1d0-66db-4206-bc81-d916aeab06ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lOWZhMjAzNi00ZmU2LTRlMGMtYjliMC1mMTQ1ODBhN2UxODM/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:18:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e9fa2036-4fe6-4e0c-b9b0-f14580a7e183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "587dcc8f-203c-4464-b564-de6d7afb48d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191815Z:587dcc8f-203c-4464-b564-de6d7afb48d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lOWZhMjAzNi00ZmU2LTRlMGMtYjliMC1mMTQ1ODBhN2UxODM/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:18:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e9fa2036-4fe6-4e0c-b9b0-f14580a7e183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "a7a8ec05-a865-461f-be7b-7f68161e45f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191845Z:a7a8ec05-a865-461f-be7b-7f68161e45f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lOWZhMjAzNi00ZmU2LTRlMGMtYjliMC1mMTQ1ODBhN2UxODM/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:19:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e9fa2036-4fe6-4e0c-b9b0-f14580a7e183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "c41b609e-1242-4ea1-b55a-b3face29955f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191915Z:c41b609e-1242-4ea1-b55a-b3face29955f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lOWZhMjAzNi00ZmU2LTRlMGMtYjliMC1mMTQ1ODBhN2UxODM/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:19:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e9fa2036-4fe6-4e0c-b9b0-f14580a7e183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "202c4ad6-5dff-4c8a-bcf1-20154f0d090c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T191945Z:202c4ad6-5dff-4c8a-bcf1-20154f0d090c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lOWZhMjAzNi00ZmU2LTRlMGMtYjliMC1mMTQ1ODBhN2UxODM/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:20:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e9fa2036-4fe6-4e0c-b9b0-f14580a7e183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "cceb338c-a0c0-4888-85ac-ee610a8e4f76" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192015Z:cceb338c-a0c0-4888-85ac-ee610a8e4f76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lOWZhMjAzNi00ZmU2LTRlMGMtYjliMC1mMTQ1ODBhN2UxODM/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:20:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e9fa2036-4fe6-4e0c-b9b0-f14580a7e183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "4ed28486-cd9c-427f-a2ba-16709276dc57" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192045Z:4ed28486-cd9c-427f-a2ba-16709276dc57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lOWZhMjAzNi00ZmU2LTRlMGMtYjliMC1mMTQ1ODBhN2UxODM/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:21:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e9fa2036-4fe6-4e0c-b9b0-f14580a7e183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "5f3d5ce3-31f3-461c-9bbc-feb55743e8d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192115Z:5f3d5ce3-31f3-461c-9bbc-feb55743e8d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lOWZhMjAzNi00ZmU2LTRlMGMtYjliMC1mMTQ1ODBhN2UxODM/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:21:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "d65d3860-4aab-4dec-a28b-f2f57b91ea22" + ], + "x-ms-correlation-request-id": [ + "d65d3860-4aab-4dec-a28b-f2f57b91ea22" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192145Z:d65d3860-4aab-4dec-a28b-f2f57b91ea22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "33" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e9fa2036-4fe6-4e0c-b9b0-f14580a7e183?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy85NDc0MzRhZC02MjYwLTRmZTQtYWQwYS1lOTMyNjc2ZTJjNWU/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:22:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "947434ad-6260-4fe4-ad0a-e932676e2c5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "456496b0-ba49-4a8a-b469-0fa8d7c078de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192222Z:456496b0-ba49-4a8a-b469-0fa8d7c078de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy85NDc0MzRhZC02MjYwLTRmZTQtYWQwYS1lOTMyNjc2ZTJjNWU/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:22:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "947434ad-6260-4fe4-ad0a-e932676e2c5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "eb377d66-aa7e-40e1-9fe6-c93dc5f290eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192252Z:eb377d66-aa7e-40e1-9fe6-c93dc5f290eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy85NDc0MzRhZC02MjYwLTRmZTQtYWQwYS1lOTMyNjc2ZTJjNWU/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:23:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "947434ad-6260-4fe4-ad0a-e932676e2c5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "2026cd33-e2b8-4b1a-8bb6-8e30aa1e5ca6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192322Z:2026cd33-e2b8-4b1a-8bb6-8e30aa1e5ca6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy85NDc0MzRhZC02MjYwLTRmZTQtYWQwYS1lOTMyNjc2ZTJjNWU/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:23:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "947434ad-6260-4fe4-ad0a-e932676e2c5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "61bec371-18f6-4c63-996e-93a23483a70f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192353Z:61bec371-18f6-4c63-996e-93a23483a70f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy85NDc0MzRhZC02MjYwLTRmZTQtYWQwYS1lOTMyNjc2ZTJjNWU/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:24:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "947434ad-6260-4fe4-ad0a-e932676e2c5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "5b3fa203-5aef-40e6-a01b-26c9fdc26383" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192423Z:5b3fa203-5aef-40e6-a01b-26c9fdc26383" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy85NDc0MzRhZC02MjYwLTRmZTQtYWQwYS1lOTMyNjc2ZTJjNWU/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:24:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "947434ad-6260-4fe4-ad0a-e932676e2c5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "881b5a16-0f4e-4996-9e2e-6c3a9b29c0a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192453Z:881b5a16-0f4e-4996-9e2e-6c3a9b29c0a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy85NDc0MzRhZC02MjYwLTRmZTQtYWQwYS1lOTMyNjc2ZTJjNWU/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:25:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "947434ad-6260-4fe4-ad0a-e932676e2c5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "8b756004-cafe-4b24-b520-9a59e1af6231" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192523Z:8b756004-cafe-4b24-b520-9a59e1af6231" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy85NDc0MzRhZC02MjYwLTRmZTQtYWQwYS1lOTMyNjc2ZTJjNWU/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:25:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "947434ad-6260-4fe4-ad0a-e932676e2c5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "7a66ae81-d949-46d4-acfb-460e683fe63a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192553Z:7a66ae81-d949-46d4-acfb-460e683fe63a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy85NDc0MzRhZC02MjYwLTRmZTQtYWQwYS1lOTMyNjc2ZTJjNWU/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:26:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "947434ad-6260-4fe4-ad0a-e932676e2c5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "029b210a-9639-429a-b046-33485d98e233" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192623Z:029b210a-9639-429a-b046-33485d98e233" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy85NDc0MzRhZC02MjYwLTRmZTQtYWQwYS1lOTMyNjc2ZTJjNWU/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:26:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "b7bff665-cecc-41ac-a47c-ff759acccb02" + ], + "x-ms-correlation-request-id": [ + "b7bff665-cecc-41ac-a47c-ff759acccb02" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192653Z:b7bff665-cecc-41ac-a47c-ff759acccb02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "33" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/947434ad-6260-4fe4-ad0a-e932676e2c5e?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lNGM5OGJkZi05NzdhLTRlY2EtYmIwYS05ZjIyYzkyMzdmYjA/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:27:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e4c98bdf-977a-4eca-bb0a-9f22c9237fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "a8d4ebe3-3dc7-4a9f-9d14-ce2245bc0dd5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192730Z:a8d4ebe3-3dc7-4a9f-9d14-ce2245bc0dd5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lNGM5OGJkZi05NzdhLTRlY2EtYmIwYS05ZjIyYzkyMzdmYjA/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:27:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e4c98bdf-977a-4eca-bb0a-9f22c9237fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "bca90a38-e046-48d6-933a-82cf23d5a039" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192800Z:bca90a38-e046-48d6-933a-82cf23d5a039" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lNGM5OGJkZi05NzdhLTRlY2EtYmIwYS05ZjIyYzkyMzdmYjA/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:28:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e4c98bdf-977a-4eca-bb0a-9f22c9237fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "f8b8ffef-3dec-4fe7-af68-29bf42e4e737" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192830Z:f8b8ffef-3dec-4fe7-af68-29bf42e4e737" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lNGM5OGJkZi05NzdhLTRlY2EtYmIwYS05ZjIyYzkyMzdmYjA/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:28:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e4c98bdf-977a-4eca-bb0a-9f22c9237fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "d3a2b533-4a18-4578-bb57-d8489d90f125" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192900Z:d3a2b533-4a18-4578-bb57-d8489d90f125" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lNGM5OGJkZi05NzdhLTRlY2EtYmIwYS05ZjIyYzkyMzdmYjA/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:29:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e4c98bdf-977a-4eca-bb0a-9f22c9237fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "67d40c63-8c55-401b-be10-3dccbdd4ab37" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T192930Z:67d40c63-8c55-401b-be10-3dccbdd4ab37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lNGM5OGJkZi05NzdhLTRlY2EtYmIwYS05ZjIyYzkyMzdmYjA/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:30:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e4c98bdf-977a-4eca-bb0a-9f22c9237fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "a850813c-6aec-49b7-a243-1f03171368e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T193000Z:a850813c-6aec-49b7-a243-1f03171368e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lNGM5OGJkZi05NzdhLTRlY2EtYmIwYS05ZjIyYzkyMzdmYjA/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:30:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e4c98bdf-977a-4eca-bb0a-9f22c9237fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "13660b37-b043-449b-8ef7-d1212b1f97da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T193030Z:13660b37-b043-449b-8ef7-d1212b1f97da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lNGM5OGJkZi05NzdhLTRlY2EtYmIwYS05ZjIyYzkyMzdmYjA/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:31:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e4c98bdf-977a-4eca-bb0a-9f22c9237fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "c416c115-428b-4c80-bf4a-5247804dcf28" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T193101Z:c416c115-428b-4c80-bf4a-5247804dcf28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lNGM5OGJkZi05NzdhLTRlY2EtYmIwYS05ZjIyYzkyMzdmYjA/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:31:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e4c98bdf-977a-4eca-bb0a-9f22c9237fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "80666b34-a9b8-4c8a-a9a5-a59e1080c21c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T193131Z:80666b34-a9b8-4c8a-a9a5-a59e1080c21c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\",\r\n \"error\": {}\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlR3JvdXBzL2RkYlJnMzgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRvY3VtZW50REIvZGF0YWJhc2VBY2NvdW50cy9kYjM0MzQvb3BlcmF0aW9uUmVzdWx0cy9lNGM5OGJkZi05NzdhLTRlY2EtYmIwYS05ZjIyYzkyMzdmYjA/YXBpLXZlcnNpb249MjAxNS0wNC0wOA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.CosmosDB.Fluent.CosmosDB/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:32:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.1.0.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "616de5e1-5db0-4825-80d9-782083763de4" + ], + "x-ms-correlation-request-id": [ + "616de5e1-5db0-4825-80d9-782083763de4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T193201Z:616de5e1-5db0-4825-80d9-782083763de4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "33" + ], + "Content-Type": [ + "application/json" + ], + "Content-Location": [ + "https://management.documents.azure.com:450/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourceGroups/ddbRg3818/providers/Microsoft.DocumentDB/databaseAccounts/db3434/operationResults/e4c98bdf-977a-4eca-bb0a-9f22c9237fb0?api-version=2015-04-08" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/resourcegroups/ddbRg3818?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzU0OWY0NzUtZGVlOC00MjhjLWJiMTktODI5YTU1ZTUyZjc3L3Jlc291cmNlZ3JvdXBzL2RkYlJnMzgxOD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2b1f472-c4b5-4c66-8d1a-c9adf7fb1946" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/MicrosoftWindows10.0.17763", + "Microsoft.Azure.Management.ResourceManager.Fluent.ResourceManagementClient/1.18.0.0", + "MacAddressHash/e4628123c87fa74387b54a7576aec2b081b1aa0426f89ec66bb9b374e0bffe7b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 22 Jan 2019 19:32:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c549f475-dee8-428c-bb19-829a55e52f77/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EREJSRzM4MTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "46e12b17-62f1-4b8a-a379-1b04e3dfb315" + ], + "x-ms-correlation-request-id": [ + "46e12b17-62f1-4b8a-a379-1b04e3dfb315" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190122T193206Z:46e12b17-62f1-4b8a-a379-1b04e3dfb315" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "CosmosDBBugfix": [ + "db3434", + "dbsa6297", + "ddbRg3818" + ] + }, + "Variables": { + "ServicePrincipal": "f74ae42a-23b2-4924-ae42-7bd7777b84a6", + "AADTenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "SubscriptionId": "c549f475-dee8-428c-bb19-829a55e52f77" + } +} \ No newline at end of file diff --git a/src/AzSdk.reference.props b/src/AzSdk.reference.props index 302098f3f..20dfd18f2 100644 --- a/src/AzSdk.reference.props +++ b/src/AzSdk.reference.props @@ -1,7 +1,7 @@ - + diff --git a/src/ResourceManagement/AppService/WebAppBaseImpl.cs b/src/ResourceManagement/AppService/WebAppBaseImpl.cs index 1725d5286..6c7d16cef 100644 --- a/src/ResourceManagement/AppService/WebAppBaseImpl.cs +++ b/src/ResourceManagement/AppService/WebAppBaseImpl.cs @@ -90,15 +90,15 @@ internal SiteConfigResourceInner SiteConfig } } - public bool HttpsOnly => (bool) Inner.HttpsOnly; + public bool HttpsOnly => Inner.HttpsOnly ?? false; public FtpsState FtpsState => SiteConfig?.FtpsState; public IList VirtualApplications => SiteConfig?.VirtualApplications; - public bool Http20Enabled => (bool)SiteConfig?.Http20Enabled; + public bool Http20Enabled => (SiteConfig == null || SiteConfig.Http20Enabled == null) ? false : SiteConfig.Http20Enabled.Value; - public bool LocalMySqlEnabled => (bool)SiteConfig?.LocalMySqlEnabled; + public bool LocalMySqlEnabled => (SiteConfig == null || SiteConfig.LocalMySqlEnabled == null) ? false : SiteConfig.LocalMySqlEnabled.Value; public ScmType ScmType => SiteConfig?.ScmType; diff --git a/src/ResourceManagement/AppService/WebAppDiagnosticLogsImpl.cs b/src/ResourceManagement/AppService/WebAppDiagnosticLogsImpl.cs index 68dc5dbbf..3a9b7e208 100644 --- a/src/ResourceManagement/AppService/WebAppDiagnosticLogsImpl.cs +++ b/src/ResourceManagement/AppService/WebAppDiagnosticLogsImpl.cs @@ -110,13 +110,13 @@ public FluentImplT Attach() ///GENMHASH:A6C3024A0F426DA6CF8B71DEF91E0C7E:9FE8762C1B9FACF15AB88DA1BF9597EC public bool DetailedErrorMessages() { - return Inner.DetailedErrorMessages != null && (bool) Inner.DetailedErrorMessages.Enabled; + return Inner.DetailedErrorMessages != null && Inner.DetailedErrorMessages.Enabled.HasValue && Inner.DetailedErrorMessages.Enabled.Value; } ///GENMHASH:34AF806990F25131F59A6070440823E0:A95CC561E4445BE3E7269A572A6BFCB2 public bool FailedRequestsTracing() { - return Inner.FailedRequestsTracing != null && (bool) Inner.FailedRequestsTracing.Enabled; + return Inner.FailedRequestsTracing != null && Inner.FailedRequestsTracing.Enabled.HasValue && Inner.FailedRequestsTracing.Enabled.Value; } ///GENMHASH:ADA7023132C677B8E810845941E988DA:1964CEE67CCBAFF2114B8BBEF6D87DFA @@ -235,11 +235,11 @@ public WebAppDiagnosticLogsImpl WithLogRetentionDays(int retentionDays) { - if (Inner.HttpLogs != null && Inner.HttpLogs.FileSystem != null && (bool) Inner.HttpLogs.FileSystem.Enabled) + if (Inner.HttpLogs != null && Inner.HttpLogs.FileSystem != null && Inner.HttpLogs.FileSystem.Enabled.HasValue && Inner.HttpLogs.FileSystem.Enabled.Value) { Inner.HttpLogs.FileSystem.RetentionInDays = retentionDays; } - if (Inner.HttpLogs != null && Inner.HttpLogs.AzureBlobStorage != null && (bool)Inner.HttpLogs.AzureBlobStorage.Enabled) + if (Inner.HttpLogs != null && Inner.HttpLogs.AzureBlobStorage != null && Inner.HttpLogs.AzureBlobStorage.Enabled.HasValue && Inner.HttpLogs.AzureBlobStorage.Enabled.Value) { Inner.HttpLogs.AzureBlobStorage.RetentionInDays = retentionDays; } @@ -305,11 +305,11 @@ public WebAppDiagnosticLogsImpl WithUnlimitedLogRetentionDays() { - if (Inner.HttpLogs != null && Inner.HttpLogs.FileSystem != null && (bool) Inner.HttpLogs.FileSystem.Enabled) + if (Inner.HttpLogs != null && Inner.HttpLogs.FileSystem != null && Inner.HttpLogs.FileSystem.Enabled.HasValue && Inner.HttpLogs.FileSystem.Enabled.Value) { Inner.HttpLogs.FileSystem.RetentionInDays = 0; } - if (Inner.HttpLogs != null && Inner.HttpLogs.AzureBlobStorage != null && (bool) Inner.HttpLogs.FileSystem.Enabled) + if (Inner.HttpLogs != null && Inner.HttpLogs.AzureBlobStorage != null && Inner.HttpLogs.FileSystem.Enabled.HasValue && Inner.HttpLogs.FileSystem.Enabled.Value) { Inner.HttpLogs.AzureBlobStorage.RetentionInDays = 0; } @@ -319,7 +319,7 @@ public WebAppDiagnosticLogsImpl WithWebServerFileSystemQuotaInMB(int quotaInMB) { - if (Inner.HttpLogs != null && Inner.HttpLogs.FileSystem != null && (bool) Inner.HttpLogs.FileSystem.Enabled) + if (Inner.HttpLogs != null && Inner.HttpLogs.FileSystem != null && Inner.HttpLogs.FileSystem.Enabled.HasValue && Inner.HttpLogs.FileSystem.Enabled.Value) { Inner.HttpLogs.FileSystem.RetentionInMb = quotaInMB; } diff --git a/src/ResourceManagement/AppService/WebAppSourceControlImpl.cs b/src/ResourceManagement/AppService/WebAppSourceControlImpl.cs index 56cf37c74..08f9eeada 100644 --- a/src/ResourceManagement/AppService/WebAppSourceControlImpl.cs +++ b/src/ResourceManagement/AppService/WebAppSourceControlImpl.cs @@ -88,7 +88,7 @@ internal WebAppSourceControlImpl( { return null; } - return (bool) Inner.IsMercurial ? Fluent.RepositoryType.Mercurial : Fluent.RepositoryType.Git; + return (Inner.IsMercurial.HasValue && Inner.IsMercurial .Value) ? Fluent.RepositoryType.Mercurial : Fluent.RepositoryType.Git; } ///GENMHASH:AF58AEB1DD43D38B7FEDF266F4F40886:63F15AB00FF6315055DD4FFBCA6BE2EC diff --git a/src/ResourceManagement/CosmosDB/CosmosDBAccountImpl.cs b/src/ResourceManagement/CosmosDB/CosmosDBAccountImpl.cs index 5d8de24c4..11ba541fb 100644 --- a/src/ResourceManagement/CosmosDB/CosmosDBAccountImpl.cs +++ b/src/ResourceManagement/CosmosDB/CosmosDBAccountImpl.cs @@ -34,7 +34,7 @@ public partial class CosmosDBAccountImpl : private IList failoverPolicies; private bool hasFailoverPolicyChanges; private const int maxDelayDueToMissingFailovers = 5000 * 12 * 10; - private Dictionary virtualNetworkRulesMap; + private Dictionary> virtualNetworkRulesMap; public CosmosDBAccountImpl WithReadReplication(Region region) { @@ -108,7 +108,7 @@ private Models.DatabaseAccountCreateUpdateParametersInner CreateUpdateParameters createUpdateParametersInner.IsVirtualNetworkFilterEnabled = inner.IsVirtualNetworkFilterEnabled; if (virtualNetworkRulesMap != null) { - createUpdateParametersInner.VirtualNetworkRules = virtualNetworkRulesMap.Values.ToList(); + createUpdateParametersInner.VirtualNetworkRules = virtualNetworkRulesMap.Values.SelectMany(l => l).ToList(); virtualNetworkRulesMap = null; } this.AddLocationsForCreateUpdateParameters(createUpdateParametersInner, this.failoverPolicies); @@ -470,7 +470,12 @@ public CosmosDBAccountImpl WithVirtualNetwork(string virtualNetworkId, string su { this.Inner.IsVirtualNetworkFilterEnabled = true; string vnetId = virtualNetworkId + "/subnets/" + subnetName; - EnsureVirtualNetworkRules().Add(vnetId, new VirtualNetworkRule() { Id = vnetId }); + var internalMap = EnsureVirtualNetworkRules(); + if(!internalMap.ContainsKey(vnetId)) + { + internalMap.Add(vnetId, new List()); + } + internalMap[vnetId].Add(new VirtualNetworkRule() { Id = vnetId }); return this; } @@ -488,7 +493,11 @@ public CosmosDBAccountImpl WithVirtualNetworkRules(IList()); + } + this.virtualNetworkRulesMap[vnetRule.Id].Add(vnetRule); } } return this; @@ -514,16 +523,20 @@ public CosmosDBAccountImpl WithoutVirtualNetwork(string virtualNetworkId, string } ///GENMHASH:9DD08936D3B4E402E37AEF19676FBBE5:B75CF3B3BDA8D4D5A2337A51BF9E22A0 - private Dictionary EnsureVirtualNetworkRules() + private Dictionary> EnsureVirtualNetworkRules() { if (this.virtualNetworkRulesMap == null) { - this.virtualNetworkRulesMap = new Dictionary(); + this.virtualNetworkRulesMap = new Dictionary>(); if (this.Inner != null && this.Inner.VirtualNetworkRules != null) { foreach (var item in this.Inner.VirtualNetworkRules) { - this.virtualNetworkRulesMap.Add(item.Id, item); + if(!this.virtualNetworkRulesMap.ContainsKey(item.Id)) + { + this.virtualNetworkRulesMap.Add(item.Id, new List()); + } + this.virtualNetworkRulesMap[item.Id].Add(item); } } } diff --git a/src/ResourceManagement/ResourceManager/Microsoft.Azure.Management.ResourceManager.Fluent.csproj b/src/ResourceManagement/ResourceManager/Microsoft.Azure.Management.ResourceManager.Fluent.csproj index c0fef7be0..a89ee1634 100644 --- a/src/ResourceManagement/ResourceManager/Microsoft.Azure.Management.ResourceManager.Fluent.csproj +++ b/src/ResourceManagement/ResourceManager/Microsoft.Azure.Management.ResourceManager.Fluent.csproj @@ -15,7 +15,7 @@ - +