From 8a017cfc5461d745243b2216869c243940a60b10 Mon Sep 17 00:00:00 2001 From: craigtmc-msft <78387451+craigtmc-msft@users.noreply.github.com> Date: Mon, 22 Feb 2021 20:49:06 -0500 Subject: [PATCH 1/6] =?UTF-8?q?Update=20to=20latest=20CosmosDB=20client=20?= =?UTF-8?q?libraray=20and=20allow=20ServerVersion=20to=20=E2=80=A6=20(#142?= =?UTF-8?q?35)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update to latest CosmosDB client libraray and allow ServerVersion to be updated for CosmosDB accounts * Add 4.0 ServerVersion in argument completion * Added ServerVersion change description to ChangeLog.md * Adding backup interval and retention parameters to database account create and update cmdlets * Regenerating test record with the new parameters * PR feedback Co-authored-by: Kalyan Khandrika --- .../ScenarioTests/AccountTests.ps1 | 14 +- .../TestAccountRelatedCmdlets.json | 730 +++++++++--------- src/CosmosDB/CosmosDB/ChangeLog.md | 2 + .../CosmosDBAccount/NewAzCosmosDBAccount.cs | 16 +- .../NewOrUpdateAzCosmosDBAccount.cs | 10 + .../UpdateAzCosmosDBAccount.cs | 30 + src/CosmosDB/CosmosDB/Helpers/Constants.cs | 3 + .../Models/DatabaseAccount/PSApiProperties.cs | 2 +- .../Models/DatabaseAccount/PSBackupPolicy.cs | 72 ++ .../PSDatabaseAccountGetResults.cs | 5 + .../CosmosDB/help/New-AzCosmosDBAccount.md | 47 +- .../CosmosDB/help/Update-AzCosmosDBAccount.md | 54 +- 12 files changed, 599 insertions(+), 386 deletions(-) create mode 100644 src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSBackupPolicy.cs diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 b/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 index f7f67617f2ad..a3d51252110b 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 @@ -14,7 +14,7 @@ function Test-AccountRelatedCmdlets { - $rgName = "CosmosDBResourceGroup89" + $rgName = "CosmosDBResourceGroup91" $location = "East US" $locationlist = "East US", "West US" $locationlist2 = "East US", "UK South", "UK West", "South India" @@ -22,7 +22,7 @@ function Test-AccountRelatedCmdlets $resourceGroup = New-AzResourceGroup -ResourceGroupName $rgName -Location $location - $cosmosDBAccountName = "cosmosdb67" + $cosmosDBAccountName = "cosmosdb678901" #use an existing account with the following information for Account Update Operations $cosmosDBExistingAccountName = "dbaccount30" @@ -34,7 +34,7 @@ function Test-AccountRelatedCmdlets $networkAclBypass = "AzureServices" $networkAclBypassResourceId = "/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName" - $cosmosDBAccount = New-AzCosmosDBAccount -ResourceGroupName $rgName -Name $cosmosDBAccountName -DefaultConsistencyLevel "BoundedStaleness" -MaxStalenessIntervalInSeconds 10 -MaxStalenessPrefix 20 -Location $location -IpRule $IpRule -Tag $tags -EnableVirtualNetwork -EnableMultipleWriteLocations -EnableAutomaticFailover -ApiKind "MongoDB" -PublicNetworkAccess $publicNetworkAccess -EnableFreeTier 0 -EnableAnalyticalStorage 0 -ServerVersion "3.2" -NetworkAclBypass $NetworkAclBypass + $cosmosDBAccount = New-AzCosmosDBAccount -ResourceGroupName $rgName -Name $cosmosDBAccountName -DefaultConsistencyLevel "BoundedStaleness" -MaxStalenessIntervalInSeconds 10 -MaxStalenessPrefix 20 -Location $location -IpRule $IpRule -Tag $tags -EnableVirtualNetwork -EnableMultipleWriteLocations -EnableAutomaticFailover -ApiKind "MongoDB" -PublicNetworkAccess $publicNetworkAccess -EnableFreeTier 0 -EnableAnalyticalStorage 0 -ServerVersion "3.2" -NetworkAclBypass $NetworkAclBypass -BackupRetentionIntervalInHours 16 -BackupIntervalInMinutes 480 Assert-AreEqual $cosmosDBAccountName $cosmosDBAccount.Name Assert-AreEqual "BoundedStaleness" $cosmosDBAccount.ConsistencyPolicy.DefaultConsistencyLevel @@ -49,6 +49,8 @@ function Test-AccountRelatedCmdlets Assert-AreEqual $cosmosDBAccount.EnableFreeTier 0 Assert-AreEqual $cosmosDBAccount.NetworkAclBypass $NetworkAclBypass Assert-AreEqual $cosmosDBAccount.NetworkAclBypassResourceIds.Count 0 + Assert-AreEqual $cosmosDBAccount.BackupPolicy.BackupIntervalInMinutes 480 + Assert-AreEqual $cosmosDBAccount.BackupPolicy.BackupRetentionIntervalInHours 16 # create an existing database Try { @@ -58,9 +60,9 @@ function Test-AccountRelatedCmdlets Assert-AreEqual $_.Exception.Message ("Resource with Name " + $cosmosDBAccountName + " already exists.") } - $updatedCosmosDBAccount = Update-AzCosmosDBAccount -ResourceGroupName $existingResourceGroupName -Name $cosmosDBExistingAccountName -DefaultConsistencyLevel "BoundedStaleness" -MaxStalenessIntervalInSeconds 10 -MaxStalenessPrefix 20 -IpRule $IpRule -Tag $tags -EnableVirtualNetwork 1 -EnableAutomaticFailover 1 -PublicNetworkAccess $publicNetworkAccess -NetworkAclBypass $NetworkAclBypass -NetworkAclBypassResourceId $networkAclBypassResourceId + $updatedCosmosDBAccount = Update-AzCosmosDBAccount -ResourceGroupName $rgName -Name $cosmosDBAccountName -DefaultConsistencyLevel "BoundedStaleness" -MaxStalenessIntervalInSeconds 10 -MaxStalenessPrefix 20 -IpRule $IpRule -Tag $tags -EnableVirtualNetwork 1 -EnableAutomaticFailover 1 -PublicNetworkAccess $publicNetworkAccess -NetworkAclBypass $NetworkAclBypass -NetworkAclBypassResourceId $networkAclBypassResourceId -BackupRetentionIntervalInHours 8 -BackupIntervalInMinutes 240 - Assert-AreEqual $cosmosDBExistingAccountName $updatedCosmosDBAccount.Name + Assert-AreEqual $cosmosDBAccountName $updatedCosmosDBAccount.Name Assert-AreEqual "BoundedStaleness" $updatedCosmosDBAccount.ConsistencyPolicy.DefaultConsistencyLevel Assert-AreEqual 10 $updatedCosmosDBAccount.ConsistencyPolicy.MaxIntervalInSeconds Assert-AreEqual 20 $updatedCosmosDBAccount.ConsistencyPolicy.MaxStalenessPrefix @@ -69,6 +71,8 @@ function Test-AccountRelatedCmdlets Assert-AreEqual $updatedCosmosDBAccount.PublicNetworkAccess $publicNetworkAccess Assert-AreEqual $updatedCosmosDBAccount.NetworkAclBypass $NetworkAclBypass Assert-AreEqual $updatedCosmosDBAccount.NetworkAclBypassResourceIds.Count 1 + Assert-AreEqual $updatedCosmosDBAccount.BackupPolicy.BackupIntervalInMinutes 240 + Assert-AreEqual $updatedCosmosDBAccount.BackupPolicy.BackupRetentionIntervalInHours 8 $cosmosDBAccountKey = Get-AzCosmosDBAccountKey -Name $cosmosDBAccountName -ResourceGroupName $rgname Assert-NotNull $cosmosDBAccountKey diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdlets.json index fe061050f68c..1d25104d8814 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdlets.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourcegroups/CosmosDBResourceGroup89?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlZ3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/CosmosDBResourceGroup91?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlZ3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dffe51a8-8eab-41f0-94b3-e66a37c84350" + "354fa8cb-14fa-4e84-a494-6a968e6c610a" ], "Accept-Language": [ "en-US" @@ -15,7 +15,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "f315f66f-f0bc-4fdd-8faa-4b55d070236c" + "8925a61c-2d97-4567-9924-1daacb3aecc2" ], "x-ms-correlation-request-id": [ - "f315f66f-f0bc-4fdd-8faa-4b55d070236c" + "8925a61c-2d97-4567-9924-1daacb3aecc2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203105Z:f315f66f-f0bc-4fdd-8faa-4b55d070236c" + "WESTCENTRALUS:20210222T231732Z:8925a61c-2d97-4567-9924-1daacb3aecc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:31:04 GMT" + "Mon, 22 Feb 2021 23:17:32 GMT" ], "Content-Length": [ "199" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89\",\r\n \"name\": \"CosmosDBResourceGroup89\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91\",\r\n \"name\": \"CosmosDBResourceGroup91\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7a0fb8d-acff-445e-be12-5fa5519a8735" + "b8965d3d-110a-47d7-9ec8-c7e3f6539a7b" ], "Accept-Language": [ "en-US" @@ -81,7 +81,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "31e82357-6185-4674-a13b-9793498c8d3f" + "1976579a-d332-4a2f-a032-bddc0f3bd1fd" ], "x-ms-correlation-request-id": [ - "31e82357-6185-4674-a13b-9793498c8d3f" + "1976579a-d332-4a2f-a032-bddc0f3bd1fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203105Z:31e82357-6185-4674-a13b-9793498c8d3f" + "WESTCENTRALUS:20210222T231733Z:1976579a-d332-4a2f-a032-bddc0f3bd1fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:31:05 GMT" + "Mon, 22 Feb 2021 23:17:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,25 +120,25 @@ "-1" ], "Content-Length": [ - "243" + "247" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/cosmosdb67' under resource group 'CosmosDBResourceGroup89' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/cosmosdb678901' under resource group 'CosmosDBResourceGroup91' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7a0fb8d-acff-445e-be12-5fa5519a8735" + "b8965d3d-110a-47d7-9ec8-c7e3f6539a7b" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -159,41 +159,41 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "c43df612-5d58-4235-99ee-7492f08774c4" + "86ec07d0-847f-4fe8-994e-4e4f99713543" ], "x-ms-correlation-request-id": [ - "c43df612-5d58-4235-99ee-7492f08774c4" + "86ec07d0-847f-4fe8-994e-4e4f99713543" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203213Z:c43df612-5d58-4235-99ee-7492f08774c4" + "WESTCENTRALUS:20210222T231838Z:86ec07d0-847f-4fe8-994e-4e4f99713543" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:13 GMT" + "Mon, 22 Feb 2021 23:18:38 GMT" ], "Content-Length": [ - "2245" + "2233" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67\",\r\n \"name\": \"cosmosdb67\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T20:31:42.3690649Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb67.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"5f724c54-8236-4286-a8e6-4b65171aa7ec\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 1,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901\",\r\n \"name\": \"cosmosdb678901\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-22T23:18:06.0539326Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678901.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"2d52a9e1-0cd0-4fbe-ba8f-a3d15ee1e584\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"networkAclBypass\": 1,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63537bd1-3db0-4846-983f-5ca0734ae333" + "98d42ac8-1c8b-4667-8939-8f4165404f2a" ], "Accept-Language": [ "en-US" @@ -201,7 +201,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -222,41 +222,41 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "2d1bc2a5-2797-4f32-9867-3e5eba95109f" + "3cb6845e-32aa-4e0f-a94d-92cb125f8d47" ], "x-ms-correlation-request-id": [ - "2d1bc2a5-2797-4f32-9867-3e5eba95109f" + "3cb6845e-32aa-4e0f-a94d-92cb125f8d47" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203213Z:2d1bc2a5-2797-4f32-9867-3e5eba95109f" + "WESTCENTRALUS:20210222T231838Z:3cb6845e-32aa-4e0f-a94d-92cb125f8d47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:13 GMT" + "Mon, 22 Feb 2021 23:18:38 GMT" ], "Content-Length": [ - "2245" + "2233" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67\",\r\n \"name\": \"cosmosdb67\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T20:31:42.3690649Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb67.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"5f724c54-8236-4286-a8e6-4b65171aa7ec\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 1,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901\",\r\n \"name\": \"cosmosdb678901\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-22T23:18:06.0539326Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678901.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"2d52a9e1-0cd0-4fbe-ba8f-a3d15ee1e584\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"networkAclBypass\": 1,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"kind\": \"MongoDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": true,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableFreeTier\": false,\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"enableAnalyticalStorage\": false,\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n }\r\n}", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7a0fb8d-acff-445e-be12-5fa5519a8735" + "f0e9ae83-e875-44c9-97ac-e7e3dca4dc5a" ], "Accept-Language": [ "en-US" @@ -264,14 +264,8 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1022" ] }, "ResponseHeaders": { @@ -281,15 +275,6 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/operationResults/84c5fe82-0e4d-423a-937d-a4cdd966be6f?api-version=2021-01-15" - ], - "x-ms-request-id": [ - "84c5fe82-0e4d-423a-937d-a4cdd966be6f" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84c5fe82-0e4d-423a-937d-a4cdd966be6f?api-version=2021-01-15" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -299,44 +284,47 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "b02c0f1a-91b6-4d87-b15b-92ab7d3efb25" ], "x-ms-correlation-request-id": [ - "f1073fb2-5d63-48a9-a4dd-62193f09ade1" + "b02c0f1a-91b6-4d87-b15b-92ab7d3efb25" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203113Z:f1073fb2-5d63-48a9-a4dd-62193f09ade1" + "WESTCENTRALUS:20210222T231838Z:b02c0f1a-91b6-4d87-b15b-92ab7d3efb25" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:31:12 GMT" + "Mon, 22 Feb 2021 23:18:38 GMT" ], "Content-Length": [ - "1935" + "2233" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67\",\r\n \"name\": \"cosmosdb67\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T20:31:11.3318186Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"5f724c54-8236-4286-a8e6-4b65171aa7ec\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 1,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901\",\r\n \"name\": \"cosmosdb678901\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-22T23:18:06.0539326Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678901.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"2d52a9e1-0cd0-4fbe-ba8f-a3d15ee1e584\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"networkAclBypass\": 1,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84c5fe82-0e4d-423a-937d-a4cdd966be6f?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODRjNWZlODItMGU0ZC00MjNhLTkzN2QtYTRjZGQ5NjZiZTZmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7a0fb8d-acff-445e-be12-5fa5519a8735" + "f0e9ae83-e875-44c9-97ac-e7e3dca4dc5a" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -357,47 +345,56 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-request-id": [ - "1a68a3d0-d585-4f44-920a-e9307500f35b" + "0161886f-b4b1-419f-a10f-3cfd48887ca0" ], "x-ms-correlation-request-id": [ - "1a68a3d0-d585-4f44-920a-e9307500f35b" + "0161886f-b4b1-419f-a10f-3cfd48887ca0" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203143Z:1a68a3d0-d585-4f44-920a-e9307500f35b" + "WESTCENTRALUS:20210222T231912Z:0161886f-b4b1-419f-a10f-3cfd48887ca0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:31:42 GMT" + "Mon, 22 Feb 2021 23:19:11 GMT" ], "Content-Length": [ - "21" + "2329" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901\",\r\n \"name\": \"cosmosdb678901\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-22T23:18:06.0539326Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678901.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"2d52a9e1-0cd0-4fbe-ba8f-a3d15ee1e584\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"networkAclBypass\": 1,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84c5fe82-0e4d-423a-937d-a4cdd966be6f?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODRjNWZlODItMGU0ZC00MjNhLTkzN2QtYTRjZGQ5NjZiZTZmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"kind\": \"MongoDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": true,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableFreeTier\": false,\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"enableAnalyticalStorage\": false,\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16\r\n }\r\n },\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b7a0fb8d-acff-445e-be12-5fa5519a8735" + "b8965d3d-110a-47d7-9ec8-c7e3f6539a7b" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1211" ] }, "ResponseHeaders": { @@ -407,6 +404,15 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/operationResults/94576f5d-1307-4168-96f0-631e9c2e52b3?api-version=2021-01-15" + ], + "x-ms-request-id": [ + "94576f5d-1307-4168-96f0-631e9c2e52b3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94576f5d-1307-4168-96f0-631e9c2e52b3?api-version=2021-01-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -416,50 +422,44 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "bf992cd2-a9e6-4dcc-8a63-64c70fc90798" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "bf992cd2-a9e6-4dcc-8a63-64c70fc90798" + "dbdee653-05e6-48e5-aaf3-5a26657f654d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203213Z:bf992cd2-a9e6-4dcc-8a63-64c70fc90798" + "WESTCENTRALUS:20210222T231737Z:dbdee653-05e6-48e5-aaf3-5a26657f654d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:13 GMT" + "Mon, 22 Feb 2021 23:17:36 GMT" ], "Content-Length": [ - "22" + "1906" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901\",\r\n \"name\": \"cosmosdb678901\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-22T23:17:35.7840541Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"2d52a9e1-0cd0-4fbe-ba8f-a3d15ee1e584\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"networkAclBypass\": 1,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94576f5d-1307-4168-96f0-631e9c2e52b3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTQ1NzZmNWQtMTMwNy00MTY4LTk2ZjAtNjMxZTljMmU1MmIzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc82877-4afe-4019-b8b6-a7e569dc7330" - ], - "Accept-Language": [ - "en-US" + "b8965d3d-110a-47d7-9ec8-c7e3f6539a7b" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -480,46 +480,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-request-id": [ - "76d6529b-9b93-4f34-9bec-e38d4cfa09c6" + "6e5e8e5f-7c82-492c-b4fa-1e88a069d5ce" ], "x-ms-correlation-request-id": [ - "76d6529b-9b93-4f34-9bec-e38d4cfa09c6" + "6e5e8e5f-7c82-492c-b4fa-1e88a069d5ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203214Z:76d6529b-9b93-4f34-9bec-e38d4cfa09c6" + "WESTCENTRALUS:20210222T231807Z:6e5e8e5f-7c82-492c-b4fa-1e88a069d5ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:14 GMT" + "Mon, 22 Feb 2021 23:18:07 GMT" ], "Content-Length": [ - "2310" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30\",\r\n \"name\": \"dbaccount30\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T19:09:26.6774488Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount30.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"78bf6309-5896-4fb5-8b7d-9c33093eed5e\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 1,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94576f5d-1307-4168-96f0-631e9c2e52b3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTQ1NzZmNWQtMTMwNy00MTY4LTk2ZjAtNjMxZTljMmU1MmIzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc82877-4afe-4019-b8b6-a7e569dc7330" + "b8965d3d-110a-47d7-9ec8-c7e3f6539a7b" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -540,41 +540,41 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-request-id": [ - "8558d06c-6be8-4fdd-95e0-828e6cad3641" + "9a97f5f6-cd64-4b7f-b686-0739ee7eaca2" ], "x-ms-correlation-request-id": [ - "8558d06c-6be8-4fdd-95e0-828e6cad3641" + "9a97f5f6-cd64-4b7f-b686-0739ee7eaca2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203248Z:8558d06c-6be8-4fdd-95e0-828e6cad3641" + "WESTCENTRALUS:20210222T231838Z:9a97f5f6-cd64-4b7f-b686-0739ee7eaca2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:47 GMT" + "Mon, 22 Feb 2021 23:18:37 GMT" ], "Content-Length": [ - "2310" + "22" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30\",\r\n \"name\": \"dbaccount30\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T19:09:26.6774488Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount30.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"78bf6309-5896-4fb5-8b7d-9c33093eed5e\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 1,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8\r\n }\r\n },\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc82877-4afe-4019-b8b6-a7e569dc7330" + "f0e9ae83-e875-44c9-97ac-e7e3dca4dc5a" ], "Accept-Language": [ "en-US" @@ -582,14 +582,14 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "892" + "1076" ] }, "ResponseHeaders": { @@ -600,13 +600,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30/operationResults/28e4526f-1632-484c-92bd-c548cdb3b8e8?api-version=2021-01-15" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/operationResults/8662a001-5f9d-4ae4-8356-01fd6b26191a?api-version=2021-01-15" ], "x-ms-request-id": [ - "28e4526f-1632-484c-92bd-c548cdb3b8e8" + "8662a001-5f9d-4ae4-8356-01fd6b26191a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/28e4526f-1632-484c-92bd-c548cdb3b8e8?api-version=2021-01-15" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8662a001-5f9d-4ae4-8356-01fd6b26191a?api-version=2021-01-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -621,40 +621,40 @@ "1198" ], "x-ms-correlation-request-id": [ - "a584d9bf-56e2-4be2-9777-17d920bd18e6" + "2574b0de-1e03-440e-aa38-8249912ab63e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203217Z:a584d9bf-56e2-4be2-9777-17d920bd18e6" + "WESTCENTRALUS:20210222T231841Z:2574b0de-1e03-440e-aa38-8249912ab63e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:17 GMT" + "Mon, 22 Feb 2021 23:18:41 GMT" ], "Content-Length": [ - "2306" + "2229" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30\",\r\n \"name\": \"dbaccount30\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T19:09:26.6774488Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://dbaccount30.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"78bf6309-5896-4fb5-8b7d-9c33093eed5e\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 1,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901\",\r\n \"name\": \"cosmosdb678901\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-22T23:18:06.0539326Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://cosmosdb678901.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"2d52a9e1-0cd0-4fbe-ba8f-a3d15ee1e584\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"networkAclBypass\": 1,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/28e4526f-1632-484c-92bd-c548cdb3b8e8?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzI4ZTQ1MjZmLTE2MzItNDg0Yy05MmJkLWM1NDhjZGIzYjhlOD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8662a001-5f9d-4ae4-8356-01fd6b26191a?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODY2MmEwMDEtNWY5ZC00YWU0LTgzNTYtMDFmZDZiMjYxOTFhP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc82877-4afe-4019-b8b6-a7e569dc7330" + "f0e9ae83-e875-44c9-97ac-e7e3dca4dc5a" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -675,22 +675,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "e05b9aab-72d9-4199-967e-53fa669fb333" + "e7f22b30-c76a-4a97-927f-90a3c7d24ccc" ], "x-ms-correlation-request-id": [ - "e05b9aab-72d9-4199-967e-53fa669fb333" + "e7f22b30-c76a-4a97-927f-90a3c7d24ccc" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203247Z:e05b9aab-72d9-4199-967e-53fa669fb333" + "WESTCENTRALUS:20210222T231912Z:e7f22b30-c76a-4a97-927f-90a3c7d24ccc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:47 GMT" + "Mon, 22 Feb 2021 23:19:11 GMT" ], "Content-Length": [ "22" @@ -703,13 +703,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/listKeys?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/listKeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70e1251e-b987-4ada-b9db-d88e475ee72f" + "66113208-bfa8-4ad4-8ddc-5e6c930c2701" ], "Accept-Language": [ "en-US" @@ -717,7 +717,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -741,19 +741,19 @@ "1199" ], "x-ms-request-id": [ - "e767e29c-14f6-4aa8-9958-c78278da7044" + "27523bad-12dc-4f1c-ba8a-14f4d1eee8c1" ], "x-ms-correlation-request-id": [ - "e767e29c-14f6-4aa8-9958-c78278da7044" + "27523bad-12dc-4f1c-ba8a-14f4d1eee8c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203248Z:e767e29c-14f6-4aa8-9958-c78278da7044" + "WESTCENTRALUS:20210222T231912Z:27523bad-12dc-4f1c-ba8a-14f4d1eee8c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:47 GMT" + "Mon, 22 Feb 2021 23:19:11 GMT" ], "Content-Length": [ "461" @@ -762,17 +762,17 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"eEe9d4fbKlKr9L41rpM9wS8h10WDc8oyU8pez2ntu0Pv0iJ5xSaQmskFYpAZ9dgbSBAJTvtfogFWSRvDd1WSaA==\",\r\n \"secondaryMasterKey\": \"2u3G72wiGbq9xEoKKCgh3BRUIsgVC3mrCT0l77XMtzh11epMlQY83J1I1us14DvtOyV64H4estww963MqhdQKA==\",\r\n \"primaryReadonlyMasterKey\": \"F2kGfHbX0yhQifCJyfWhrbtVxmGigALDYnb2co9caFwCuaOeeZYPpboxWXubORkBfMgsOMWTsq3uFhJcRlPcbA==\",\r\n \"secondaryReadonlyMasterKey\": \"WEYKavt1N8Tx9PWKHxjq67u7gd7FvtDk7plrCfj4zld9lguIv8m5ZkZuX3pBCkVvc2FGZKFeJXIetcUxs2U4mg==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"k8VLd1qbxMXK2uZDRn3vFL8XkwGYLqVwT3XX3VksyXCZoj4t8H8EWJQxWRQIPXb9LfnPe2KwIEJqBxATVlsk7g==\",\r\n \"secondaryMasterKey\": \"1wtwWkHuHEZ9mIgf5ghW9SXd1RREwZrlCvVeeoWL5kGIjM0LPmTlbqeXODwc0KgsaP03m7jNADPk4QIYXXNp5Q==\",\r\n \"primaryReadonlyMasterKey\": \"mkufBW2hSgLd4aJ7v2EBaqUiYbF7NCVJAh2SHVeDlRamaZJRHLIfv23mVK5wj6rL49B4K0y3KqhohbjN8LzvFg==\",\r\n \"secondaryReadonlyMasterKey\": \"zGY1L8BZq9BpNlJNAn9xDX13ZtbEhpONHnACcLXA5wjAT4kOIYKouqfyu9PiLzph9iaUIBhWE3vZ6H5A4YsOzA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/listKeys?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/listKeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07e2ad93-dbbb-4b41-9521-37158e9a9f80" + "126e77bb-709b-4ba2-8d5b-20b2cd0d1dd2" ], "Accept-Language": [ "en-US" @@ -780,7 +780,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -804,19 +804,19 @@ "1195" ], "x-ms-request-id": [ - "5a37b0ea-c266-481c-ae25-44f49610e3db" + "fcf76666-4cc9-45e8-8ad4-69e7a20c6104" ], "x-ms-correlation-request-id": [ - "5a37b0ea-c266-481c-ae25-44f49610e3db" + "fcf76666-4cc9-45e8-8ad4-69e7a20c6104" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203321Z:5a37b0ea-c266-481c-ae25-44f49610e3db" + "WESTCENTRALUS:20210222T231945Z:fcf76666-4cc9-45e8-8ad4-69e7a20c6104" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:33:20 GMT" + "Mon, 22 Feb 2021 23:19:45 GMT" ], "Content-Length": [ "461" @@ -825,17 +825,17 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"E5jYTL5tZs9Jga69Lgr3BzIVkutQwslxIoWKSDZ37HUbv5glJ6nPuWVVMQLN0VWphgeLdIJEqlXjm0Re3ADcqg==\",\r\n \"secondaryMasterKey\": \"2u3G72wiGbq9xEoKKCgh3BRUIsgVC3mrCT0l77XMtzh11epMlQY83J1I1us14DvtOyV64H4estww963MqhdQKA==\",\r\n \"primaryReadonlyMasterKey\": \"F2kGfHbX0yhQifCJyfWhrbtVxmGigALDYnb2co9caFwCuaOeeZYPpboxWXubORkBfMgsOMWTsq3uFhJcRlPcbA==\",\r\n \"secondaryReadonlyMasterKey\": \"WEYKavt1N8Tx9PWKHxjq67u7gd7FvtDk7plrCfj4zld9lguIv8m5ZkZuX3pBCkVvc2FGZKFeJXIetcUxs2U4mg==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"1KpdXybVC9mjBGoh1gRxGHgPh6xuXwoFUrMwsIKD7lwCDxl5kjrwBwgRopORrGELPL71z99qwqIDfU9IlcxF9g==\",\r\n \"secondaryMasterKey\": \"1wtwWkHuHEZ9mIgf5ghW9SXd1RREwZrlCvVeeoWL5kGIjM0LPmTlbqeXODwc0KgsaP03m7jNADPk4QIYXXNp5Q==\",\r\n \"primaryReadonlyMasterKey\": \"mkufBW2hSgLd4aJ7v2EBaqUiYbF7NCVJAh2SHVeDlRamaZJRHLIfv23mVK5wj6rL49B4K0y3KqhohbjN8LzvFg==\",\r\n \"secondaryReadonlyMasterKey\": \"zGY1L8BZq9BpNlJNAn9xDX13ZtbEhpONHnACcLXA5wjAT4kOIYKouqfyu9PiLzph9iaUIBhWE3vZ6H5A4YsOzA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/listConnectionStrings?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvbGlzdENvbm5lY3Rpb25TdHJpbmdzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/listConnectionStrings?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxL2xpc3RDb25uZWN0aW9uU3RyaW5ncz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb5fcf0-6478-4b6d-8518-1c6338caa258" + "39bf46b3-e5b7-44fb-b0f2-f45178db2f27" ], "Accept-Language": [ "en-US" @@ -843,7 +843,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -867,38 +867,38 @@ "1198" ], "x-ms-request-id": [ - "9b29d39a-ed43-4fdd-8346-f4e706aed7ed" + "ad85643e-0e65-43f8-adf3-2fcd8eaaa860" ], "x-ms-correlation-request-id": [ - "9b29d39a-ed43-4fdd-8346-f4e706aed7ed" + "ad85643e-0e65-43f8-adf3-2fcd8eaaa860" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203248Z:9b29d39a-ed43-4fdd-8346-f4e706aed7ed" + "WESTCENTRALUS:20210222T231913Z:ad85643e-0e65-43f8-adf3-2fcd8eaaa860" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:48 GMT" + "Mon, 22 Feb 2021 23:19:12 GMT" ], "Content-Length": [ - "1047" + "1079" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"connectionStrings\": [\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb67:eEe9d4fbKlKr9L41rpM9wS8h10WDc8oyU8pez2ntu0Pv0iJ5xSaQmskFYpAZ9dgbSBAJTvtfogFWSRvDd1WSaA==@cosmosdb67.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Primary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb67:2u3G72wiGbq9xEoKKCgh3BRUIsgVC3mrCT0l77XMtzh11epMlQY83J1I1us14DvtOyV64H4estww963MqhdQKA==@cosmosdb67.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Secondary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb67:F2kGfHbX0yhQifCJyfWhrbtVxmGigALDYnb2co9caFwCuaOeeZYPpboxWXubORkBfMgsOMWTsq3uFhJcRlPcbA==@cosmosdb67.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Primary Read-Only MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb67:WEYKavt1N8Tx9PWKHxjq67u7gd7FvtDk7plrCfj4zld9lguIv8m5ZkZuX3pBCkVvc2FGZKFeJXIetcUxs2U4mg==@cosmosdb67.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Secondary Read-Only MongoDB Connection String\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"connectionStrings\": [\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678901:k8VLd1qbxMXK2uZDRn3vFL8XkwGYLqVwT3XX3VksyXCZoj4t8H8EWJQxWRQIPXb9LfnPe2KwIEJqBxATVlsk7g==@cosmosdb678901.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Primary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678901:1wtwWkHuHEZ9mIgf5ghW9SXd1RREwZrlCvVeeoWL5kGIjM0LPmTlbqeXODwc0KgsaP03m7jNADPk4QIYXXNp5Q==@cosmosdb678901.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Secondary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678901:mkufBW2hSgLd4aJ7v2EBaqUiYbF7NCVJAh2SHVeDlRamaZJRHLIfv23mVK5wj6rL49B4K0y3KqhohbjN8LzvFg==@cosmosdb678901.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Primary Read-Only MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678901:zGY1L8BZq9BpNlJNAn9xDX13ZtbEhpONHnACcLXA5wjAT4kOIYKouqfyu9PiLzph9iaUIBhWE3vZ6H5A4YsOzA==@cosmosdb678901.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Secondary Read-Only MongoDB Connection String\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/readonlykeys?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvcmVhZG9ubHlrZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/readonlykeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxL3JlYWRvbmx5a2V5cz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5f5741f-47f3-46a2-8d83-5e6679491939" + "ddbcc8c4-5e5d-404f-96af-31cc8a3cbc7d" ], "Accept-Language": [ "en-US" @@ -906,7 +906,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -930,19 +930,19 @@ "1197" ], "x-ms-request-id": [ - "6408df58-5241-4f13-a833-3bd567db2af0" + "27d85201-3d0e-4fb6-a5d3-ce9d8a43a39a" ], "x-ms-correlation-request-id": [ - "6408df58-5241-4f13-a833-3bd567db2af0" + "27d85201-3d0e-4fb6-a5d3-ce9d8a43a39a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203249Z:6408df58-5241-4f13-a833-3bd567db2af0" + "WESTCENTRALUS:20210222T231913Z:27d85201-3d0e-4fb6-a5d3-ce9d8a43a39a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:48 GMT" + "Mon, 22 Feb 2021 23:19:12 GMT" ], "Content-Length": [ "239" @@ -951,17 +951,17 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"F2kGfHbX0yhQifCJyfWhrbtVxmGigALDYnb2co9caFwCuaOeeZYPpboxWXubORkBfMgsOMWTsq3uFhJcRlPcbA==\",\r\n \"secondaryReadonlyMasterKey\": \"WEYKavt1N8Tx9PWKHxjq67u7gd7FvtDk7plrCfj4zld9lguIv8m5ZkZuX3pBCkVvc2FGZKFeJXIetcUxs2U4mg==\"\r\n}", + "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"mkufBW2hSgLd4aJ7v2EBaqUiYbF7NCVJAh2SHVeDlRamaZJRHLIfv23mVK5wj6rL49B4K0y3KqhohbjN8LzvFg==\",\r\n \"secondaryReadonlyMasterKey\": \"zGY1L8BZq9BpNlJNAn9xDX13ZtbEhpONHnACcLXA5wjAT4kOIYKouqfyu9PiLzph9iaUIBhWE3vZ6H5A4YsOzA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/regenerateKey?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/regenerateKey?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyKind\": \"primary\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "07e2ad93-dbbb-4b41-9521-37158e9a9f80" + "126e77bb-709b-4ba2-8d5b-20b2cd0d1dd2" ], "Accept-Language": [ "en-US" @@ -969,7 +969,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ @@ -987,13 +987,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/regenerateKey/operationResults/4b294b57-c5bf-42fa-8cd5-34a3fba937d1?api-version=2021-01-15" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/regenerateKey/operationResults/98fdb56d-5ebe-4dc9-a2fe-15e184f8323b?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4b294b57-c5bf-42fa-8cd5-34a3fba937d1?api-version=2021-01-15" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/98fdb56d-5ebe-4dc9-a2fe-15e184f8323b?api-version=2021-01-15" ], "x-ms-request-id": [ - "4b294b57-c5bf-42fa-8cd5-34a3fba937d1" + "98fdb56d-5ebe-4dc9-a2fe-15e184f8323b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,16 +1008,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "d711e5d6-f3df-46d3-ac87-0abd0503e170" + "ebcf7997-d6ba-436c-a892-a840ffd74ce4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203250Z:d711e5d6-f3df-46d3-ac87-0abd0503e170" + "WESTCENTRALUS:20210222T231914Z:ebcf7997-d6ba-436c-a892-a840ffd74ce4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:49 GMT" + "Mon, 22 Feb 2021 23:19:13 GMT" ], "Content-Length": [ "21" @@ -1030,18 +1030,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4b294b57-c5bf-42fa-8cd5-34a3fba937d1?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGIyOTRiNTctYzViZi00MmZhLThjZDUtMzRhM2ZiYTkzN2QxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/98fdb56d-5ebe-4dc9-a2fe-15e184f8323b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOThmZGI1NmQtNWViZS00ZGM5LWEyZmUtMTVlMTg0ZjgzMjNiP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07e2ad93-dbbb-4b41-9521-37158e9a9f80" + "126e77bb-709b-4ba2-8d5b-20b2cd0d1dd2" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1062,22 +1062,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-request-id": [ - "036120a7-08c1-42d4-9774-ff5bc19591a6" + "bd81c1b5-18dd-4fc8-a966-47e275a6028a" ], "x-ms-correlation-request-id": [ - "036120a7-08c1-42d4-9774-ff5bc19591a6" + "bd81c1b5-18dd-4fc8-a966-47e275a6028a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203321Z:036120a7-08c1-42d4-9774-ff5bc19591a6" + "WESTCENTRALUS:20210222T231944Z:bd81c1b5-18dd-4fc8-a966-47e275a6028a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:33:20 GMT" + "Mon, 22 Feb 2021 23:19:44 GMT" ], "Content-Length": [ "22" @@ -1090,18 +1090,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/regenerateKey/operationResults/4b294b57-c5bf-42fa-8cd5-34a3fba937d1?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvcmVnZW5lcmF0ZUtleS9vcGVyYXRpb25SZXN1bHRzLzRiMjk0YjU3LWM1YmYtNDJmYS04Y2Q1LTM0YTNmYmE5MzdkMT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/regenerateKey/operationResults/98fdb56d-5ebe-4dc9-a2fe-15e184f8323b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxL3JlZ2VuZXJhdGVLZXkvb3BlcmF0aW9uUmVzdWx0cy85OGZkYjU2ZC01ZWJlLTRkYzktYTJmZS0xNWUxODRmODMyM2I/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07e2ad93-dbbb-4b41-9521-37158e9a9f80" + "126e77bb-709b-4ba2-8d5b-20b2cd0d1dd2" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1122,22 +1122,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-request-id": [ - "88cd9b6e-5e58-424e-8ffb-25db05a1f8bc" + "7518a344-7019-435f-894f-a262e4fa3480" ], "x-ms-correlation-request-id": [ - "88cd9b6e-5e58-424e-8ffb-25db05a1f8bc" + "7518a344-7019-435f-894f-a262e4fa3480" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203321Z:88cd9b6e-5e58-424e-8ffb-25db05a1f8bc" + "WESTCENTRALUS:20210222T231944Z:7518a344-7019-435f-894f-a262e4fa3480" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:33:20 GMT" + "Mon, 22 Feb 2021 23:19:44 GMT" ], "Content-Length": [ "22" @@ -1150,13 +1150,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "Accept-Language": [ "en-US" @@ -1164,7 +1164,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1176,13 +1176,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationResults/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15" ], "x-ms-request-id": [ - "ac337f03-f678-4c1a-8c31-edd81bbe0fbe" + "45083467-1340-4442-ad6a-cd75ed6e0464" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1197,16 +1197,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "f4473f58-991a-4af0-b920-a0c8ffbdbedf" + "bdffd068-f80d-4eeb-ab19-40a9887feea9" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203323Z:f4473f58-991a-4af0-b920-a0c8ffbdbedf" + "WESTCENTRALUS:20210222T231946Z:bdffd068-f80d-4eeb-ab19-40a9887feea9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:33:22 GMT" + "Mon, 22 Feb 2021 23:19:46 GMT" ], "Content-Length": [ "21" @@ -1219,18 +1219,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1251,22 +1251,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-request-id": [ - "d0153cd5-d474-4a50-9961-8ecf7f2e235b" + "f27f31ed-964c-485f-b9cc-fcd4f276ea84" ], "x-ms-correlation-request-id": [ - "d0153cd5-d474-4a50-9961-8ecf7f2e235b" + "f27f31ed-964c-485f-b9cc-fcd4f276ea84" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203353Z:d0153cd5-d474-4a50-9961-8ecf7f2e235b" + "WESTCENTRALUS:20210222T232016Z:f27f31ed-964c-485f-b9cc-fcd4f276ea84" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:33:52 GMT" + "Mon, 22 Feb 2021 23:20:16 GMT" ], "Content-Length": [ "21" @@ -1279,18 +1279,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1311,22 +1311,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-request-id": [ - "23c5953e-64a6-4c64-b98b-a72b785bee86" + "c7074ce9-50dc-479b-b9f7-3d091eb713c7" ], "x-ms-correlation-request-id": [ - "23c5953e-64a6-4c64-b98b-a72b785bee86" + "c7074ce9-50dc-479b-b9f7-3d091eb713c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203423Z:23c5953e-64a6-4c64-b98b-a72b785bee86" + "WESTCENTRALUS:20210222T232046Z:c7074ce9-50dc-479b-b9f7-3d091eb713c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:34:23 GMT" + "Mon, 22 Feb 2021 23:20:46 GMT" ], "Content-Length": [ "21" @@ -1339,18 +1339,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1371,22 +1371,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-request-id": [ - "c5be7736-58cf-42c6-ac92-e86386a65c27" + "af31f716-0be1-40fc-8b8c-5ab144dbc492" ], "x-ms-correlation-request-id": [ - "c5be7736-58cf-42c6-ac92-e86386a65c27" + "af31f716-0be1-40fc-8b8c-5ab144dbc492" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203453Z:c5be7736-58cf-42c6-ac92-e86386a65c27" + "WESTCENTRALUS:20210222T232116Z:af31f716-0be1-40fc-8b8c-5ab144dbc492" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:34:53 GMT" + "Mon, 22 Feb 2021 23:21:16 GMT" ], "Content-Length": [ "21" @@ -1399,18 +1399,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1431,22 +1431,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-request-id": [ - "f8f76093-6710-42a7-8f53-6d6a866e47b6" + "2efdb92b-1286-406a-b04f-cc48f07a02af" ], "x-ms-correlation-request-id": [ - "f8f76093-6710-42a7-8f53-6d6a866e47b6" + "2efdb92b-1286-406a-b04f-cc48f07a02af" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203523Z:f8f76093-6710-42a7-8f53-6d6a866e47b6" + "WESTCENTRALUS:20210222T232146Z:2efdb92b-1286-406a-b04f-cc48f07a02af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:35:23 GMT" + "Mon, 22 Feb 2021 23:21:46 GMT" ], "Content-Length": [ "21" @@ -1459,18 +1459,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1491,22 +1491,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-request-id": [ - "07450f59-3bac-4404-98ec-cbbbd36fe27d" + "a60abc58-5f2e-41e8-9bed-925f8a7283a9" ], "x-ms-correlation-request-id": [ - "07450f59-3bac-4404-98ec-cbbbd36fe27d" + "a60abc58-5f2e-41e8-9bed-925f8a7283a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203554Z:07450f59-3bac-4404-98ec-cbbbd36fe27d" + "WESTCENTRALUS:20210222T232217Z:a60abc58-5f2e-41e8-9bed-925f8a7283a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:35:53 GMT" + "Mon, 22 Feb 2021 23:22:17 GMT" ], "Content-Length": [ "21" @@ -1519,18 +1519,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1551,22 +1551,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-request-id": [ - "63cefe82-7430-46e9-8c13-d6339a68dae1" + "f142640b-4a57-46d1-b6aa-866982e7f483" ], "x-ms-correlation-request-id": [ - "63cefe82-7430-46e9-8c13-d6339a68dae1" + "f142640b-4a57-46d1-b6aa-866982e7f483" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203624Z:63cefe82-7430-46e9-8c13-d6339a68dae1" + "WESTCENTRALUS:20210222T232247Z:f142640b-4a57-46d1-b6aa-866982e7f483" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:36:23 GMT" + "Mon, 22 Feb 2021 23:22:47 GMT" ], "Content-Length": [ "21" @@ -1579,18 +1579,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1611,22 +1611,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-request-id": [ - "14fc2b20-7114-46fe-b683-e3d46a4bac3a" + "d7969bc0-fc5f-490a-ab53-1a5a3907a10a" ], "x-ms-correlation-request-id": [ - "14fc2b20-7114-46fe-b683-e3d46a4bac3a" + "d7969bc0-fc5f-490a-ab53-1a5a3907a10a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203654Z:14fc2b20-7114-46fe-b683-e3d46a4bac3a" + "WESTCENTRALUS:20210222T232317Z:d7969bc0-fc5f-490a-ab53-1a5a3907a10a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:36:54 GMT" + "Mon, 22 Feb 2021 23:23:17 GMT" ], "Content-Length": [ "21" @@ -1639,18 +1639,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1671,22 +1671,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-request-id": [ - "fbe934aa-49ed-454d-8a30-33ea04261eb8" + "677f4e71-5a79-455d-bdb4-62033ad06037" ], "x-ms-correlation-request-id": [ - "fbe934aa-49ed-454d-8a30-33ea04261eb8" + "677f4e71-5a79-455d-bdb4-62033ad06037" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203724Z:fbe934aa-49ed-454d-8a30-33ea04261eb8" + "WESTCENTRALUS:20210222T232347Z:677f4e71-5a79-455d-bdb4-62033ad06037" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:37:23 GMT" + "Mon, 22 Feb 2021 23:23:46 GMT" ], "Content-Length": [ "21" @@ -1699,18 +1699,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1731,22 +1731,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11980" ], "x-ms-request-id": [ - "2bf86005-cf75-4aee-92d9-725a44ae9a75" + "3d523d12-f3b6-4868-8165-4a9373741911" ], "x-ms-correlation-request-id": [ - "2bf86005-cf75-4aee-92d9-725a44ae9a75" + "3d523d12-f3b6-4868-8165-4a9373741911" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203754Z:2bf86005-cf75-4aee-92d9-725a44ae9a75" + "WESTCENTRALUS:20210222T232418Z:3d523d12-f3b6-4868-8165-4a9373741911" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:37:54 GMT" + "Mon, 22 Feb 2021 23:24:17 GMT" ], "Content-Length": [ "21" @@ -1759,18 +1759,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1791,22 +1791,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11979" ], "x-ms-request-id": [ - "47e4fc6d-19d8-421f-b6a4-057e6298d15e" + "00e43b6b-30b0-4ae0-830a-8724c9a88cfe" ], "x-ms-correlation-request-id": [ - "47e4fc6d-19d8-421f-b6a4-057e6298d15e" + "00e43b6b-30b0-4ae0-830a-8724c9a88cfe" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203824Z:47e4fc6d-19d8-421f-b6a4-057e6298d15e" + "WESTCENTRALUS:20210222T232448Z:00e43b6b-30b0-4ae0-830a-8724c9a88cfe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:38:24 GMT" + "Mon, 22 Feb 2021 23:24:48 GMT" ], "Content-Length": [ "21" @@ -1819,18 +1819,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1851,22 +1851,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11978" ], "x-ms-request-id": [ - "ce95003e-c9c4-4d09-9a48-d861de9f43a7" + "cc3e95b9-9330-4cdd-85b7-3e97afacb899" ], "x-ms-correlation-request-id": [ - "ce95003e-c9c4-4d09-9a48-d861de9f43a7" + "cc3e95b9-9330-4cdd-85b7-3e97afacb899" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203855Z:ce95003e-c9c4-4d09-9a48-d861de9f43a7" + "WESTCENTRALUS:20210222T232518Z:cc3e95b9-9330-4cdd-85b7-3e97afacb899" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:38:54 GMT" + "Mon, 22 Feb 2021 23:25:18 GMT" ], "Content-Length": [ "21" @@ -1879,18 +1879,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1911,22 +1911,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11977" ], "x-ms-request-id": [ - "f781b2c0-4136-40f7-bd76-66cc465e5194" + "c62278e6-d851-4af3-883d-355a8e21b37e" ], "x-ms-correlation-request-id": [ - "f781b2c0-4136-40f7-bd76-66cc465e5194" + "c62278e6-d851-4af3-883d-355a8e21b37e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203925Z:f781b2c0-4136-40f7-bd76-66cc465e5194" + "WESTCENTRALUS:20210222T232548Z:c62278e6-d851-4af3-883d-355a8e21b37e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:39:24 GMT" + "Mon, 22 Feb 2021 23:25:48 GMT" ], "Content-Length": [ "21" @@ -1939,18 +1939,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1971,22 +1971,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11976" ], "x-ms-request-id": [ - "8ec995c9-5ffe-4573-b24e-5ff69168a9aa" + "d216a180-611f-40d2-a70b-062ec2b351ad" ], "x-ms-correlation-request-id": [ - "8ec995c9-5ffe-4573-b24e-5ff69168a9aa" + "d216a180-611f-40d2-a70b-062ec2b351ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203955Z:8ec995c9-5ffe-4573-b24e-5ff69168a9aa" + "WESTCENTRALUS:20210222T232618Z:d216a180-611f-40d2-a70b-062ec2b351ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:39:55 GMT" + "Mon, 22 Feb 2021 23:26:18 GMT" ], "Content-Length": [ "21" @@ -1999,18 +1999,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -2031,22 +2031,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11975" ], "x-ms-request-id": [ - "bac4b008-32fa-463b-bede-56fbecb9b53f" + "8cb33259-24de-4567-8268-df0d3c983560" ], "x-ms-correlation-request-id": [ - "bac4b008-32fa-463b-bede-56fbecb9b53f" + "8cb33259-24de-4567-8268-df0d3c983560" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T204026Z:bac4b008-32fa-463b-bede-56fbecb9b53f" + "WESTCENTRALUS:20210222T232648Z:8cb33259-24de-4567-8268-df0d3c983560" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:40:25 GMT" + "Mon, 22 Feb 2021 23:26:48 GMT" ], "Content-Length": [ "21" @@ -2059,18 +2059,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -2091,22 +2091,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11974" ], "x-ms-request-id": [ - "8d01fcca-59bf-4fe5-b18c-b68692ecc63c" + "d6c3f351-cdeb-43c6-9798-afeb9579e508" ], "x-ms-correlation-request-id": [ - "8d01fcca-59bf-4fe5-b18c-b68692ecc63c" + "d6c3f351-cdeb-43c6-9798-afeb9579e508" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T204056Z:8d01fcca-59bf-4fe5-b18c-b68692ecc63c" + "WESTCENTRALUS:20210222T232719Z:d6c3f351-cdeb-43c6-9798-afeb9579e508" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:40:55 GMT" + "Mon, 22 Feb 2021 23:27:18 GMT" ], "Content-Length": [ "22" @@ -2119,18 +2119,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationResults/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -2145,28 +2145,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11973" ], "x-ms-request-id": [ - "2230b7c0-9702-429b-92b6-46d9889f6482" + "07b3ddb6-8d70-4730-a8fa-5cef2b6b4974" ], "x-ms-correlation-request-id": [ - "2230b7c0-9702-429b-92b6-46d9889f6482" + "07b3ddb6-8d70-4730-a8fa-5cef2b6b4974" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T204056Z:2230b7c0-9702-429b-92b6-46d9889f6482" + "WESTCENTRALUS:20210222T232719Z:07b3ddb6-8d70-4730-a8fa-5cef2b6b4974" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:40:55 GMT" + "Mon, 22 Feb 2021 23:27:18 GMT" ], "Content-Length": [ "0" @@ -2178,6 +2178,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "12053b8f-cab5-4f5c-9c1a-870580142abd" + "SubscriptionId": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" } } \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB/ChangeLog.md b/src/CosmosDB/CosmosDB/ChangeLog.md index 9acd97ad98e9..c08ad28fdad9 100644 --- a/src/CosmosDB/CosmosDB/ChangeLog.md +++ b/src/CosmosDB/CosmosDB/ChangeLog.md @@ -20,6 +20,8 @@ ## Upcoming Release * Introduced NetworkAclBypass and NetworkAclBypassResourceIds for Database Account cmdlets. +* Introduced ServerVersion parameter to Update-AzCosmosDBAccount. +* Introduced BackupInterval and BackupRetention for Database Account cmdlets ## Version 1.0.0 * General availability of 'Az.CosmosDB' module diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs index 23bb64b96929..2b066bcbd764 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs @@ -50,10 +50,6 @@ public class NewAzCosmosDBAccount : NewOrUpdateAzCosmosDBAccount [Parameter(Mandatory = false, HelpMessage = Constants.EnableFreeTierHelpMessage)] public bool? EnableFreeTier { get; set; } - [Parameter(Mandatory = false, HelpMessage = Constants.ServerVersionHelpMessage)] - [PSArgumentCompleter(SDKModel.ServerVersion.ThreeFullStopTwo, SDKModel.ServerVersion.ThreeFullStopSix)] - public string ServerVersion { get; set; } - [Parameter(Mandatory = false, HelpMessage = Constants.LocationHelpMessage)] [ValidateNotNullOrEmpty] public string[] Location { get; set; } @@ -215,6 +211,18 @@ public override void ExecuteCmdlet() databaseAccountCreateUpdateParameters.Kind = ApiKind; + if (BackupIntervalInMinutes.HasValue || BackupRetentionIntervalInHours.HasValue) + { + databaseAccountCreateUpdateParameters.BackupPolicy = new PeriodicModeBackupPolicy() + { + PeriodicModeProperties = new PeriodicModeProperties() + { + BackupIntervalInMinutes = BackupIntervalInMinutes, + BackupRetentionIntervalInHours = BackupRetentionIntervalInHours + } + }; + } + if (ShouldProcess(Name, "Creating Database Account")) { DatabaseAccountGetResults cosmosDBAccount = CosmosDBManagementClient.DatabaseAccounts.CreateOrUpdateWithHttpMessagesAsync(ResourceGroupName, Name, databaseAccountCreateUpdateParameters).GetAwaiter().GetResult().Body; diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs index 374be4fdca22..e3df45486cb3 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs @@ -81,6 +81,16 @@ public class NewOrUpdateAzCosmosDBAccount : AzureCosmosDBCmdletBase [ValidateNotNullOrEmpty] public string[] NetworkAclBypassResourceId { get; set; } + [Parameter(Mandatory = false, HelpMessage = Constants.ServerVersionHelpMessage)] + [PSArgumentCompleter(SDKModel.ServerVersion.ThreeFullStopTwo, SDKModel.ServerVersion.ThreeFullStopSix, SDKModel.ServerVersion.FourFullStopZero)] + public string ServerVersion { get; set; } + + [Parameter(Mandatory = false, HelpMessage = Constants.BackupIntervalInMinHelpMessage)] + public int? BackupIntervalInMinutes { get; set; } + + [Parameter(Mandatory = false, HelpMessage = Constants.BackupRetentionInHoursHelpMessage)] + public int? BackupRetentionIntervalInHours { get; set; } + public ConsistencyPolicy PopoulateConsistencyPolicy(string DefaultConsistencyLevel, int? MaxStalenessIntervalInSeconds, int? MaxStalenessPrefix) { ConsistencyPolicy consistencyPolicy = new ConsistencyPolicy(); diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs index 71d782ad30fc..e2c72209a87e 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs @@ -140,12 +140,42 @@ public override void ExecuteCmdlet() databaseAccountUpdateParameters.IpRules = base.PopulateIpRules(IpRule); } + if (ServerVersion != null) + { + if (databaseAccountUpdateParameters.ApiProperties == null) + { + databaseAccountUpdateParameters.ApiProperties = new ApiProperties(); + } + + databaseAccountUpdateParameters.ApiProperties.ServerVersion = ServerVersion; + } + if (NetworkAclBypassResourceId != null) { Collection networkAclBypassResourceId = new Collection(NetworkAclBypassResourceId); databaseAccountUpdateParameters.NetworkAclBypassResourceIds = networkAclBypassResourceId; } + if (BackupIntervalInMinutes.HasValue || BackupRetentionIntervalInHours.HasValue) + { + if (readDatabase.BackupPolicy is PeriodicModeBackupPolicy) + { + databaseAccountUpdateParameters.BackupPolicy = new PeriodicModeBackupPolicy() + { + PeriodicModeProperties = new PeriodicModeProperties() + { + BackupIntervalInMinutes = BackupIntervalInMinutes, + BackupRetentionIntervalInHours = BackupRetentionIntervalInHours + } + }; + } + else + { + WriteWarning("Can accept BackupInterval or BackupRetention parameters only for accounts with PeriodicMode backup policy"); + return; + } + } + if (ShouldProcess(Name, "Updating Database Account")) { DatabaseAccountGetResults cosmosDBAccount = CosmosDBManagementClient.DatabaseAccounts.UpdateWithHttpMessagesAsync(ResourceGroupName, Name, databaseAccountUpdateParameters).GetAwaiter().GetResult().Body; diff --git a/src/CosmosDB/CosmosDB/Helpers/Constants.cs b/src/CosmosDB/CosmosDB/Helpers/Constants.cs index 125bfe37e3c0..16450840f166 100644 --- a/src/CosmosDB/CosmosDB/Helpers/Constants.cs +++ b/src/CosmosDB/CosmosDB/Helpers/Constants.cs @@ -56,6 +56,9 @@ internal static class Constants public const string NetworkAclBypassHelpMessage = "Whether or not Network Acl Bypass is enabled for this account for Synapse Link. Possible values include: 'None', 'AzureServices'."; public const string NetworkAclBypassResourceIdHelpMessage = "List of Resource Ids to allow Network Acl Bypass for Synapse Link."; + //Backup specific help messages + public const string BackupIntervalInMinHelpMessage = "The interval(in minutes) with which backup are taken (only for accounts with periodic mode backups)"; + public const string BackupRetentionInHoursHelpMessage = "The time(in hours) for which each backup is retained (only for accounts with periodic mode backups)"; //Sql cmdlets help messages public const string DatabaseNameHelpMessage = "Database name."; diff --git a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSApiProperties.cs b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSApiProperties.cs index 7d88a13670ce..6376729f6d40 100644 --- a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSApiProperties.cs +++ b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSApiProperties.cs @@ -30,7 +30,7 @@ public PSApiProperties(ApiProperties apiProperties) // // Summary: // Gets or sets describes the ServerVersion of an a MongoDB account. Possible values - // include: '3.2', '3.6' + // include: '3.2', '3.6', '4.0' public string ServerVersion { get; set; } } } \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSBackupPolicy.cs b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSBackupPolicy.cs new file mode 100644 index 000000000000..c5ea65362a17 --- /dev/null +++ b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSBackupPolicy.cs @@ -0,0 +1,72 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.CosmosDB.Helpers; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.CosmosDB.Models; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.CosmosDB.Models +{ + public class PSBackupPolicy + { + public static readonly string PeriodicModeBackupType = "Periodic"; + + public PSBackupPolicy() + { + } + + public PSBackupPolicy(BackupPolicy backupPolicy) + { + if (backupPolicy is PeriodicModeBackupPolicy) + { + PeriodicModeBackupPolicy periodicModeBackupPolicy = backupPolicy as PeriodicModeBackupPolicy; + BackupIntervalInMinutes = periodicModeBackupPolicy.PeriodicModeProperties.BackupIntervalInMinutes; + BackupRetentionIntervalInHours = periodicModeBackupPolicy.PeriodicModeProperties.BackupRetentionIntervalInHours; + BackupType = PeriodicModeBackupType; + } + else + { + return; + } + } + + public int? BackupIntervalInMinutes { get; set; } + + public int? BackupRetentionIntervalInHours { get; set; } + + public string BackupType { get; set; } + + public BackupPolicy ToSDKModel() + { + if (BackupType.Equals(PSBackupPolicy.PeriodicModeBackupType)) + { + PeriodicModeBackupPolicy periodicModeBackupPolicy = new PeriodicModeBackupPolicy + { + PeriodicModeProperties = new PeriodicModeProperties() + { + BackupIntervalInMinutes = BackupIntervalInMinutes, + BackupRetentionIntervalInHours = BackupRetentionIntervalInHours + } + }; + + return periodicModeBackupPolicy; + } + else + { + return null; + } + } + } +} diff --git a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs index 804921663808..975bf4a8fd51 100644 --- a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs +++ b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs @@ -60,6 +60,7 @@ public PSDatabaseAccountGetResults(DatabaseAccountGetResults databaseAccountGetR EnableAnalyticalStorage = databaseAccountGetResults.EnableAnalyticalStorage; NetworkAclBypass = databaseAccountGetResults.NetworkAclBypass; NetworkAclBypassResourceIds = databaseAccountGetResults.NetworkAclBypassResourceIds; + BackupPolicy = new PSBackupPolicy(databaseAccountGetResults.BackupPolicy); } // @@ -190,5 +191,9 @@ public PSDatabaseAccountGetResults(DatabaseAccountGetResults databaseAccountGetR // Summary: // Gets or sets list of Network Acl Bypass Resource Ids. public IList NetworkAclBypassResourceIds { get; set; } + // + // Summary: + // Gets or sets the backup policy of the database account. + public PSBackupPolicy BackupPolicy { get; set; } } } diff --git a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md index ca79d35f1c59..34145449767f 100644 --- a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md +++ b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md @@ -14,14 +14,15 @@ Create a new CosmosDB Account. ``` New-AzCosmosDBAccount [-EnableAutomaticFailover] [-EnableMultipleWriteLocations] [-EnableVirtualNetwork] - [-ApiKind ] [-DisableKeyBasedMetadataWriteAccess] [-EnableFreeTier ] - [-ServerVersion ] [-Location ] [-LocationObject ] -ResourceGroupName - -Name [-DefaultConsistencyLevel ] [-IpRule ] - [-MaxStalenessIntervalInSeconds ] [-MaxStalenessPrefix ] [-Tag ] - [-VirtualNetworkRule ] [-VirtualNetworkRuleObject ] - [-PublicNetworkAccess ] [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] - [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ApiKind ] [-DisableKeyBasedMetadataWriteAccess] [-EnableFreeTier ] [-Location ] + [-LocationObject ] -ResourceGroupName -Name + [-DefaultConsistencyLevel ] [-IpRule ] [-MaxStalenessIntervalInSeconds ] + [-MaxStalenessPrefix ] [-Tag ] [-VirtualNetworkRule ] + [-VirtualNetworkRuleObject ] [-PublicNetworkAccess ] + [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] [-NetworkAclBypass ] + [-NetworkAclBypassResourceId ] [-ServerVersion ] [-BackupIntervalInMinutes ] + [-BackupRetentionIntervalInHours ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -92,6 +93,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -BackupIntervalInMinutes +The interval(in minutes) with which backup are taken (only for accounts with periodic mode backups) + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BackupRetentionIntervalInHours +The time(in hours) for which each backup is retained (only for accounts with periodic mode backups) + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md b/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md index 50f993cd1215..f93ec61d17b4 100644 --- a/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md +++ b/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md @@ -20,7 +20,8 @@ Update-AzCosmosDBAccount [-EnableAutomaticFailover ] [-EnableMultipleWr [-MaxStalenessIntervalInSeconds ] [-MaxStalenessPrefix ] [-Tag ] [-VirtualNetworkRule ] [-VirtualNetworkRuleObject ] [-PublicNetworkAccess ] [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] - [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] + [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] [-ServerVersion ] + [-BackupIntervalInMinutes ] [-BackupRetentionIntervalInHours ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -32,7 +33,8 @@ Update-AzCosmosDBAccount -ResourceId [-EnableAutomaticFailover ] [-MaxStalenessPrefix ] [-Tag ] [-VirtualNetworkRule ] [-VirtualNetworkRuleObject ] [-PublicNetworkAccess ] [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] - [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] + [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] [-ServerVersion ] + [-BackupIntervalInMinutes ] [-BackupRetentionIntervalInHours ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -44,7 +46,8 @@ Update-AzCosmosDBAccount -InputObject [-EnableAuto [-MaxStalenessIntervalInSeconds ] [-MaxStalenessPrefix ] [-Tag ] [-VirtualNetworkRule ] [-VirtualNetworkRuleObject ] [-PublicNetworkAccess ] [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] - [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] + [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] [-ServerVersion ] + [-BackupIntervalInMinutes ] [-BackupRetentionIntervalInHours ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -99,6 +102,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -BackupIntervalInMinutes +The interval(in minutes) with which backup are taken (only for accounts with periodic mode backups) + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BackupRetentionIntervalInHours +The time(in hours) for which each backup is retained (only for accounts with periodic mode backups) + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. @@ -391,6 +424,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ServerVersion +ServerVersion, valid only in case of MongoDB Accounts. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Tag Hashtable of tags as key-value pairs. Use empty string to clear existing tag. From 5f9d41d0dbc7304f941799c1ab826937dd9dd3db Mon Sep 17 00:00:00 2001 From: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com> Date: Tue, 23 Feb 2021 09:51:20 +0800 Subject: [PATCH 2/6] [BotService] Fix the issue that didn't pack resources files of bot service. (#14221) * Fix the issue that didn't pack resources files of bot service. * Fix the issue that didn't pack resources files of bot service. * Add Debug info for test phase * Add Debug info for test phase * Fix the issue of test project list is empty Co-authored-by: wyunchi-ms --- build.proj | 2 +- src/BotService/Changelog.md | 1 + src/BotService/readme.md | 3 + .../resources/typescript.web.config | 61 ++++++ src/BotService/resources/web.config | 61 ++++++ .../resources/webappv4.template.json | 183 ++++++++++++++++++ 6 files changed, 310 insertions(+), 1 deletion(-) create mode 100644 src/BotService/resources/typescript.web.config create mode 100644 src/BotService/resources/web.config create mode 100644 src/BotService/resources/webappv4.template.json diff --git a/build.proj b/build.proj index 7af27a67905e..878087385be2 100644 --- a/build.proj +++ b/build.proj @@ -317,7 +317,7 @@ - + diff --git a/src/BotService/Changelog.md b/src/BotService/Changelog.md index 4c514a59a8c0..8c8e3f58da70 100644 --- a/src/BotService/Changelog.md +++ b/src/BotService/Changelog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed the issue that didn't pack template files into nupkg. ## Version 0.1.0 * First preview release for module Az.BotService diff --git a/src/BotService/readme.md b/src/BotService/readme.md index 67a192ab9b8e..713e56240f35 100644 --- a/src/BotService/readme.md +++ b/src/BotService/readme.md @@ -135,4 +135,7 @@ directive: set: parameter-name: Name alias: BotName + - from: Az.BotService.nuspec + where: $ + transform: $ = $.replace('', ' \n '); ``` diff --git a/src/BotService/resources/typescript.web.config b/src/BotService/resources/typescript.web.config new file mode 100644 index 000000000000..12475de5b707 --- /dev/null +++ b/src/BotService/resources/typescript.web.config @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/BotService/resources/web.config b/src/BotService/resources/web.config new file mode 100644 index 000000000000..5d227c5fee45 --- /dev/null +++ b/src/BotService/resources/web.config @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/BotService/resources/webappv4.template.json b/src/BotService/resources/webappv4.template.json new file mode 100644 index 000000000000..13e2e3960e86 --- /dev/null +++ b/src/BotService/resources/webappv4.template.json @@ -0,0 +1,183 @@ +{ + "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "botEnv": { + "type": "string", + "defaultValue": "prod" + }, + "botId": { + "type": "string" + }, + "description": { + "type": "string", + "defaultValue": "" + }, + "location": { + "type": "string" + }, + "sku": { + "type": "string" + }, + "kind": { + "type": "string" + }, + "siteName": { + "type": "string" + }, + "appId": { + "type": "string", + "defaultValue": "1234" + }, + "appSecret": { + "type": "string", + "defaultValue": "blank" + }, + "zipUrl": { + "type": "string", + "defaultValue": "" + }, + "serverFarmId": { + "type": "string" + }, + "createServerFarm": { + "type": "bool" + }, + "serverFarmLocation": { + "type": "string", + "defaultValue": "" + }, + "serverFarmSku": { + "type": "object", + "defaultValue": { + "name": "S1", + "tier": "Standard", + "size": "S1", + "family": "S", + "capacity": 1 + } + }, + "endpoint": { + "type": "string", + "defaultValue": "" + }, + "botFileEncryptionKey": { + "type": "string", + "defaultValue": "" + } + }, + "variables": { + "serverFarmName": "[last(split(parameters('serverFarmId'), '/'))]", + "botAppKinds": { + "sdk": "app", + "bot": "" + }, + "botAppKind": "[variables('botAppKinds')[parameters('kind')]]", + "siteHost": "[concat(parameters('siteName'), '.azurewebsites.net')]", + "botEndpointConfig": { + "bot": "[parameters('endpoint')]", + "sdk": "[concat('https://', variables('siteHost'), '/api/messages')]" + }, + "botEndpoint": "[variables('botEndpointConfig')[parameters('kind')]]" + }, + "resources": [ + { + "type": "Microsoft.Web/serverfarms", + "condition": "[parameters('createServerFarm')]", + "name": "[variables('serverFarmName')]", + "apiVersion": "2016-09-01", + "location": "[parameters('serverFarmLocation')]", + "sku": "[parameters('serverFarmSku')]", + "properties": { + "name": "[variables('serverFarmName')]" + } + }, + { + "name": "[parameters('siteName')]", + "type": "Microsoft.Web/sites", + "apiVersion": "2015-08-01", + "location": "[parameters('location')]", + "kind": "[variables('botAppKind')]", + "dependsOn": [ + "[parameters('serverFarmId')]" + ], + "properties": { + "name": "[parameters('siteName')]", + "serverFarmId": "[parameters('serverFarmId')]", + "siteConfig": { + "appSettings": [ + { + "name": "WEBSITE_NODE_DEFAULT_VERSION", + "value": "10.14.1" + }, + { + "name": "MicrosoftAppId", + "value": "[parameters('appId')]" + }, + { + "name": "MicrosoftAppPassword", + "value": "[parameters('appSecret')]" + } + ], + "cors": { + "allowedOrigins": [ + "https://botservice.hosting.portal.azure.net", + "https://hosting.onecloud.azure-test.net/" + ] + } + } + }, + "resources": [ + { + "name": "MSDeploy", + "type": "Extensions", + "apiVersion": "2015-02-01", + "condition": "[not(equals(parameters('zipUrl'), ''))]", + "dependsOn": [ + "[concat('Microsoft.Web/Sites/', parameters('siteName'))]" + ], + "properties": { + "packageUri": "[parameters('zipUrl')]", + "dbType": "None", + "connectionString": "", + "setParameters": { + "IIS Web Application Name": "[parameters('siteName')]" + } + } + } + ] + }, + { + "apiVersion": "2017-12-01", + "type": "Microsoft.BotService/botServices", + "name": "[parameters('botId')]", + "location": "global", + "kind": "[parameters('kind')]", + "sku": { + "name": "[parameters('sku')]" + }, + "properties": { + "name": "[parameters('botId')]", + "displayName": "[parameters('botId')]", + "endpoint": "[variables('botEndpoint')]", + "msaAppId": "[parameters('appId')]", + "publishingCredentials": "[list(concat(resourceId('Microsoft.Web/Sites', parameters('siteName')), '/config/publishingcredentials'), '2018-02-01')]", + "allSettings": { + "WEBSITE_NODE_DEFAULT_VERSION": "10.14.1", + "SCM_DO_BUILD_DURING_DEPLOYMENT": "true", + "BotId": "[parameters('botId')]", + "MicrosoftAppId": "[parameters('appId')]", + "MicrosoftAppPassword": "[parameters('appSecret')]", + "botFilePath": "[concat('./', parameters('botId'), '.bot')]", + "botFileSecret": "[parameters('botFileEncryptionKey')]", + "description": "[parameters('description')]" + } + }, + "dependsOn": [ + "[parameters('serverFarmId')]", + "[resourceId('Microsoft.Web/sites/', parameters('siteName'))]", + "MSDeploy" + ] + } + ] +} \ No newline at end of file From fe0e48df07205d31657044122ac2ca4b6ef5bc1a Mon Sep 17 00:00:00 2001 From: Adam Sandor Date: Mon, 22 Feb 2021 21:15:22 -0500 Subject: [PATCH 3/6] Remove ContainerService cmdlets and documentation (#14270) * removed CS and changelog * Update ChangeLog.md * Create BreakingChangeIssues.csv Co-authored-by: Theodore Chang --- .../ScenarioTests/ContainerServiceTests.cs | 41 - .../ScenarioTests/ContainerServiceTests.ps1 | 177 - .../TestContainerService.json | 3250 ---------------- .../TestContainerServiceUpdate.json | 3332 ----------------- src/Compute/Compute/ChangeLog.md | 8 + ...ContainerServiceAgentPoolProfileCommand.cs | 95 - ...NewAzureRmContainerServiceConfigCommand.cs | 284 -- ...ContainerServiceAgentPoolProfileCommand.cs | 77 - .../ContainerServiceCreateOrUpdateMethod.cs | 136 - .../ContainerServiceDeleteMethod.cs | 93 - .../ContainerServiceGetMethod.cs | 116 - .../Models/ComputeAutoMapperProfile.cs | 5 - .../Generated/Models/PSContainerService.cs | 59 - .../Models/PSContainerServiceList.cs | 31 - .../Add-AzContainerServiceAgentPoolProfile.md | 181 - .../Compute/help/Get-AzContainerService.md | 171 - .../Compute/help/New-AzContainerService.md | 175 - .../help/New-AzContainerServiceConfig.md | 335 -- .../Compute/help/Remove-AzContainerService.md | 161 - ...move-AzContainerServiceAgentPoolProfile.md | 134 - .../Compute/help/Update-AzContainerService.md | 175 - .../Az.Compute/BreakingChangeIssues.csv | 8 + 22 files changed, 16 insertions(+), 9028 deletions(-) delete mode 100644 src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.cs delete mode 100644 src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.ps1 delete mode 100644 src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerService.json delete mode 100644 src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerServiceUpdate.json delete mode 100644 src/Compute/Compute/Generated/ContainerService/Config/AddAzureRmContainerServiceAgentPoolProfileCommand.cs delete mode 100644 src/Compute/Compute/Generated/ContainerService/Config/NewAzureRmContainerServiceConfigCommand.cs delete mode 100644 src/Compute/Compute/Generated/ContainerService/Config/RemoveAzureRmContainerServiceAgentPoolProfileCommand.cs delete mode 100644 src/Compute/Compute/Generated/ContainerService/ContainerServiceCreateOrUpdateMethod.cs delete mode 100644 src/Compute/Compute/Generated/ContainerService/ContainerServiceDeleteMethod.cs delete mode 100644 src/Compute/Compute/Generated/ContainerService/ContainerServiceGetMethod.cs delete mode 100644 src/Compute/Compute/Generated/Models/PSContainerService.cs delete mode 100644 src/Compute/Compute/Generated/Models/PSContainerServiceList.cs delete mode 100644 src/Compute/Compute/help/Add-AzContainerServiceAgentPoolProfile.md delete mode 100644 src/Compute/Compute/help/Get-AzContainerService.md delete mode 100644 src/Compute/Compute/help/New-AzContainerService.md delete mode 100644 src/Compute/Compute/help/New-AzContainerServiceConfig.md delete mode 100644 src/Compute/Compute/help/Remove-AzContainerService.md delete mode 100644 src/Compute/Compute/help/Remove-AzContainerServiceAgentPoolProfile.md delete mode 100644 src/Compute/Compute/help/Update-AzContainerService.md create mode 100644 tools/StaticAnalysis/Exceptions/Az.Compute/BreakingChangeIssues.csv diff --git a/src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.cs b/src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.cs deleted file mode 100644 index 4c673af9de73..000000000000 --- a/src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.cs +++ /dev/null @@ -1,41 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.WindowsAzure.Commands.ScenarioTest; -using Xunit; - -namespace Microsoft.Azure.Commands.Compute.Test.ScenarioTests -{ - public class ContainerServiceTests : ComputeTestRunner - { - public ContainerServiceTests(Xunit.Abstractions.ITestOutputHelper output) - : base(output) - { - } - - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestContainerService() - { - TestRunner.RunTestScript("Test-ContainerService"); - } - - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestContainerServiceUpdate() - { - TestRunner.RunTestScript("Test-ContainerServiceUpdate"); - } - } -} diff --git a/src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.ps1 b/src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.ps1 deleted file mode 100644 index 8d93617bd7ec..000000000000 --- a/src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.ps1 +++ /dev/null @@ -1,177 +0,0 @@ -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -<# -.SYNOPSIS -Test Container Service -#> -function Test-ContainerService -{ - # Setup - $rgname = Get-ComputeTestResourceName - - try - { - # Common - $loc = 'eastus2'; - New-AzResourceGroup -Name $rgname -Location $loc -Force; - - $csName = 'cs' + $rgname; - $masterDnsPrefixName = 'master' + $rgname; - $agentPoolDnsPrefixName = 'ap' + $rgname; - $agentPoolProfileName = 'AgentPool1'; - $vmSize = 'Standard_A1'; - - $orchestratorType = 'DCOS'; - $adminUserName = 'acslinuxadmin'; - $sshPublicKey = - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2" + - "MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2" + - "oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgE" + - "Sgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h" + - "9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417" + - "u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4" + - "bL acs-bot@microsoft.com"; - - $job = New-AzContainerServiceConfig -Location $loc -OrchestratorType $orchestratorType ` - -MasterDnsPrefix $masterDnsPrefixName -AdminUsername $adminUserName -SshPublicKey $sshPublicKey ` - | Add-AzContainerServiceAgentPoolProfile -Name $agentPoolProfileName -VmSize $vmSize -DnsPrefix $agentPoolDnsPrefixName -Count 1 ` - | New-AzContainerService -ResourceGroupName $rgname -Name $csName -AsJob; - $result = $job | Wait-Job; - Assert-AreEqual "Completed" $result.State; - $container = $job | Receive-Job - - $wildcardRgQuery = ($rgname -replace ".$") + "*" - $wildcardNameQuery = ($csName -replace ".$") + "*" - - $cs = Get-AzContainerService - Assert-True { $cs.Count -ge 1 } - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -ResourceGroupName $rgname - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -ResourceGroupName $wildcardRgQuery - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -Name $csName; - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -Name $wildcardNameQuery; - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -ResourceGroupName $rgname -Name $wildcardNameQuery; - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -ResourceGroupName $wildcardRgQuery -Name $csName; - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -ResourceGroupName $wildcardRgQuery -Name $wildcardNameQuery; - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -ResourceGroupName $rgname -Name $csName; - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-True { $output.Contains("AgentPoolProfiles") }; - - $job = Remove-AzContainerService -ResourceGroupName $rgname -Name $csName -Force -AsJob; - $result = $job | Wait-Job; - Assert-AreEqual "Completed" $result.State; - $st = $job | Receive-Job - } - finally - { - # Cleanup - Clean-ResourceGroup $rgname - } -} - -<# -.SYNOPSIS -Test Container Service Update -#> -function Test-ContainerServiceUpdate -{ - # Setup - $rgname = Get-ComputeTestResourceName - - try - { - # Common - $loc = 'australiasoutheast'; - New-AzResourceGroup -Name $rgname -Location $loc -Force; - - $csName = 'cs' + $rgname; - $masterDnsPrefixName = 'master' + $rgname; - $agentPoolDnsPrefixName = 'ap' + $rgname; - $agentPoolProfileName = 'AgentPool1'; - $vmSize = 'Standard_A1'; - - $orchestratorType = 'DCOS'; - $adminUserName = 'acslinuxadmin'; - $sshPublicKey = - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2" + - "MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2" + - "oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgE" + - "Sgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h" + - "9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417" + - "u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4" + - "bL acs-bot@microsoft.com"; - - $container = New-AzContainerServiceConfig -Location $loc ` - -OrchestratorType $orchestratorType ` - -MasterDnsPrefix $masterDnsPrefixName ` - -MasterCount 1 ` - -AdminUsername $adminUserName ` - -SshPublicKey $sshPublicKey ` - | Add-AzContainerServiceAgentPoolProfile -Name $agentPoolProfileName ` - -VmSize $vmSize ` - -DnsPrefix $agentPoolDnsPrefixName ` - -Count 1 ` - | New-AzContainerService -ResourceGroupName $rgname -Name $csName; - - $job = Get-AzContainerService -ResourceGroupName $rgname -Name $csName ` - | Remove-AzContainerServiceAgentPoolProfile -Name $agentPoolProfileName ` - | Add-AzContainerServiceAgentPoolProfile -Name $agentPoolProfileName ` - -VmSize $vmSize ` - -DnsPrefix $agentPoolDnsPrefixName ` - -Count 2 ` - | Update-AzContainerService -AsJob; - $result = $job | Wait-Job; - Assert-AreEqual "Completed" $result.State; - - $st = Get-AzContainerService -ResourceGroupName $rgname -Name $csName | Remove-AzContainerService -Force; - } - finally - { - # Cleanup - Clean-ResourceGroup $rgname - } -} - diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerService.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerService.json deleted file mode 100644 index eb8dbb85eafb..000000000000 --- a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerService.json +++ /dev/null @@ -1,3250 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/crptestps1291?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyOTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "57bad377-cfc6-43d6-a456-2cac1b00b54f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "ea7ccb13-6c01-45b3-bfb6-1de6195a84af" - ], - "x-ms-correlation-request-id": [ - "ea7ccb13-6c01-45b3-bfb6-1de6195a84af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004307Z:ea7ccb13-6c01-45b3-bfb6-1de6195a84af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:43:07 GMT" - ], - "Content-Length": [ - "180" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291\",\r\n \"name\": \"crptestps1291\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzMTI5MT9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"dnsPrefix\": \"mastercrptestps1291\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"acslinuxadmin\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c9aa6f20-06bb-4490-a5bc-c9959eff9d64" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1080" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateContainerService3Min;9,Microsoft.Compute/CreateUpdateContainerService30Min;99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "43688436-7be8-4964-86ab-734d6ff1eb03" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "a388486d-68e0-46b4-bc15-625f7be0b0a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004318Z:a388486d-68e0-46b4-bc15-625f7be0b0a0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:43:18 GMT" - ], - "Content-Length": [ - "1453" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;148,Microsoft.Compute/GetOperationStatus30Min;1498" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "7c6c4658-b63f-47bb-8e4a-0cd0164e08ea" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "b499031b-a088-497a-a9aa-1983e642f65e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004348Z:b499031b-a088-497a-a9aa-1983e642f65e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:43:48 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;145,Microsoft.Compute/GetOperationStatus30Min;1495" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "5c9795c5-4cd7-4ebc-b34c-3e59de9ea64a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "937f68e4-98eb-46dc-b1cf-b9ad4697059a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004418Z:937f68e4-98eb-46dc-b1cf-b9ad4697059a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:44:18 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;142,Microsoft.Compute/GetOperationStatus30Min;1492" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "9382ee13-cb95-4268-9537-52e26411bc74" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "1b9b74ad-bfe3-4a1a-97a1-e7836079cd80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004449Z:1b9b74ad-bfe3-4a1a-97a1-e7836079cd80" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:44:48 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;139,Microsoft.Compute/GetOperationStatus30Min;1489" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "df2b8970-7c7b-4887-852b-2d1febf88827" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "eb274fc5-f21a-499e-b5e2-f189041ba217" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004519Z:eb274fc5-f21a-499e-b5e2-f189041ba217" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:45:18 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;136,Microsoft.Compute/GetOperationStatus30Min;1486" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "8e8a813b-c4f5-46c6-8056-5a13dce27664" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "22d3cfad-77cd-49ef-b8f3-b840519a8334" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004549Z:22d3cfad-77cd-49ef-b8f3-b840519a8334" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:45:49 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1483" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "3738ebd1-8a2c-461b-bbed-5723dbaaea7c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "58d059ba-310f-4f0f-86b0-f8ffb5f99001" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004619Z:58d059ba-310f-4f0f-86b0-f8ffb5f99001" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:46:19 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1480" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "74952535-6339-46e0-be24-dd7fdcd827ac" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "760c5282-f417-4139-8459-6e185b039611" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004649Z:760c5282-f417-4139-8459-6e185b039611" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:46:49 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1477" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "fd1fb510-cfe0-4363-8249-e2d3f1f803bc" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "2ab3fba2-683e-4a99-a40d-c1723036b3e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004720Z:2ab3fba2-683e-4a99-a40d-c1723036b3e6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:47:19 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1474" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "ee3cfad3-3311-447c-8982-faaa423e3723" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "77d8b6a8-0eed-4a91-ac68-41e7c787dc99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004750Z:77d8b6a8-0eed-4a91-ac68-41e7c787dc99" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:47:49 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1471" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "8b5f5458-9887-4d93-b15f-f2adbce6dcea" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-correlation-request-id": [ - "aab92679-cbdd-4aa2-a52a-ec88c1c3fd87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004820Z:aab92679-cbdd-4aa2-a52a-ec88c1c3fd87" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:48:20 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1468" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "e3b0416a-12db-4ed1-83f6-155ad6413516" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "d49aee4f-b7e7-4929-b5ac-ee0d515cf8e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004850Z:d49aee4f-b7e7-4929-b5ac-ee0d515cf8e8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:48:49 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1465" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "8a166273-3574-4889-b9e8-2a285ad12270" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-correlation-request-id": [ - "9ba4c953-3919-4d07-b4db-a11f55b6a3a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004920Z:9ba4c953-3919-4d07-b4db-a11f55b6a3a4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:49:20 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;134,Microsoft.Compute/GetOperationStatus30Min;1463" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "1240e03d-9148-44c2-8c1d-1441b3beebb2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "e2637bc5-da9e-4b8e-8290-d75f8e747735" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004951Z:e2637bc5-da9e-4b8e-8290-d75f8e747735" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:49:50 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;134,Microsoft.Compute/GetOperationStatus30Min;1460" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "09ca29cf-38ad-46d9-93e8-1a2b77c46c4a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "525c416e-5c52-4f13-ba9a-3893a18fa5fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005021Z:525c416e-5c52-4f13-ba9a-3893a18fa5fd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:20 GMT" - ], - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"endTime\": \"2019-01-30T16:49:58.9999388-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzMTI5MT9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerService3Min;37,Microsoft.Compute/GetContainerService30Min;396" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "4168ecb4-173d-429f-8c99-d1015e7abb80" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-correlation-request-id": [ - "f2019319-c24e-49f1-838c-5b15e646a4d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005021Z:f2019319-c24e-49f1-838c-5b15e646a4d5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:20 GMT" - ], - "Content-Length": [ - "1658" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzMTI5MT9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "744c5170-698f-4b51-b70d-1ee1d7e94cbb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerService3Min;36,Microsoft.Compute/GetContainerService30Min;395" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "6054a1b7-159e-46ca-939a-dfb82bd0e7d1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-correlation-request-id": [ - "5e401cb5-ca78-4627-a4e4-63752fdcba9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005023Z:5e401cb5-ca78-4627-a4e4-63752fdcba9d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:23 GMT" - ], - "Content-Length": [ - "1658" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9jb250YWluZXJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fc508727-bcb5-4451-96b7-623fe7d0a484" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceSubscription3Min;149,Microsoft.Compute/GetContainerServiceSubscription30Min;1499" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "866759dd-cfe0-46d6-ab3a-0d9057d8a02c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-correlation-request-id": [ - "ae1d58e8-45da-4f48-98be-fe39b9fae14a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005021Z:ae1d58e8-45da-4f48-98be-fe39b9fae14a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:21 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9jb250YWluZXJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f9fa3b08-dfea-4ed8-a289-1c132329d284" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceSubscription3Min;148,Microsoft.Compute/GetContainerServiceSubscription30Min;1498" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "30c44f68-eff2-4308-b8b5-256698d8c4a9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "d4bd66a1-5e96-4741-9d12-72200f836b2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005022Z:d4bd66a1-5e96-4741-9d12-72200f836b2c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:21 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9jb250YWluZXJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "50923f57-bbce-4cc7-9735-42d3bfafb6c5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceSubscription3Min;147,Microsoft.Compute/GetContainerServiceSubscription30Min;1497" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "f1ed3d05-d4e2-4b8e-89a4-2f0b4e570bde" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-correlation-request-id": [ - "58b9f0f3-dec1-4325-9568-9ca8a1908440" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005022Z:58b9f0f3-dec1-4325-9568-9ca8a1908440" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:21 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9jb250YWluZXJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6873def2-46f2-4c1a-b5ee-c214968f3e45" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceSubscription3Min;146,Microsoft.Compute/GetContainerServiceSubscription30Min;1496" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "2153473f-e922-4466-843d-7ac397a820dd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "5b546b92-a659-4200-8c94-efcfa0571ff9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005022Z:5b546b92-a659-4200-8c94-efcfa0571ff9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:21 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9jb250YWluZXJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "afc79390-ef01-4e9f-b710-1c7906a3af42" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceSubscription3Min;145,Microsoft.Compute/GetContainerServiceSubscription30Min;1495" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "623bef4e-b8e4-4f72-baa1-0df44100ca32" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-correlation-request-id": [ - "ef4e6ebf-c7a2-43ea-9aff-d945154b96a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005023Z:ef4e6ebf-c7a2-43ea-9aff-d945154b96a0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:23 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9jb250YWluZXJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d6545461-e1f5-4026-a5fd-36889cdc3ea7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceSubscription3Min;144,Microsoft.Compute/GetContainerServiceSubscription30Min;1494" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "376e10c2-de98-41b3-a105-8ae44d0c1ced" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-correlation-request-id": [ - "cef806e9-ecef-40f6-aefc-bbfd480e9d65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005023Z:cef806e9-ecef-40f6-aefc-bbfd480e9d65" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:23 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "47184adc-d1cf-4900-ab42-b22792820ec1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceResourceGroup3Min;149,Microsoft.Compute/GetContainerServiceResourceGroup30Min;1499" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "ab85ce70-304d-4e89-814c-b11a47297f90" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-correlation-request-id": [ - "44a52fab-cda9-4880-84f7-d20865d7db10" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005022Z:44a52fab-cda9-4880-84f7-d20865d7db10" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:21 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "21a462e7-d026-49a1-95d6-6bfde279f1f5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceResourceGroup3Min;148,Microsoft.Compute/GetContainerServiceResourceGroup30Min;1498" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "93ba87a4-9adf-4bb1-b091-f1e3466dbe96" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-correlation-request-id": [ - "085747d4-5bcc-4986-a6c1-a5c1667146d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005023Z:085747d4-5bcc-4986-a6c1-a5c1667146d1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:23 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzMTI5MT9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6c08680e-103d-40ac-98ec-78f5b967069b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/116219a5-1cfa-4f6d-b34a-62498684c0d5?monitor=true&api-version=2017-01-31" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/116219a5-1cfa-4f6d-b34a-62498684c0d5?api-version=2017-01-31" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteContainerService3Min;29,Microsoft.Compute/DeleteContainerService30Min;149" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "116219a5-1cfa-4f6d-b34a-62498684c0d5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "6e53e8ef-70bd-4004-8e25-93de414132d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005024Z:6e53e8ef-70bd-4004-8e25-93de414132d9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:24 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/116219a5-1cfa-4f6d-b34a-62498684c0d5?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzExNjIxOWE1LTFjZmEtNGY2ZC1iMzRhLTYyNDk4Njg0YzBkNT9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;134,Microsoft.Compute/GetOperationStatus30Min;1458" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "c4919c76-b619-43b1-bdc7-8a83f8428b81" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-correlation-request-id": [ - "3f7ab5f1-4eaa-45b9-97ab-7a89e782ac37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005054Z:3f7ab5f1-4eaa-45b9-97ab-7a89e782ac37" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:53 GMT" - ], - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:50:24.0655309-08:00\",\r\n \"endTime\": \"2019-01-30T16:50:24.1592549-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"116219a5-1cfa-4f6d-b34a-62498684c0d5\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/116219a5-1cfa-4f6d-b34a-62498684c0d5?monitor=true&api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzExNjIxOWE1LTFjZmEtNGY2ZC1iMzRhLTYyNDk4Njg0YzBkNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0wMS0zMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1457" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "5d597b22-0dc2-492b-acdb-37179432b104" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-correlation-request-id": [ - "e10cf8f9-6844-4339-9892-a819860e7a64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005054Z:e10cf8f9-6844-4339-9892-a819860e7a64" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/crptestps1291?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyOTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9dac5f8d-5924-451c-9714-0a00dfbe155a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-request-id": [ - "22928219-e34a-4c9d-8606-e20cf1cd9c7a" - ], - "x-ms-correlation-request-id": [ - "22928219-e34a-4c9d-8606-e20cf1cd9c7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005056Z:22928219-e34a-4c9d-8606-e20cf1cd9c7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-request-id": [ - "1f3eb786-ef19-4689-b9b1-2a486a41676d" - ], - "x-ms-correlation-request-id": [ - "1f3eb786-ef19-4689-b9b1-2a486a41676d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005111Z:1f3eb786-ef19-4689-b9b1-2a486a41676d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:51:11 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-request-id": [ - "c6660def-e57e-4193-a845-89f17c1c3340" - ], - "x-ms-correlation-request-id": [ - "c6660def-e57e-4193-a845-89f17c1c3340" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005126Z:c6660def-e57e-4193-a845-89f17c1c3340" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:51:26 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-request-id": [ - "28c20ec7-a609-4126-b87a-d8b6a65682df" - ], - "x-ms-correlation-request-id": [ - "28c20ec7-a609-4126-b87a-d8b6a65682df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005142Z:28c20ec7-a609-4126-b87a-d8b6a65682df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:51:41 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-request-id": [ - "96f957af-5060-456c-a55a-b65e5efb7494" - ], - "x-ms-correlation-request-id": [ - "96f957af-5060-456c-a55a-b65e5efb7494" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005157Z:96f957af-5060-456c-a55a-b65e5efb7494" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:51:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-request-id": [ - "f503c5ed-9a11-4955-bd05-1c9df53f126e" - ], - "x-ms-correlation-request-id": [ - "f503c5ed-9a11-4955-bd05-1c9df53f126e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005212Z:f503c5ed-9a11-4955-bd05-1c9df53f126e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:52:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-request-id": [ - "d3034539-09de-4957-8e23-d441231a5711" - ], - "x-ms-correlation-request-id": [ - "d3034539-09de-4957-8e23-d441231a5711" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005227Z:d3034539-09de-4957-8e23-d441231a5711" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:52:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-request-id": [ - "9c73d997-eca8-4b44-b7b8-6bf57a84a3f5" - ], - "x-ms-correlation-request-id": [ - "9c73d997-eca8-4b44-b7b8-6bf57a84a3f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005243Z:9c73d997-eca8-4b44-b7b8-6bf57a84a3f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:52:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-request-id": [ - "eb34d673-6ff2-4256-9e48-ac4366f3aabd" - ], - "x-ms-correlation-request-id": [ - "eb34d673-6ff2-4256-9e48-ac4366f3aabd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005258Z:eb34d673-6ff2-4256-9e48-ac4366f3aabd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:52:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-request-id": [ - "10d617ca-73c9-4fab-8e09-52e97173d583" - ], - "x-ms-correlation-request-id": [ - "10d617ca-73c9-4fab-8e09-52e97173d583" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005313Z:10d617ca-73c9-4fab-8e09-52e97173d583" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:53:13 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-request-id": [ - "a260e1b2-6bab-4f6a-83fe-d37316b3b495" - ], - "x-ms-correlation-request-id": [ - "a260e1b2-6bab-4f6a-83fe-d37316b3b495" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005328Z:a260e1b2-6bab-4f6a-83fe-d37316b3b495" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:53:28 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-request-id": [ - "9ff1b6e3-7481-4345-a6f7-7aeefaa8afed" - ], - "x-ms-correlation-request-id": [ - "9ff1b6e3-7481-4345-a6f7-7aeefaa8afed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005344Z:9ff1b6e3-7481-4345-a6f7-7aeefaa8afed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:53:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "x-ms-request-id": [ - "683226ef-9d6e-4c12-b5df-dcde7000bf5e" - ], - "x-ms-correlation-request-id": [ - "683226ef-9d6e-4c12-b5df-dcde7000bf5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005359Z:683226ef-9d6e-4c12-b5df-dcde7000bf5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:53:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-request-id": [ - "8d744d79-8005-4271-bd6e-106b42dff8dd" - ], - "x-ms-correlation-request-id": [ - "8d744d79-8005-4271-bd6e-106b42dff8dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005414Z:8d744d79-8005-4271-bd6e-106b42dff8dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:54:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" - ], - "x-ms-request-id": [ - "da6eb8db-4d59-4654-b982-6b0b0a7b0218" - ], - "x-ms-correlation-request-id": [ - "da6eb8db-4d59-4654-b982-6b0b0a7b0218" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005429Z:da6eb8db-4d59-4654-b982-6b0b0a7b0218" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:54:28 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-request-id": [ - "051f6ca2-1254-4733-8521-41f4e0e8709f" - ], - "x-ms-correlation-request-id": [ - "051f6ca2-1254-4733-8521-41f4e0e8709f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005457Z:051f6ca2-1254-4733-8521-41f4e0e8709f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:54:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-request-id": [ - "9ee29ee4-c60a-4df7-b4e4-377ceca0fa24" - ], - "x-ms-correlation-request-id": [ - "9ee29ee4-c60a-4df7-b4e4-377ceca0fa24" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005512Z:9ee29ee4-c60a-4df7-b4e4-377ceca0fa24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:55:11 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-request-id": [ - "e7829a41-842d-47c6-b8eb-63a0f1fab545" - ], - "x-ms-correlation-request-id": [ - "e7829a41-842d-47c6-b8eb-63a0f1fab545" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005528Z:e7829a41-842d-47c6-b8eb-63a0f1fab545" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:55:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" - ], - "x-ms-request-id": [ - "c52ecbff-43a6-4b05-ac6a-3c8a7bf335e6" - ], - "x-ms-correlation-request-id": [ - "c52ecbff-43a6-4b05-ac6a-3c8a7bf335e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005543Z:c52ecbff-43a6-4b05-ac6a-3c8a7bf335e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:55:42 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-request-id": [ - "f388f12e-57d0-48d5-a930-420a0faf06b5" - ], - "x-ms-correlation-request-id": [ - "f388f12e-57d0-48d5-a930-420a0faf06b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005558Z:f388f12e-57d0-48d5-a930-420a0faf06b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:55:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" - ], - "x-ms-request-id": [ - "1c6639cd-9fe7-4494-913f-34ff8660a19d" - ], - "x-ms-correlation-request-id": [ - "1c6639cd-9fe7-4494-913f-34ff8660a19d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005613Z:1c6639cd-9fe7-4494-913f-34ff8660a19d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:56:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], - "x-ms-request-id": [ - "fde75fd2-118c-4f84-9f5b-3e727d151da4" - ], - "x-ms-correlation-request-id": [ - "fde75fd2-118c-4f84-9f5b-3e727d151da4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005629Z:fde75fd2-118c-4f84-9f5b-3e727d151da4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:56:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" - ], - "x-ms-request-id": [ - "a04d37eb-7692-45c4-91c4-c581157a52d2" - ], - "x-ms-correlation-request-id": [ - "a04d37eb-7692-45c4-91c4-c581157a52d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005629Z:a04d37eb-7692-45c4-91c4-c581157a52d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:56:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - } - ], - "Names": { - "Test-ContainerService": [ - "crptestps1291" - ] - }, - "Variables": { - "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f" - } -} \ No newline at end of file diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerServiceUpdate.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerServiceUpdate.json deleted file mode 100644 index 523b232dc7b2..000000000000 --- a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerServiceUpdate.json +++ /dev/null @@ -1,3332 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4764?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ3NjQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"australiasoutheast\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "40" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764\",\r\n \"name\": \"crptestps4764\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "191" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "f12e75a0-7ab9-4652-8660-4465cb6799cd" - ], - "x-ms-correlation-request-id": [ - "f12e75a0-7ab9-4652-8660-4465cb6799cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225305Z:f12e75a0-7ab9-4652-8660-4465cb6799cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 22:53:04 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"acslinuxadmin\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {}\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1110" - ], - "x-ms-client-request-id": [ - "ca61f9b7-192f-4e1a-b4f4-b70216e4b58b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764\",\r\n \"name\": \"cscrptestps4764\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\",\r\n \"vmSize\": \"Standard_D2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1461" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateContainerService3Min;9,Microsoft.Compute/CreateUpdateContainerService30Min;98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "02c07562-679a-4e6c-8b8c-88e98fdb4b03" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "a2f8e83d-c072-4dcc-93c2-ffffafaa367f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225320Z:a2f8e83d-c072-4dcc-93c2-ffffafaa367f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:53:19 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 2,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"acslinuxadmin\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {}\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1110" - ], - "x-ms-client-request-id": [ - "6e16025f-0b4d-4596-b4fa-318573604956" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764\",\r\n \"name\": \"cscrptestps4764\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\",\r\n \"vmSize\": \"Standard_D2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 2,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://6u33bfhtxehtediag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1537" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateContainerService3Min;9,Microsoft.Compute/CreateUpdateContainerService30Min;97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "f058cd7c-4d61-4081-aab2-06320b35f66d" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "75cae9f0-b005-49c1-b326-515b15da85a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230000Z:75cae9f0-b005-49c1-b326-515b15da85a2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:59:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;148,Microsoft.Compute/GetOperationStatus30Min;1441" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "124965e1-c0f0-4326-a67a-1919410a6f2b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-correlation-request-id": [ - "f5dde3e2-1017-4f82-8e3c-6e730cbf3eb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225350Z:f5dde3e2-1017-4f82-8e3c-6e730cbf3eb1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:53:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;145,Microsoft.Compute/GetOperationStatus30Min;1438" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "00406f66-a58d-4510-8f22-1a1fb6e0e374" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "d7bb79e5-c9b7-4fa3-ab77-3c40cb2554a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225420Z:d7bb79e5-c9b7-4fa3-ab77-3c40cb2554a7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:54:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;142,Microsoft.Compute/GetOperationStatus30Min;1435" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "45dcc346-3f45-42de-b189-27bf7ba1d4c3" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-correlation-request-id": [ - "2cfea3ea-fdf8-497a-8b12-c53277f440dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225451Z:2cfea3ea-fdf8-497a-8b12-c53277f440dd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:54:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;139,Microsoft.Compute/GetOperationStatus30Min;1432" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "32ba4021-fb8c-4c5b-99bf-33d2f2abfd44" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "461dac9c-92cd-4049-bdd9-b615fdf172d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225521Z:461dac9c-92cd-4049-bdd9-b615fdf172d9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:55:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;136,Microsoft.Compute/GetOperationStatus30Min;1429" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "c4529630-1fbb-4e23-bdf4-8430f3a8dffd" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "98426c43-95af-48eb-8aa5-64144032f741" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225551Z:98426c43-95af-48eb-8aa5-64144032f741" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:55:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1426" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "9c04d537-4771-43a6-ad64-b67b69882983" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "75b6b1ae-fc66-45ae-a78b-befc00cdbc77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225622Z:75b6b1ae-fc66-45ae-a78b-befc00cdbc77" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:56:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1423" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "a59422cf-da29-4d29-a35a-823d8e03ec5e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-correlation-request-id": [ - "d19a5d20-9878-4052-b090-ef5631408b63" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225652Z:d19a5d20-9878-4052-b090-ef5631408b63" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:56:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1420" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "43b53899-fd15-4b4d-99bb-805d96355a76" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "cde5e8ce-7695-4a2b-8082-9969c56655ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225722Z:cde5e8ce-7695-4a2b-8082-9969c56655ae" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:57:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1417" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "0b750ee5-27d5-4cfa-bce6-fb3e61648781" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "96cc2361-5ab6-4a54-8636-1478f2171b60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225753Z:96cc2361-5ab6-4a54-8636-1478f2171b60" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:57:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;134,Microsoft.Compute/GetOperationStatus30Min;1415" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "694e124e-2093-4b4c-b01d-d1a1c7525039" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "20cc83e3-fb70-46eb-82b0-c727325b82ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225823Z:20cc83e3-fb70-46eb-82b0-c727325b82ea" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:58:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;134,Microsoft.Compute/GetOperationStatus30Min;1412" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "5867b99c-a195-4e07-9759-e5c949f89ece" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "c3a5014c-c788-4005-a141-8ece2c1e055e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225854Z:c3a5014c-c788-4005-a141-8ece2c1e055e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:58:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1409" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "41b84d55-35bb-4148-943a-00c280bc6512" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-correlation-request-id": [ - "d820b500-28a5-4ab1-9256-ab801c22f14d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225924Z:d820b500-28a5-4ab1-9256-ab801c22f14d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:59:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"endTime\": \"2018-06-01T15:59:49.110188-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "183" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1406" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "7fd0f926-35e2-40ac-9d81-ab3a2734e96e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-correlation-request-id": [ - "3d4551a7-861d-490c-9d32-59d78596a616" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225955Z:3d4551a7-861d-490c-9d32-59d78596a616" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:59:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764\",\r\n \"name\": \"cscrptestps4764\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\",\r\n \"fqdn\": \"mastercrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\",\r\n \"fqdn\": \"apcrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://6u33bfhtxehtediag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1688" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerService3Min;39,Microsoft.Compute/GetContainerService30Min;391" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "16cf2b26-5b4b-4409-b8bc-554ffc6f0c2c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-correlation-request-id": [ - "87d36b4a-ce26-471a-b4fe-775d86695221" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225955Z:87d36b4a-ce26-471a-b4fe-775d86695221" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:59:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1fd14e3c-8c3f-4352-bdbe-62a0419213c9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764\",\r\n \"name\": \"cscrptestps4764\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\",\r\n \"fqdn\": \"mastercrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\",\r\n \"fqdn\": \"apcrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://6u33bfhtxehtediag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1688" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerService3Min;38,Microsoft.Compute/GetContainerService30Min;390" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "97e170ef-4cc7-45cc-bcf2-e684148207ed" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-correlation-request-id": [ - "ee6cffd2-6658-4a41-b138-81d6511bda18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225955Z:ee6cffd2-6658-4a41-b138-81d6511bda18" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:59:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764\",\r\n \"name\": \"cscrptestps4764\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\",\r\n \"fqdn\": \"mastercrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 2,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\",\r\n \"fqdn\": \"apcrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://6u33bfhtxehtediag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1688" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerService3Min;37,Microsoft.Compute/GetContainerService30Min;385" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "e4e00281-ee4c-48fb-97bc-9f39ffa6d29c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], - "x-ms-correlation-request-id": [ - "ba3188d4-8025-42f4-b878-f106723b4220" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230333Z:ba3188d4-8025-42f4-b878-f106723b4220" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:03:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "541c4cf1-d551-46fa-9185-1c4585c75532" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764\",\r\n \"name\": \"cscrptestps4764\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\",\r\n \"fqdn\": \"mastercrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 2,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\",\r\n \"fqdn\": \"apcrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://6u33bfhtxehtediag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1688" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerService3Min;36,Microsoft.Compute/GetContainerService30Min;384" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "a6a8f5fa-e2ba-4a34-9af0-dd4884ab1429" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "d6307729-6673-4a78-96a4-67f4982f04bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230334Z:d6307729-6673-4a78-96a4-67f4982f04bf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:03:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;137,Microsoft.Compute/GetOperationStatus30Min;1405" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "7cadc046-5109-4e1f-8c06-38c271f9fe1f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "b785d87f-4d9d-4f26-8d2c-3c79c0c412bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230030Z:b785d87f-4d9d-4f26-8d2c-3c79c0c412bb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:00:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;139,Microsoft.Compute/GetOperationStatus30Min;1404" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "74c831e4-23a1-4cae-80c1-f4d19b18683e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-correlation-request-id": [ - "c8dd73dd-42ad-46ee-ace9-3a522f5f7ccb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230101Z:c8dd73dd-42ad-46ee-ace9-3a522f5f7ccb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:01:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;141,Microsoft.Compute/GetOperationStatus30Min;1403" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "8f0b91cb-ba13-413d-ac38-7e65970890fc" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], - "x-ms-correlation-request-id": [ - "620d7a07-c38a-4837-9ccf-46175bb4e0ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230131Z:620d7a07-c38a-4837-9ccf-46175bb4e0ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:01:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;143,Microsoft.Compute/GetOperationStatus30Min;1402" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "9ff57074-ebae-45a6-81ef-fe3e1c3dc287" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "a755b278-bf3b-457d-b79d-d94a774525ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230201Z:a755b278-bf3b-457d-b79d-d94a774525ab" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:02:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;144,Microsoft.Compute/GetOperationStatus30Min;1401" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "2bbe3cd8-111b-46de-aaae-c7c920c16ddf" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-correlation-request-id": [ - "a4955a0e-3cf0-424f-bb94-3f9e9f8d3fa1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230232Z:a4955a0e-3cf0-424f-bb94-3f9e9f8d3fa1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:02:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;144,Microsoft.Compute/GetOperationStatus30Min;1400" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "c937228f-c6c4-434b-ac2c-a3073368c917" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "8f49c372-b559-4d15-91f8-334ae02447b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230302Z:8f49c372-b559-4d15-91f8-334ae02447b4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:03:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"endTime\": \"2018-06-01T16:03:08.8649552-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;144,Microsoft.Compute/GetOperationStatus30Min;1399" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "d2f38a43-03a1-4c53-aaea-fef8a0da7ed9" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "48e155d0-85a8-40cb-8e2e-d91f3381a1be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230333Z:48e155d0-85a8-40cb-8e2e-d91f3381a1be" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:03:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f261612d-529b-4437-a70d-52ade3a06f7f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f0d7dcd5-2708-41c4-8eb1-900c539bf8ab?api-version=2017-01-31" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteContainerService3Min;29,Microsoft.Compute/DeleteContainerService30Min;148" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "f0d7dcd5-2708-41c4-8eb1-900c539bf8ab" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f0d7dcd5-2708-41c4-8eb1-900c539bf8ab?monitor=true&api-version=2017-01-31" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "fdc35d4a-d949-4ab7-a1bb-d26d7eb87362" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230335Z:fdc35d4a-d949-4ab7-a1bb-d26d7eb87362" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:03:35 GMT" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f0d7dcd5-2708-41c4-8eb1-900c539bf8ab?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjBkN2RjZDUtMjcwOC00MWM0LThlYjEtOTAwYzUzOWJmOGFiP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T16:03:35.3054954-07:00\",\r\n \"endTime\": \"2018-06-01T16:03:35.3211269-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f0d7dcd5-2708-41c4-8eb1-900c539bf8ab\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;143,Microsoft.Compute/GetOperationStatus30Min;1397" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "91f5680e-38eb-4c39-972f-a78df02abd7c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "c2470cf6-8798-4b0f-a462-c6a37dff5efb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230405Z:c2470cf6-8798-4b0f-a462-c6a37dff5efb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f0d7dcd5-2708-41c4-8eb1-900c539bf8ab?monitor=true&api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjBkN2RjZDUtMjcwOC00MWM0LThlYjEtOTAwYzUzOWJmOGFiP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;142,Microsoft.Compute/GetOperationStatus30Min;1396" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "b2d026ef-daa4-47b7-9733-497251827afb" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "4de66064-0444-41db-a8ee-3dc98fc3b31d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230405Z:4de66064-0444-41db-a8ee-3dc98fc3b31d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4764?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ3NjQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "db3cc149-6e48-4c04-a663-176c3e4b5670" - ], - "x-ms-correlation-request-id": [ - "db3cc149-6e48-4c04-a663-176c3e4b5670" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230409Z:db3cc149-6e48-4c04-a663-176c3e4b5670" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "bf62f969-fc93-4972-bced-297de1694eb1" - ], - "x-ms-correlation-request-id": [ - "bf62f969-fc93-4972-bced-297de1694eb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230410Z:bf62f969-fc93-4972-bced-297de1694eb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "7730f63c-0887-4c6a-b83b-c22e86819624" - ], - "x-ms-correlation-request-id": [ - "7730f63c-0887-4c6a-b83b-c22e86819624" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230425Z:7730f63c-0887-4c6a-b83b-c22e86819624" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:24 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-request-id": [ - "5ab587ed-8325-444d-992f-c6e7e5355708" - ], - "x-ms-correlation-request-id": [ - "5ab587ed-8325-444d-992f-c6e7e5355708" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230441Z:5ab587ed-8325-444d-992f-c6e7e5355708" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-request-id": [ - "276547f7-83ee-4e04-9bf3-1107132abe2d" - ], - "x-ms-correlation-request-id": [ - "276547f7-83ee-4e04-9bf3-1107132abe2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230456Z:276547f7-83ee-4e04-9bf3-1107132abe2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "x-ms-request-id": [ - "80fb2cc6-5e7e-4742-989f-044ca78aac02" - ], - "x-ms-correlation-request-id": [ - "80fb2cc6-5e7e-4742-989f-044ca78aac02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230512Z:80fb2cc6-5e7e-4742-989f-044ca78aac02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:05:11 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-request-id": [ - "f8609460-8df1-47e3-8e90-e56a49c6a230" - ], - "x-ms-correlation-request-id": [ - "f8609460-8df1-47e3-8e90-e56a49c6a230" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230527Z:f8609460-8df1-47e3-8e90-e56a49c6a230" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:05:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-request-id": [ - "9c35bd5c-8368-46e5-b6ae-73e6520431d1" - ], - "x-ms-correlation-request-id": [ - "9c35bd5c-8368-46e5-b6ae-73e6520431d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230542Z:9c35bd5c-8368-46e5-b6ae-73e6520431d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:05:42 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-request-id": [ - "198b9d53-8ed1-4916-9b9c-bca71db0ede9" - ], - "x-ms-correlation-request-id": [ - "198b9d53-8ed1-4916-9b9c-bca71db0ede9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230558Z:198b9d53-8ed1-4916-9b9c-bca71db0ede9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:05:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-request-id": [ - "e4154744-df89-40e5-a9b9-557f1e8ea27b" - ], - "x-ms-correlation-request-id": [ - "e4154744-df89-40e5-a9b9-557f1e8ea27b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230613Z:e4154744-df89-40e5-a9b9-557f1e8ea27b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:06:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-request-id": [ - "4e082da3-2692-46e0-bdb3-0616298f5a9a" - ], - "x-ms-correlation-request-id": [ - "4e082da3-2692-46e0-bdb3-0616298f5a9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230629Z:4e082da3-2692-46e0-bdb3-0616298f5a9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:06:29 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-request-id": [ - "451984aa-bcf0-4810-a946-e66c0e16a62f" - ], - "x-ms-correlation-request-id": [ - "451984aa-bcf0-4810-a946-e66c0e16a62f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230644Z:451984aa-bcf0-4810-a946-e66c0e16a62f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:06:44 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-request-id": [ - "0da9c116-0af1-45a6-904c-a668289386a5" - ], - "x-ms-correlation-request-id": [ - "0da9c116-0af1-45a6-904c-a668289386a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230659Z:0da9c116-0af1-45a6-904c-a668289386a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:06:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-request-id": [ - "d195d52d-378d-4810-b3fe-fb078c43ee86" - ], - "x-ms-correlation-request-id": [ - "d195d52d-378d-4810-b3fe-fb078c43ee86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230715Z:d195d52d-378d-4810-b3fe-fb078c43ee86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:07:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-request-id": [ - "ab76b3d7-ebd8-4bfc-a363-5c10dfc2530e" - ], - "x-ms-correlation-request-id": [ - "ab76b3d7-ebd8-4bfc-a363-5c10dfc2530e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230730Z:ab76b3d7-ebd8-4bfc-a363-5c10dfc2530e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:07:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-request-id": [ - "c6930268-5d7f-410b-a348-30b35cef28f4" - ], - "x-ms-correlation-request-id": [ - "c6930268-5d7f-410b-a348-30b35cef28f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230746Z:c6930268-5d7f-410b-a348-30b35cef28f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:07:45 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-request-id": [ - "a676246d-df47-4c9b-a641-22a518072100" - ], - "x-ms-correlation-request-id": [ - "a676246d-df47-4c9b-a641-22a518072100" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230801Z:a676246d-df47-4c9b-a641-22a518072100" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:08:01 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-request-id": [ - "ae347ae5-b34c-4a42-81e2-4c49fb3e99f3" - ], - "x-ms-correlation-request-id": [ - "ae347ae5-b34c-4a42-81e2-4c49fb3e99f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230817Z:ae347ae5-b34c-4a42-81e2-4c49fb3e99f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:08:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-request-id": [ - "f28790fa-a1df-48ca-bc38-42ca798c685f" - ], - "x-ms-correlation-request-id": [ - "f28790fa-a1df-48ca-bc38-42ca798c685f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230832Z:f28790fa-a1df-48ca-bc38-42ca798c685f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:08:31 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-request-id": [ - "97066a70-37d6-427b-9867-aa4f9aca9e81" - ], - "x-ms-correlation-request-id": [ - "97066a70-37d6-427b-9867-aa4f9aca9e81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230847Z:97066a70-37d6-427b-9867-aa4f9aca9e81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:08:47 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-request-id": [ - "6a5248c7-85b9-4617-9fb2-f4abb0cefcdf" - ], - "x-ms-correlation-request-id": [ - "6a5248c7-85b9-4617-9fb2-f4abb0cefcdf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230903Z:6a5248c7-85b9-4617-9fb2-f4abb0cefcdf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:09:02 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], - "x-ms-request-id": [ - "23326ee4-ec41-4940-bfa5-00c562e5f63a" - ], - "x-ms-correlation-request-id": [ - "23326ee4-ec41-4940-bfa5-00c562e5f63a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230918Z:23326ee4-ec41-4940-bfa5-00c562e5f63a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:09:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" - ], - "x-ms-request-id": [ - "45c58a30-67dc-4671-b440-4d2eb1e321f9" - ], - "x-ms-correlation-request-id": [ - "45c58a30-67dc-4671-b440-4d2eb1e321f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230934Z:45c58a30-67dc-4671-b440-4d2eb1e321f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:09:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-request-id": [ - "89544007-3fd9-4045-bccb-3e380332a842" - ], - "x-ms-correlation-request-id": [ - "89544007-3fd9-4045-bccb-3e380332a842" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230949Z:89544007-3fd9-4045-bccb-3e380332a842" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:09:48 GMT" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "Test-ContainerServiceUpdate": [ - "crptestps4764" - ] - }, - "Variables": { - "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e" - } -} \ No newline at end of file diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index c777779e1096..796eef18ce4a 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -20,6 +20,14 @@ --> ## Upcoming Release +* Removed all `ContainerService` cmdlets. The Container Service API was deprecated in January 2020. + - `Add-AzureRmContainerServiceAgentPoolProfileCommand` + - `Get-AzContainerService` + - `New-AzContainerService` + - `New-AzContainerServiceConfig` + - `Remove-AzContainerService` + - `Remove-AzContainerServiceAgentPoolProfile` + - `Update-AzContainerService` ## Version 4.9.0 * Added parameter `-EnableAutomaticUpgrade` to `Set-AzVmExtension` and `Add-AzVmssExtension`. diff --git a/src/Compute/Compute/Generated/ContainerService/Config/AddAzureRmContainerServiceAgentPoolProfileCommand.cs b/src/Compute/Compute/Generated/ContainerService/Config/AddAzureRmContainerServiceAgentPoolProfileCommand.cs deleted file mode 100644 index 63780d2e9ee3..000000000000 --- a/src/Compute/Compute/Generated/ContainerService/Config/AddAzureRmContainerServiceAgentPoolProfileCommand.cs +++ /dev/null @@ -1,95 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using Microsoft.Azure.Commands.Compute.Automation.Models; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; - -namespace Microsoft.Azure.Commands.Compute.Automation -{ - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsCommon.Add, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerServiceAgentPoolProfile", SupportsShouldProcess = true)] - [OutputType(typeof(PSContainerService))] - public partial class AddAzureRmContainerServiceAgentPoolProfileCommand : Microsoft.Azure.Commands.ResourceManager.Common.AzureRMCmdlet - { - [Parameter( - Mandatory = true, - Position = 0, - ValueFromPipeline = true, - ValueFromPipelineByPropertyName = true)] - public PSContainerService ContainerService { get; set; } - - [Parameter( - Mandatory = false, - Position = 1, - ValueFromPipelineByPropertyName = true)] - public string Name { get; set; } - - [Parameter( - Mandatory = false, - Position = 2, - ValueFromPipelineByPropertyName = true)] - public int Count { get; set; } - - [Parameter( - Mandatory = false, - Position = 3, - ValueFromPipelineByPropertyName = true)] - public string VmSize { get; set; } - - [Parameter( - Mandatory = false, - Position = 4, - ValueFromPipelineByPropertyName = true)] - public string DnsPrefix { get; set; } - - protected override void ProcessRecord() - { - if (ShouldProcess("ContainerService", "Add")) - { - Run(); - } - } - - private void Run() - { - // AgentPoolProfiles - if (this.ContainerService.AgentPoolProfiles == null) - { - this.ContainerService.AgentPoolProfiles = new List(); - } - - var vAgentPoolProfiles = new ContainerServiceAgentPoolProfile(); - - vAgentPoolProfiles.Name = this.IsParameterBound(c => c.Name) ? this.Name : null; - vAgentPoolProfiles.Count = this.Count; - vAgentPoolProfiles.VmSize = this.IsParameterBound(c => c.VmSize) ? this.VmSize : null; - vAgentPoolProfiles.DnsPrefix = this.IsParameterBound(c => c.DnsPrefix) ? this.DnsPrefix : null; - this.ContainerService.AgentPoolProfiles.Add(vAgentPoolProfiles); - WriteObject(this.ContainerService); - } - } -} diff --git a/src/Compute/Compute/Generated/ContainerService/Config/NewAzureRmContainerServiceConfigCommand.cs b/src/Compute/Compute/Generated/ContainerService/Config/NewAzureRmContainerServiceConfigCommand.cs deleted file mode 100644 index 47f4cb4f5e03..000000000000 --- a/src/Compute/Compute/Generated/ContainerService/Config/NewAzureRmContainerServiceConfigCommand.cs +++ /dev/null @@ -1,284 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using Microsoft.Azure.Commands.Compute.Automation.Models; -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; - -namespace Microsoft.Azure.Commands.Compute.Automation -{ - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerServiceConfig", SupportsShouldProcess = true)] - [OutputType(typeof(PSContainerService))] - public partial class NewAzureRmContainerServiceConfigCommand : Microsoft.Azure.Commands.ResourceManager.Common.AzureRMCmdlet - { - [Parameter( - Mandatory = false, - Position = 0, - ValueFromPipelineByPropertyName = true)] - [LocationCompleter("Microsoft.ContainerService/containerServices")] - public string Location { get; set; } - - [Parameter( - Mandatory = false, - Position = 1, - ValueFromPipelineByPropertyName = true)] - public Hashtable Tag { get; set; } - - [Parameter( - Mandatory = false, - Position = 2, - ValueFromPipelineByPropertyName = true)] - public ContainerServiceOrchestratorTypes? OrchestratorType { get; set; } - - [Parameter( - Mandatory = false, - Position = 3, - ValueFromPipelineByPropertyName = true)] - public int MasterCount { get; set; } - - [Parameter( - Mandatory = false, - Position = 4, - ValueFromPipelineByPropertyName = true)] - public string MasterDnsPrefix { get; set; } - - [Parameter( - Mandatory = false, - Position = 5, - ValueFromPipelineByPropertyName = true)] - public ContainerServiceAgentPoolProfile[] AgentPoolProfile { get; set; } - - [Parameter( - Mandatory = false, - Position = 6, - ValueFromPipelineByPropertyName = true)] - public string WindowsProfileAdminUsername { get; set; } - - [Parameter( - Mandatory = false, - Position = 7, - ValueFromPipelineByPropertyName = true)] - public string WindowsProfileAdminPassword { get; set; } - - [Parameter( - Mandatory = false, - Position = 8, - ValueFromPipelineByPropertyName = true)] - public string AdminUsername { get; set; } - - [Parameter( - Mandatory = false, - Position = 9, - ValueFromPipelineByPropertyName = true)] - public string[] SshPublicKey { get; set; } - - [Parameter( - Mandatory = false, - Position = 10, - ValueFromPipelineByPropertyName = true)] - public bool VmDiagnosticsEnabled { get; set; } - - [Parameter( - Mandatory = false, - ValueFromPipelineByPropertyName = true)] - public string CustomProfileOrchestrator { get; set; } - - [Parameter( - Mandatory = false, - ValueFromPipelineByPropertyName = true)] - public string ServicePrincipalProfileClientId { get; set; } - - [Parameter( - Mandatory = false, - ValueFromPipelineByPropertyName = true)] - public string ServicePrincipalProfileSecret { get; set; } - - protected override void ProcessRecord() - { - if (ShouldProcess("ContainerService", "New")) - { - Run(); - } - } - - private void Run() - { - // OrchestratorProfile - ContainerServiceOrchestratorProfile vOrchestratorProfile = null; - - // CustomProfile - ContainerServiceCustomProfile vCustomProfile = null; - - // ServicePrincipalProfile - ContainerServiceServicePrincipalProfile vServicePrincipalProfile = null; - - // MasterProfile - ContainerServiceMasterProfile vMasterProfile = null; - - // WindowsProfile - ContainerServiceWindowsProfile vWindowsProfile = null; - - // LinuxProfile - ContainerServiceLinuxProfile vLinuxProfile = null; - - // DiagnosticsProfile - ContainerServiceDiagnosticsProfile vDiagnosticsProfile = null; - - if (this.IsParameterBound(c => c.OrchestratorType)) - { - if (vOrchestratorProfile == null) - { - vOrchestratorProfile = new ContainerServiceOrchestratorProfile(); - } - vOrchestratorProfile.OrchestratorType = this.OrchestratorType.Value; - } - - if (this.IsParameterBound(c => c.CustomProfileOrchestrator)) - { - if (vCustomProfile == null) - { - vCustomProfile = new ContainerServiceCustomProfile(); - } - vCustomProfile.Orchestrator = this.CustomProfileOrchestrator; - } - - if (this.IsParameterBound(c => c.ServicePrincipalProfileClientId)) - { - if (vServicePrincipalProfile == null) - { - vServicePrincipalProfile = new ContainerServiceServicePrincipalProfile(); - } - vServicePrincipalProfile.ClientId = this.ServicePrincipalProfileClientId; - } - - if (this.IsParameterBound(c => c.ServicePrincipalProfileSecret)) - { - if (vServicePrincipalProfile == null) - { - vServicePrincipalProfile = new ContainerServiceServicePrincipalProfile(); - } - vServicePrincipalProfile.Secret = this.ServicePrincipalProfileSecret; - } - - if (this.IsParameterBound(c => c.MasterCount)) - { - if (vMasterProfile == null) - { - vMasterProfile = new ContainerServiceMasterProfile(); - } - vMasterProfile.Count = this.MasterCount; - } - - if (this.IsParameterBound(c => c.MasterDnsPrefix)) - { - if (vMasterProfile == null) - { - vMasterProfile = new ContainerServiceMasterProfile(); - } - vMasterProfile.DnsPrefix = this.MasterDnsPrefix; - } - - if (this.IsParameterBound(c => c.WindowsProfileAdminUsername)) - { - if (vWindowsProfile == null) - { - vWindowsProfile = new ContainerServiceWindowsProfile(); - } - vWindowsProfile.AdminUsername = this.WindowsProfileAdminUsername; - } - - if (this.IsParameterBound(c => c.WindowsProfileAdminPassword)) - { - if (vWindowsProfile == null) - { - vWindowsProfile = new ContainerServiceWindowsProfile(); - } - vWindowsProfile.AdminPassword = this.WindowsProfileAdminPassword; - } - - if (this.IsParameterBound(c => c.AdminUsername)) - { - if (vLinuxProfile == null) - { - vLinuxProfile = new ContainerServiceLinuxProfile(); - } - vLinuxProfile.AdminUsername = this.AdminUsername; - } - - - if (this.IsParameterBound(c => c.SshPublicKey)) - { - if (vLinuxProfile == null) - { - vLinuxProfile = new ContainerServiceLinuxProfile(); - } - if (vLinuxProfile.Ssh == null) - { - vLinuxProfile.Ssh = new ContainerServiceSshConfiguration(); - } - if (vLinuxProfile.Ssh.PublicKeys == null) - { - vLinuxProfile.Ssh.PublicKeys = new List(); - } - foreach (var element in this.SshPublicKey) - { - var vPublicKeys = new ContainerServiceSshPublicKey(); - vPublicKeys.KeyData = element; - vLinuxProfile.Ssh.PublicKeys.Add(vPublicKeys); - } - } - - if (vDiagnosticsProfile == null) - { - vDiagnosticsProfile = new ContainerServiceDiagnosticsProfile(); - } - if (vDiagnosticsProfile.VmDiagnostics == null) - { - vDiagnosticsProfile.VmDiagnostics = new ContainerServiceVMDiagnostics(); - } - - vDiagnosticsProfile.VmDiagnostics.Enabled = this.VmDiagnosticsEnabled; - - var vContainerService = new PSContainerService - { - Location = this.IsParameterBound(c => c.Location) ? this.Location : null, - Tags = this.IsParameterBound(c => c.Tag) ? this.Tag.Cast().ToDictionary(ht => (string)ht.Key, ht => (string)ht.Value) : null, - AgentPoolProfiles = this.IsParameterBound(c => c.AgentPoolProfile) ? this.AgentPoolProfile : null, - OrchestratorProfile = vOrchestratorProfile, - CustomProfile = vCustomProfile, - ServicePrincipalProfile = vServicePrincipalProfile, - MasterProfile = vMasterProfile, - WindowsProfile = vWindowsProfile, - LinuxProfile = vLinuxProfile, - DiagnosticsProfile = vDiagnosticsProfile, - }; - - WriteObject(vContainerService); - } - } -} diff --git a/src/Compute/Compute/Generated/ContainerService/Config/RemoveAzureRmContainerServiceAgentPoolProfileCommand.cs b/src/Compute/Compute/Generated/ContainerService/Config/RemoveAzureRmContainerServiceAgentPoolProfileCommand.cs deleted file mode 100644 index 98e048b9bd19..000000000000 --- a/src/Compute/Compute/Generated/ContainerService/Config/RemoveAzureRmContainerServiceAgentPoolProfileCommand.cs +++ /dev/null @@ -1,77 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using Microsoft.Azure.Commands.Compute.Automation.Models; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; - -namespace Microsoft.Azure.Commands.Compute.Automation -{ - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerServiceAgentPoolProfile", SupportsShouldProcess = true)] - [OutputType(typeof(PSContainerService))] - public partial class RemoveAzureRmContainerServiceAgentPoolProfileCommand : Microsoft.Azure.Commands.ResourceManager.Common.AzureRMCmdlet - { - [Parameter( - Mandatory = true, - Position = 0, - ValueFromPipeline = true, - ValueFromPipelineByPropertyName = true)] - public PSContainerService ContainerService { get; set; } - - [Parameter( - Mandatory = true, - Position = 1, - ParameterSetName = "NameParameterSet", - ValueFromPipelineByPropertyName = true)] - public string Name { get; set; } - - protected override void ProcessRecord() - { - // AgentPoolProfiles - if (this.ContainerService.AgentPoolProfiles == null) - { - WriteObject(this.ContainerService); - return; - } - var vAgentPoolProfiles = this.ContainerService.AgentPoolProfiles.First - (e => - (this.Name != null && e.Name == this.Name) - ); - - if (vAgentPoolProfiles != null) - { - this.ContainerService.AgentPoolProfiles.Remove(vAgentPoolProfiles); - } - - if (this.ContainerService.AgentPoolProfiles.Count == 0) - { - this.ContainerService.AgentPoolProfiles = null; - } - WriteObject(this.ContainerService); - } - } -} diff --git a/src/Compute/Compute/Generated/ContainerService/ContainerServiceCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/ContainerService/ContainerServiceCreateOrUpdateMethod.cs deleted file mode 100644 index 0cffe475a89f..000000000000 --- a/src/Compute/Compute/Generated/ContainerService/ContainerServiceCreateOrUpdateMethod.cs +++ /dev/null @@ -1,136 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using Microsoft.Azure.Commands.Compute.Automation.Models; -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.Compute; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; - -namespace Microsoft.Azure.Commands.Compute.Automation -{ - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerService", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)] - [OutputType(typeof(PSContainerService))] - public partial class NewAzureRmContainerService : ComputeAutomationBaseCmdlet - { - public override void ExecuteCmdlet() - { - base.ExecuteCmdlet(); - ExecuteClientAction(() => - { - if (ShouldProcess(this.Name, VerbsCommon.New)) - { - string resourceGroupName = this.ResourceGroupName; - string containerServiceName = this.Name; - ContainerService parameters = new ContainerService(); - ComputeAutomationAutoMapperProfile.Mapper.Map(this.ContainerService, parameters); - - var result = ContainerServicesClient.CreateOrUpdate(resourceGroupName, containerServiceName, parameters); - var psObject = new PSContainerService(); - ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); - WriteObject(psObject); - } - }); - } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 0, - Mandatory = true, - ValueFromPipelineByPropertyName = true)] - [ResourceGroupCompleter] - public string ResourceGroupName { get; set; } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 1, - Mandatory = true, - ValueFromPipelineByPropertyName = true)] - public string Name { get; set; } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 2, - Mandatory = true, - ValueFromPipeline = true)] - public PSContainerService ContainerService { get; set; } - - [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] - public SwitchParameter AsJob { get; set; } - } - - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsData.Update, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerService", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)] - [OutputType(typeof(PSContainerService))] - public partial class UpdateAzureRmContainerService : ComputeAutomationBaseCmdlet - { - public override void ExecuteCmdlet() - { - base.ExecuteCmdlet(); - ExecuteClientAction(() => - { - if (ShouldProcess(this.Name, VerbsData.Update)) - { - string resourceGroupName = this.ResourceGroupName; - string containerServiceName = this.Name; - ContainerService parameters = new ContainerService(); - ComputeAutomationAutoMapperProfile.Mapper.Map(this.ContainerService, parameters); - - var result = ContainerServicesClient.CreateOrUpdate(resourceGroupName, containerServiceName, parameters); - var psObject = new PSContainerService(); - ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); - WriteObject(psObject); - } - }); - } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 0, - Mandatory = true, - ValueFromPipelineByPropertyName = true)] - [ResourceGroupCompleter] - public string ResourceGroupName { get; set; } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 1, - Mandatory = true, - ValueFromPipelineByPropertyName = true)] - public string Name { get; set; } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 2, - Mandatory = true, - ValueFromPipeline = true)] - public PSContainerService ContainerService { get; set; } - - [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] - public SwitchParameter AsJob { get; set; } - } -} diff --git a/src/Compute/Compute/Generated/ContainerService/ContainerServiceDeleteMethod.cs b/src/Compute/Compute/Generated/ContainerService/ContainerServiceDeleteMethod.cs deleted file mode 100644 index 6102926ecb71..000000000000 --- a/src/Compute/Compute/Generated/ContainerService/ContainerServiceDeleteMethod.cs +++ /dev/null @@ -1,93 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using Microsoft.Azure.Commands.Compute.Automation.Models; -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.Compute; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; - -namespace Microsoft.Azure.Commands.Compute.Automation -{ - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerService", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)] - [OutputType(typeof(PSOperationStatusResponse))] - public partial class RemoveAzureRmContainerService : ComputeAutomationBaseCmdlet - { - public override void ExecuteCmdlet() - { - base.ExecuteCmdlet(); - ExecuteClientAction(() => - { - if (ShouldProcess(this.Name, VerbsCommon.Remove) - && (this.Force.IsPresent || - this.ShouldContinue(Properties.Resources.ResourceRemovalConfirmation, - "Remove-AzContainerService operation"))) - { - string resourceGroupName = this.ResourceGroupName; - string containerServiceName = this.Name; - - var result = ContainerServicesClient.DeleteWithHttpMessagesAsync(resourceGroupName, containerServiceName).GetAwaiter().GetResult(); - PSOperationStatusResponse output = new PSOperationStatusResponse - { - StartTime = this.StartTime, - EndTime = DateTime.Now - }; - - if (result != null && result.Request != null && result.Request.RequestUri != null) - { - output.Name = GetOperationIdFromUrlString(result.Request.RequestUri.ToString()); - } - - WriteObject(output); - } - }); - } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 0, - Mandatory = true, - ValueFromPipelineByPropertyName = true)] - [ResourceGroupCompleter] - public string ResourceGroupName { get; set; } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 1, - Mandatory = true, - ValueFromPipelineByPropertyName = true)] - [ResourceNameCompleter("Microsoft.ContainerService/containerServices", "ResourceGroupName")] - public string Name { get; set; } - - [Parameter( - Mandatory = false)] - public SwitchParameter Force { get; set; } - - [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] - public SwitchParameter AsJob { get; set; } - } -} diff --git a/src/Compute/Compute/Generated/ContainerService/ContainerServiceGetMethod.cs b/src/Compute/Compute/Generated/ContainerService/ContainerServiceGetMethod.cs deleted file mode 100644 index 3d626fd91ebc..000000000000 --- a/src/Compute/Compute/Generated/ContainerService/ContainerServiceGetMethod.cs +++ /dev/null @@ -1,116 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using Microsoft.Azure.Commands.Compute.Automation.Models; -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.Compute; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; - -namespace Microsoft.Azure.Commands.Compute.Automation -{ - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerService", DefaultParameterSetName = "DefaultParameter")] - [OutputType(typeof(PSContainerService))] - public partial class GetAzureRmContainerService : ComputeAutomationBaseCmdlet - { - public override void ExecuteCmdlet() - { - base.ExecuteCmdlet(); - ExecuteClientAction(() => - { - string resourceGroupName = this.ResourceGroupName; - string containerServiceName = this.Name; - - if (ShouldGetByName(resourceGroupName, containerServiceName)) - { - var result = ContainerServicesClient.Get(resourceGroupName, containerServiceName); - var psObject = new PSContainerService(); - ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); - WriteObject(psObject); - } - else if (ShouldListByResourceGroup(resourceGroupName, containerServiceName)) - { - var result = ContainerServicesClient.ListByResourceGroup(resourceGroupName); - var resultList = result.ToList(); - var nextPageLink = result.NextPageLink; - while (!string.IsNullOrEmpty(nextPageLink)) - { - var pageResult = ContainerServicesClient.ListByResourceGroupNext(nextPageLink); - foreach (var pageItem in pageResult) - { - resultList.Add(pageItem); - } - nextPageLink = pageResult.NextPageLink; - } - var psObject = new List(); - foreach (var r in resultList) - { - psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map(r)); - } - WriteObject(TopLevelWildcardFilter(resourceGroupName, containerServiceName, psObject), true); - } - else - { - var result = ContainerServicesClient.List(); - var resultList = result.ToList(); - var nextPageLink = result.NextPageLink; - while (!string.IsNullOrEmpty(nextPageLink)) - { - var pageResult = ContainerServicesClient.ListNext(nextPageLink); - foreach (var pageItem in pageResult) - { - resultList.Add(pageItem); - } - nextPageLink = pageResult.NextPageLink; - } - var psObject = new List(); - foreach (var r in resultList) - { - psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map(r)); - } - WriteObject(TopLevelWildcardFilter(resourceGroupName, containerServiceName, psObject), true); - } - }); - } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 0, - ValueFromPipelineByPropertyName = true)] - [ResourceGroupCompleter] - [SupportsWildcards] - public string ResourceGroupName { get; set; } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 1, - ValueFromPipelineByPropertyName = true)] - [ResourceNameCompleter("Microsoft.ContainerService/containerServices", "ResourceGroupName")] - [SupportsWildcards] - public string Name { get; set; } - } -} diff --git a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs index a7f73db9290a..58d1ca3b2bb7 100644 --- a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs +++ b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs @@ -56,9 +56,6 @@ private static void Initialize() { var config = new MapperConfiguration(cfg => { - cfg.CreateMap(); - cfg.CreateMap(); - cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); @@ -109,8 +106,6 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); - cfg.CreateMap(); - cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); diff --git a/src/Compute/Compute/Generated/Models/PSContainerService.cs b/src/Compute/Compute/Generated/Models/PSContainerService.cs deleted file mode 100644 index 77613005bf67..000000000000 --- a/src/Compute/Compute/Generated/Models/PSContainerService.cs +++ /dev/null @@ -1,59 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections.Generic; -using System.Text.RegularExpressions; -using Microsoft.Azure.Management.Compute.Models; - -namespace Microsoft.Azure.Commands.Compute.Automation.Models -{ - public partial class PSContainerService - { - // Gets or sets the property of 'ResourceGroupName' - public string ResourceGroupName - { - get - { - if (string.IsNullOrEmpty(Id)) return null; - Regex r = new Regex(@"(.*?)/resourcegroups/(?\S+)/providers/(.*?)", RegexOptions.IgnoreCase); - Match m = r.Match(Id); - return m.Success ? m.Groups["rgname"].Value : null; - } - } - - public string ProvisioningState { get; set; } - public ContainerServiceOrchestratorProfile OrchestratorProfile { get; set; } - public ContainerServiceCustomProfile CustomProfile { get; set; } - public ContainerServiceServicePrincipalProfile ServicePrincipalProfile { get; set; } - public ContainerServiceMasterProfile MasterProfile { get; set; } - public IList AgentPoolProfiles { get; set; } - public ContainerServiceWindowsProfile WindowsProfile { get; set; } - public ContainerServiceLinuxProfile LinuxProfile { get; set; } - public ContainerServiceDiagnosticsProfile DiagnosticsProfile { get; set; } - public string Id { get; set; } - public string Name { get; set; } - public string Type { get; set; } - public string Location { get; set; } - public IDictionary Tags { get; set; } - - } -} diff --git a/src/Compute/Compute/Generated/Models/PSContainerServiceList.cs b/src/Compute/Compute/Generated/Models/PSContainerServiceList.cs deleted file mode 100644 index b4fb06aada66..000000000000 --- a/src/Compute/Compute/Generated/Models/PSContainerServiceList.cs +++ /dev/null @@ -1,31 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -namespace Microsoft.Azure.Commands.Compute.Automation.Models -{ - public class PSContainerServiceList : PSContainerService - { - public PSContainerService ToPSContainerService () - { - return ComputeAutomationAutoMapperProfile.Mapper.Map(this); - } - } -} diff --git a/src/Compute/Compute/help/Add-AzContainerServiceAgentPoolProfile.md b/src/Compute/Compute/help/Add-AzContainerServiceAgentPoolProfile.md deleted file mode 100644 index dd59efa274d7..000000000000 --- a/src/Compute/Compute/help/Add-AzContainerServiceAgentPoolProfile.md +++ /dev/null @@ -1,181 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: C3C65F3E-1192-4B57-87DB-5D371C8FF68E -online version: https://docs.microsoft.com/powershell/module/az.compute/add-azcontainerserviceagentpoolprofile -schema: 2.0.0 ---- - -# Add-AzContainerServiceAgentPoolProfile - -## SYNOPSIS -Adds a container service agent pool profile. - -## SYNTAX - -``` -Add-AzContainerServiceAgentPoolProfile [-ContainerService] [[-Name] ] - [[-Count] ] [[-VmSize] ] [[-DnsPrefix] ] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] -``` - -## DESCRIPTION -The **Add-AzContainerServiceAgentPoolProfile** cmdlet adds a container service agent pool profile to a local container service object. - -## EXAMPLES - -### Example 1: Add a profile -``` -PS C:\> Add-AzContainerServiceAgentPoolProfile -Name "AgentPool01" -VmSize "Standard_A1" -DnsPrefix "APResourceGroup17" -``` - -This command adds a container service agent pool profile to the local container service object. - -## PARAMETERS - -### -ContainerService -Specifies the container service object to which this cmdlet adds an agent pool profile. -To obtain a **ContainerService** object, use the [New-AzContainerServiceConfig](./New-AzContainerServiceConfig.md) cmdlet. - -```yaml -Type: Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService -Parameter Sets: (All) -Aliases: - -Required: True -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName, ByValue) -Accept wildcard characters: False -``` - -### -Count -Specifies the number of agents that host containers. -The acceptable values for this parameter are: integers from 1 to 100. -The default value is 1. - -```yaml -Type: System.Int32 -Parameter Sets: (All) -Aliases: - -Required: False -Position: 2 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DnsPrefix -Specifies the DNS prefix that this cmdlet uses to create the fully qualified domain name for this agent pool. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 4 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Name -Specifies the name of the agent pool profile. -This value must be unique in the context of the subscription and resource group. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmSize -Specifies the size of the virtual machines for the agents. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 3 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -### System.String - -### System.Int32 - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## NOTES - -## RELATED LINKS - -[New-AzContainerServiceConfig](./New-AzContainerServiceConfig.md) - -[Remove-AzContainerServiceAgentPoolProfile](./Remove-AzContainerServiceAgentPoolProfile.md) diff --git a/src/Compute/Compute/help/Get-AzContainerService.md b/src/Compute/Compute/help/Get-AzContainerService.md deleted file mode 100644 index d3bcd6b9be08..000000000000 --- a/src/Compute/Compute/help/Get-AzContainerService.md +++ /dev/null @@ -1,171 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: AFF75E0B-CB88-45ED-9067-7F43E2BA485C -online version: https://docs.microsoft.com/powershell/module/az.compute/get-azcontainerservice -schema: 2.0.0 ---- - -# Get-AzContainerService - -## SYNOPSIS -Gets a container service. - -## SYNTAX - -``` -Get-AzContainerService [[-ResourceGroupName] ] [[-Name] ] - [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **Get-AzContainerService** cmdlet gets a container service. -You can view the properties of a container service, which include state, number of master and agents, and fully qualified domain name of master and agent. - -## EXAMPLES - -### Example 1: Get a container service -``` -PS C:\> Get-AzContainerService -ResourceGroupName "ResourceGroup17" -Name "CSResourceGroup17" - -ResourceGroupName : ResourceGroup17 -ProvisioningState : Succeeded -OrchestratorProfile : - OrchestratorType : DCOS -MasterProfile : - Count : 1 - DnsPrefix : MasterResourceGroup17 - Fqdn : masterresourcegroup17.eastus.cloudapp.azure.com -AgentPoolProfiles[0] : - Name : AgentPool01 - Count : 2 - VmSize : Standard_A1 - DnsPrefix : APResourceGroup17 - Fqdn : apresourcegroup17.eastus.cloudapp.azure.com -LinuxProfile : - AdminUsername : acslinuxadmin - Ssh : - PublicKeys[0] : - KeyData : ssh-rsa xxxxxxxxxxxxxx contoso@microsoft.com -DiagnosticsProfile : - VmDiagnostics : - Enabled : False - StorageUri : https://xxxxxxxxxxx.blob.core.windows.net/ -Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ResourceGroup17/providers/Micr -osoft.ContainerService/containerServices/CSResourceGroup17 -Name : CSResourceGroup17 -Type : Microsoft.ContainerService/ContainerServices -Location : eastus -Tags : {} -``` - -This command gets a container service named CSResourceGroup17. - -### Example 2: Get all container services -``` -PS C:\> Get-AzContainerService - -ResourceGroupName Name Location ProvisioningState ------------------ ---- -------- ----------------- -ResourceGroup17 CSResourceGroup17 eastus Succeeded -ResourceGroup17 CSResourceGroup18 eastus Succeeded -ResourceGroup18 CSResourceGroup19 eastus Succeeded -ResourceGroup18 CSResourceGroup20 eastus Succeeded -``` - -This command gets all container services in subscription. - -### Example 3: Get all container services in resource group -``` -PS C:\> Get-AzContainerService -ResourceGroupName "ResourceGroup17" - -ResourceGroupName Name Location ProvisioningState ------------------ ---- -------- ----------------- -ResourceGroup17 CSResourceGroup17 eastus Succeeded -ResourceGroup17 CSResourceGroup18 eastus Succeeded -``` - -This command gets all container services in ResourceGroup17. - -### Example 4: Get all container services using filter -``` -PS C:\> Get-AzContainerService -Name "CSResourceGroup1*" - -ResourceGroupName Name Location ProvisioningState ------------------ ---- -------- ----------------- -ResourceGroup17 CSResourceGroup17 eastus Succeeded -ResourceGroup17 CSResourceGroup18 eastus Succeeded -ResourceGroup18 CSResourceGroup19 eastus Succeeded -``` - -This command gets all container services starting with "CSResourceGroup1". - -## PARAMETERS - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Name -Specifies the name of the container service that this cmdlet gets. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: True -``` - -### -ResourceGroupName -Specifies the resource group of the container service that this cmdlet gets. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: True -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### System.String - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## NOTES - -## RELATED LINKS - -[New-AzContainerService](./New-AzContainerService.md) - -[Remove-AzContainerService](./Remove-AzContainerService.md) - -[Update-AzContainerService](./Update-AzContainerService.md) - - diff --git a/src/Compute/Compute/help/New-AzContainerService.md b/src/Compute/Compute/help/New-AzContainerService.md deleted file mode 100644 index 82c78675bf7a..000000000000 --- a/src/Compute/Compute/help/New-AzContainerService.md +++ /dev/null @@ -1,175 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: 522F5305-CDF6-41F2-803B-9EEA9E927668 -online version: https://docs.microsoft.com/powershell/module/az.compute/new-azcontainerservice -schema: 2.0.0 ---- - -# New-AzContainerService - -## SYNOPSIS -Creates a container service. - -## SYNTAX - -``` -New-AzContainerService [-ResourceGroupName] [-Name] [-ContainerService] - [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -## DESCRIPTION -The **New-AzContainerService** cmdlet creates a container service. -Specify a container service object that you can create by using the New-AzContainerServiceConfig cmdlet. - -## EXAMPLES - -### Example 1: Create a container service -``` -PS C:\> New-AzResourceGroup -Name "ResourceGroup17" -Location "East US" -Force -PS C:\> $Container = New-AzContainerServiceConfig -Location "East US" -OrchestratorType "DCOS" -MasterDnsPrefix "MasterResourceGroup17" -AdminUsername "acslinuxadmin" -SshPublicKey "" | Add-AzContainerServiceAgentPoolProfile -Name "AgentPool01" -VmSize "Standard_A1" -DnsPrefix "APResourceGroup17" -Count 2 -PS C:\> New-AzContainerService -ResourceGroupName "ResourceGroup17" -Name "CSResourceGroup17" -ContainerService $Container -``` - -The first command creates a resource group named ResourceGroup17 at the specified location. -For more information, see the New-AzResourceGroup cmdlet. -The second command creates a container, and then stores it in the $Container variable. -For more information, see the New-AzContainerServiceConfig cmdlet. -The final command creates a container service for the container stored in $Container. -The service is named csResourceGroup17. - -## PARAMETERS - -### -AsJob -RRun cmdlet in the background and return a Job to track progress. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ContainerService -Specifies a container service object that contains the properties for the new service. -To obtain a **ContainerService** object, use the New-AzContainerServiceConfig cmdlet. - -```yaml -Type: Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService -Parameter Sets: (All) -Aliases: - -Required: True -Position: 2 -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Name -Specifies the name of the container service that this cmdlet creates. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -ResourceGroupName -Specifies the resource group in which this cmdlet deploys the container service. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### System.String - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## NOTES - -## RELATED LINKS - -[Get-AzContainerService](./Get-AzContainerService.md) - -[New-AzContainerServiceConfig](./New-AzContainerServiceConfig.md) - -[Remove-AzContainerService](./Remove-AzContainerService.md) - -[Update-AzContainerService](./Update-AzContainerService.md) - - diff --git a/src/Compute/Compute/help/New-AzContainerServiceConfig.md b/src/Compute/Compute/help/New-AzContainerServiceConfig.md deleted file mode 100644 index 896f86ccabc9..000000000000 --- a/src/Compute/Compute/help/New-AzContainerServiceConfig.md +++ /dev/null @@ -1,335 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: EC8C915A-A0BC-41DE-9DBF-3617536E3D1A -online version: https://docs.microsoft.com/powershell/module/az.compute/new-azcontainerserviceconfig -schema: 2.0.0 ---- - -# New-AzContainerServiceConfig - -## SYNOPSIS -Creates a local configuration object for a container service. - -## SYNTAX - -``` -New-AzContainerServiceConfig [[-Location] ] [[-Tag] ] - [[-OrchestratorType] ] [[-MasterCount] ] - [[-MasterDnsPrefix] ] [[-AgentPoolProfile] ] - [[-WindowsProfileAdminUsername] ] [[-WindowsProfileAdminPassword] ] - [[-AdminUsername] ] [[-SshPublicKey] ] [[-VmDiagnosticsEnabled] ] - [-CustomProfileOrchestrator ] [-ServicePrincipalProfileClientId ] - [-ServicePrincipalProfileSecret ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] -``` - -## DESCRIPTION -The **New-AzContainerServiceConfig** cmdlet creates a local configuration object for a container service. -Provide this object to the New-AzContainerService cmdlet to create a container service. - -## EXAMPLES - -### Example 1: Create a container service configuration -``` -PS C:\> $Container = New-AzContainerServiceConfig -Location "Australia Southeast" -OrchestratorType "DCOS" -MasterDnsPrefix "MasterResourceGroup17" -AdminUsername "AcsLinuxAdmin" -SshPublicKey "" -PS C:\> $Container | Add-AzContainerServiceAgentPoolProfile -Name "AgentPool01" -VmSize "Standard_A1" -DnsPrefix "APResourceGroup17" -``` - -This command creates a container, and then stores it in the $Container variable. -The command specifies various settings for the container service configuration. The command passes -the configuration object to the Add-AzContainerServiceAgentPoolProfile cmdlet by using the -pipeline operator. That cmdlet adds an agent pool profile. -Specify the object in $Container for the *ContainerService* parameter of **New-AzContainerService**. - -## PARAMETERS - -### -AdminUsername -Specifies the administrator account name to use for a Linux-based container service. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 8 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -AgentPoolProfile -Specifies an array of agent pool profile objects for the container service. -Add a profile by using the Add-AzContainerServiceAgentPoolProfile cmdlet. - -```yaml -Type: Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile[] -Parameter Sets: (All) -Aliases: - -Required: False -Position: 5 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -CustomProfileOrchestrator -Specifies the custom profile orchestrator. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Location -Specifies the location in which to create the container service. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -MasterCount -Specifies the number of master virtual machines to create. - -```yaml -Type: System.Int32 -Parameter Sets: (All) -Aliases: - -Required: False -Position: 3 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -MasterDnsPrefix -Specifies the DNS prefix for the master virtual machine. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 4 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -OrchestratorType -Specifies the type of orchestrator for the container service. -The acceptable values for this parameter are: DCOS and Swarm. - -```yaml -Type: System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes] -Parameter Sets: (All) -Aliases: -Accepted values: Swarm, DCOS, Custom, Kubernetes - -Required: False -Position: 2 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -ServicePrincipalProfileClientId -Specifies the principal profile client ID. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -ServicePrincipalProfileSecret -Specifies the principal profile secret. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -SshPublicKey -Specifies the SSH public key for a Linux-based container service. - -```yaml -Type: System.String[] -Parameter Sets: (All) -Aliases: - -Required: False -Position: 9 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Tag -Key-value pairs in the form of a hash table. For example: -@{key0="value0";key1=$null;key2="value2"} - -```yaml -Type: System.Collections.Hashtable -Parameter Sets: (All) -Aliases: - -Required: False -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmDiagnosticsEnabled -Indicates whether this configuration enables diagnostics for the container service virtual machine. - -```yaml -Type: System.Boolean -Parameter Sets: (All) -Aliases: - -Required: False -Position: 10 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -WindowsProfileAdminPassword -Specifies the administrator password for a container service that uses the Windows operating system. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 7 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -WindowsProfileAdminUsername -Specifies the administrator username for a container service that uses the Windows operating system. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 6 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### System.String - -### System.Collections.Hashtable - -### System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes, Microsoft.Azure.Management.Compute, Version=23.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] - -### System.Int32 - -### Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile[] - -### System.String[] - -### System.Boolean - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## NOTES - -## RELATED LINKS - -[Add-AzContainerServiceAgentPoolProfile](./Add-AzContainerServiceAgentPoolProfile.md) - -[New-AzContainerService](./New-AzContainerService.md) diff --git a/src/Compute/Compute/help/Remove-AzContainerService.md b/src/Compute/Compute/help/Remove-AzContainerService.md deleted file mode 100644 index eb144c8e7328..000000000000 --- a/src/Compute/Compute/help/Remove-AzContainerService.md +++ /dev/null @@ -1,161 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: 8180092D-5B1D-43A0-B830-D009B30E2DDF -online version: https://docs.microsoft.com/powershell/module/az.compute/remove-azcontainerservice -schema: 2.0.0 ---- - -# Remove-AzContainerService - -## SYNOPSIS -Removes a container service. - -## SYNTAX - -``` -Remove-AzContainerService [-ResourceGroupName] [-Name] [-Force] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -## DESCRIPTION -The **Remove-AzContainerService** cmdlet removes a container service from your Azure account. - -## EXAMPLES - -### Example 1: Remove a container service -``` -PS C:\> Remove-AzContainerService -ResourceGroupName "ResourceGroup17" -Name "CSResourceGroup17" -``` - -This command removes the container service named CSResourceGroup17. - -## PARAMETERS - -### -AsJob -Run cmdlet in the background and return a Job to track progress. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Force -Forces the command to run without asking for user confirmation. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Name -Specifies the name of the container service that this cmdlet removes. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -ResourceGroupName -Specifies the resource group of the container service that this cmdlet removes. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### System.String - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse - -## NOTES - -## RELATED LINKS - -[Get-AzContainerService](./Get-AzContainerService.md) - -[New-AzContainerService](./New-AzContainerService.md) - -[Update-AzContainerService](./Update-AzContainerService.md) - - diff --git a/src/Compute/Compute/help/Remove-AzContainerServiceAgentPoolProfile.md b/src/Compute/Compute/help/Remove-AzContainerServiceAgentPoolProfile.md deleted file mode 100644 index cdb001fcaeb4..000000000000 --- a/src/Compute/Compute/help/Remove-AzContainerServiceAgentPoolProfile.md +++ /dev/null @@ -1,134 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: ED37B17D-C513-422A-89EA-A6AF1C9A5FEE -online version: https://docs.microsoft.com/powershell/module/az.compute/remove-azcontainerserviceagentpoolprofile -schema: 2.0.0 ---- - -# Remove-AzContainerServiceAgentPoolProfile - -## SYNOPSIS -Removes an agent pool profile from a container service. - -## SYNTAX - -``` -Remove-AzContainerServiceAgentPoolProfile [-ContainerService] [-Name] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -## DESCRIPTION -The **Remove-AzContainerServiceAgentPoolProfile** cmdlet removes an agent pool profile from a container service. - -## EXAMPLES - -### Example 1: Remove a profile from a container service -``` -PS C:\> $Container = Get-AzContainerService -ResourceGroupName "ResourceGroup17" -Name "CSResourceGroup17" -PS C:\> Remove-AzContainerServiceAgentPoolProfile -ContainerService $Container -Name "AgentPool01" -``` - -The first command gets a container service named CSResourceGroup17 by using the Get-AzContainerService cmdlet. -The command stores the service in the $Container variable. -The second command removes the profile named AgentPool01 from the container service in $Container. - -## PARAMETERS - -### -ContainerService -Specifies the container service object from which this cmdlet removes an agent pool profile. - -```yaml -Type: Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService -Parameter Sets: (All) -Aliases: - -Required: True -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName, ByValue) -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Name -Specifies the name of the agent pool profile that this cmdlet removes. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -### System.String - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## NOTES - -## RELATED LINKS - -[Add-AzContainerServiceAgentPoolProfile](./Add-AzContainerServiceAgentPoolProfile.md) - -[Get-AzContainerService](./Get-AzContainerService.md) - - diff --git a/src/Compute/Compute/help/Update-AzContainerService.md b/src/Compute/Compute/help/Update-AzContainerService.md deleted file mode 100644 index 55781d9a456b..000000000000 --- a/src/Compute/Compute/help/Update-AzContainerService.md +++ /dev/null @@ -1,175 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: 43D01A97-75B9-46CE-B007-26FE6A97C31C -online version: https://docs.microsoft.com/powershell/module/az.compute/update-azcontainerservice -schema: 2.0.0 ---- - -# Update-AzContainerService - -## SYNOPSIS -Updates the state of a container service. - -## SYNTAX - -``` -Update-AzContainerService [-ResourceGroupName] [-Name] - [-ContainerService] [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] -``` - -## DESCRIPTION -The **Update-AzContainerService** cmdlet updates the state of a container service to match a local instance of the service. - -## EXAMPLES - -### Example 1: Update a container service -``` -PS C:\> Get-AzContainerService -ResourceGroupName "ResourceGroup17" -Name "CSResourceGroup17" | Remove-AzContainerServiceAgentPoolProfile -Name "AgentPool01" | Add-AzContainerServiceAgentPoolProfile -Name "AgentPool01" -VmSize "Standard_A1" -DnsPrefix "APResourceGroup17" -Count 2 | Update-AzContainerService -ResourceGroupName "ResourceGroup17" -Name "CSResourceGroup17" -``` - -This command gets the container service named CSResourceGroup17 by using the Get-AzContainerService cmdlet. -The command passes that object to the Remove-AzContainerServiceAgentPoolProfile cmdlet by using the pipeline operator. -**Remove-AzContainerServiceAgentPoolProfile** removes the profile named AgentPool01. -The command passes the result to the Add-AzContainerServiceAgentPoolProfile cmdlet. -**Add-AzContainerServiceAgentPoolProfile** adds a profile that has the name AgentPool01, and has the specified properties. -The command passes the result to the current cmdlet. -The current cmdlet updates the container service to reflect the changes that were made in this command. - -## PARAMETERS - -### -AsJob -Run cmdlet in the background - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ContainerService -Specifies a local **ContainerService** object that contains changes. - -```yaml -Type: Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService -Parameter Sets: (All) -Aliases: - -Required: True -Position: 2 -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Name -Specifies the name of the container service that this cmdlet updates. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -ResourceGroupName -Specifies the resource group of the container service that this cmdlet updates. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### System.String - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## NOTES - -## RELATED LINKS - -[Add-AzContainerServiceAgentPoolProfile](./Add-AzContainerServiceAgentPoolProfile.md) - -[Get-AzContainerService](./Get-AzContainerService.md) - -[New-AzContainerService](./New-AzContainerService.md) - -[Remove-AzContainerService](./Remove-AzContainerService.md) - -[Remove-AzContainerServiceAgentPoolProfile](./Remove-AzContainerServiceAgentPoolProfile.md) - - diff --git a/tools/StaticAnalysis/Exceptions/Az.Compute/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Compute/BreakingChangeIssues.csv new file mode 100644 index 000000000000..8804f20412be --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.Compute/BreakingChangeIssues.csv @@ -0,0 +1,8 @@ +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.AddAzureRmContainerServiceAgentPoolProfileCommand","Add-AzContainerServiceAgentPoolProfile","0","1000","The cmdlet 'Add-AzContainerServiceAgentPoolProfile' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'Add-AzContainerServiceAgentPoolProfile' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.NewAzureRmContainerServiceConfigCommand","New-AzContainerServiceConfig","0","1000","The cmdlet 'New-AzContainerServiceConfig' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'New-AzContainerServiceConfig' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.RemoveAzureRmContainerServiceAgentPoolProfileCommand","Remove-AzContainerServiceAgentPoolProfile","0","1000","The cmdlet 'Remove-AzContainerServiceAgentPoolProfile' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'Remove-AzContainerServiceAgentPoolProfile' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.NewAzureRmContainerService","New-AzContainerService","0","1000","The cmdlet 'New-AzContainerService' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'New-AzContainerService' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.UpdateAzureRmContainerService","Update-AzContainerService","0","1000","The cmdlet 'Update-AzContainerService' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'Update-AzContainerService' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.RemoveAzureRmContainerService","Remove-AzContainerService","0","1000","The cmdlet 'Remove-AzContainerService' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'Remove-AzContainerService' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.GetAzureRmContainerService","Get-AzContainerService","0","1000","The cmdlet 'Get-AzContainerService' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'Get-AzContainerService' back to the module, or add an alias to the original cmdlet name." From 16e4c12150187bd7c0d19f1265fcb0cea05926d5 Mon Sep 17 00:00:00 2001 From: Beisi Zhou Date: Tue, 23 Feb 2021 10:38:33 +0800 Subject: [PATCH 4/6] Support deploying Azure resources described with the Bicep language (#14104) * Added support for Azure resources deployment in Bicep language * fix relative path issue * remove bicep support on templateUri * refine codes Co-authored-by: Beisi Zhou --- .../ResourceWithParameterCmdletBase.cs | 36 +- .../Properties/Resources.Designer.cs | 18 + .../ResourceManager/Properties/Resources.resx | 6 + .../ResourceManager/Utilities/BicepUtility.cs | 83 + .../Resources.Test/Resources.Test.csproj | 1 + .../ScenarioTests/DeploymentTests.cs | 14 + .../ScenarioTests/DeploymentTests.ps1 | 67 +- .../TestNewDeploymentFromBicepFile.json | 4453 +++++++++++++++++ .../TestTestDeploymentFromBicepFile.json | 562 +++ .../UnitTests/Utilities/TestBicepUtility.cs | 40 + .../sampleDeploymentBicepFile.bicep | 14 + src/Resources/Resources/ChangeLog.md | 1 + .../help/Get-AzDeploymentWhatIfResult.md | 4 +- ...AzManagementGroupDeploymentWhatIfResult.md | 4 +- ...t-AzResourceGroupDeploymentWhatIfResult.md | 4 +- .../Get-AzTenantDeploymentWhatIfResult.md | 4 +- .../Resources/help/New-AzDeployment.md | 2 +- .../help/New-AzManagementGroupDeployment.md | 2 +- .../help/New-AzResourceGroupDeployment.md | 4 +- .../Resources/help/New-AzTenantDeployment.md | 2 +- .../Resources/help/Test-AzDeployment.md | 2 +- .../help/Test-AzManagementGroupDeployment.md | 2 +- .../help/Test-AzResourceGroupDeployment.md | 4 +- .../Resources/help/Test-AzTenantDeployment.md | 2 +- 24 files changed, 5299 insertions(+), 32 deletions(-) create mode 100644 src/Resources/ResourceManager/Utilities/BicepUtility.cs create mode 100644 src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentFromBicepFile.json create mode 100644 src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestTestDeploymentFromBicepFile.json create mode 100644 src/Resources/Resources.Test/UnitTests/Utilities/TestBicepUtility.cs create mode 100644 src/Resources/Resources.Test/sampleDeploymentBicepFile.bicep diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs index a057ed60347a..b4125c3e6dd9 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs @@ -12,12 +12,6 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using System.Net; using Microsoft.Azure.Commands.Common.Authentication; using Microsoft.Azure.Commands.Common.Authentication.Abstractions; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; @@ -25,8 +19,16 @@ using Microsoft.Azure.Management.ResourceManager; using Microsoft.Azure.Management.ResourceManager.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; + using Newtonsoft.Json.Linq; +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Net; + namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation { public abstract class ResourceWithParameterCmdletBase : ResourceManagerCmdletBase @@ -115,24 +117,24 @@ protected ResourceWithParameterCmdletBase() public Hashtable TemplateObject { get; set; } [Parameter(ParameterSetName = TemplateFileParameterObjectParameterSetName, - Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Local path to the template file.")] + Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Local path to the template file. Supported template file type: json and bicep.")] [Parameter(ParameterSetName = TemplateFileParameterFileParameterSetName, - Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Local path to the template file.")] + Mandatory = true, ValueFromPipelineByPropertyName = true)] [Parameter(ParameterSetName = TemplateFileParameterUriParameterSetName, - Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Local path to the template file.")] + Mandatory = true, ValueFromPipelineByPropertyName = true)] [Parameter(ParameterSetName = ParameterlessTemplateFileParameterSetName, - Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Local path to the template file.")] + Mandatory = true, ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string TemplateFile { get; set; } [Parameter(ParameterSetName = TemplateUriParameterObjectParameterSetName, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Uri to the template file.")] [Parameter(ParameterSetName = TemplateUriParameterFileParameterSetName, - Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Uri to the template file.")] + Mandatory = true, ValueFromPipelineByPropertyName = true)] [Parameter(ParameterSetName = TemplateUriParameterUriParameterSetName, - Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Uri to the template file.")] + Mandatory = true, ValueFromPipelineByPropertyName = true)] [Parameter(ParameterSetName = ParameterlessTemplateUriParameterSetName, - Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Uri to the template file.")] + Mandatory = true, ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string TemplateUri { get; set; } @@ -177,6 +179,9 @@ public ITemplateSpecsClient TemplateSpecsClient public virtual object GetDynamicParameters() { + if (BicepUtility.IsBicepFile(TemplateFile)) + BuildAndUseBicepTemplate(); + if (!this.IsParameterBound(c => c.SkipTemplateParameterPrompt)) { // Resolve the static parameter names for this cmdlet: @@ -428,5 +433,10 @@ protected string[] GetStaticParameterNames() CmdletInfo cmdletInfo = new CmdletInfo(commandName, this.GetType()); return cmdletInfo.Parameters.Keys.ToArray(); } + + protected void BuildAndUseBicepTemplate() + { + TemplateFile = BicepUtility.BuildFile(this.ExecuteScript, this.ResolvePath(TemplateFile)); + } } } diff --git a/src/Resources/ResourceManager/Properties/Resources.Designer.cs b/src/Resources/ResourceManager/Properties/Resources.Designer.cs index 738f7dc62e35..ae06fad425ef 100644 --- a/src/Resources/ResourceManager/Properties/Resources.Designer.cs +++ b/src/Resources/ResourceManager/Properties/Resources.Designer.cs @@ -69,6 +69,15 @@ internal static string AddingResourceGroup { } } + /// + /// Looks up a localized string similar to Cannot find Bicep. Please add Bicep to your PATH or visit https://github.com/Azure/bicep/releases to install Bicep.. + /// + internal static string BicepNotFound { + get { + return ResourceManager.GetString("BicepNotFound", resourceCulture); + } + } + /// /// Looks up a localized string similar to Cancelling active deployment .... /// @@ -448,6 +457,15 @@ internal static string InvalidAssignableScopes { } } + /// + /// Looks up a localized string similar to Invalid Bicep file path or URI.. + /// + internal static string InvalidBicepFilePathOrUri { + get { + return ResourceManager.GetString("InvalidBicepFilePathOrUri", resourceCulture); + } + } + /// /// Looks up a localized string similar to Unrecognized resource change {0}: {1}. Specify one ore more values in the following list and try again: {2}.. /// diff --git a/src/Resources/ResourceManager/Properties/Resources.resx b/src/Resources/ResourceManager/Properties/Resources.resx index 183fc5dc0069..8c6145472b64 100644 --- a/src/Resources/ResourceManager/Properties/Resources.resx +++ b/src/Resources/ResourceManager/Properties/Resources.resx @@ -494,4 +494,10 @@ You can help us improve the accuracy of the result by opening an issue here: htt Unrecognized resource change {0}: {1}. Specify one ore more values in the following list and try again: {2}. + + Cannot find Bicep. Please add Bicep to your PATH or visit https://github.com/Azure/bicep/releases to install Bicep. + + + Invalid Bicep file path or URI. + \ No newline at end of file diff --git a/src/Resources/ResourceManager/Utilities/BicepUtility.cs b/src/Resources/ResourceManager/Utilities/BicepUtility.cs new file mode 100644 index 000000000000..da219ce3d41c --- /dev/null +++ b/src/Resources/ResourceManager/Utilities/BicepUtility.cs @@ -0,0 +1,83 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Commands.Common.Exceptions; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +using System; +using System.Collections.Generic; +using System.IO; + +namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Utilities +{ + internal static class BicepUtility + { + public static bool IsBicepExecutable { get; private set; } = false; + + public static bool IsBicepFile(string templateFilePath) + { + return ".bicep".Equals(Path.GetExtension(templateFilePath), System.StringComparison.OrdinalIgnoreCase); + } + + public delegate List ScriptExecutor(string script); + + public static bool CheckBicepExecutable(ScriptExecutor executeScript) + { + try + { + executeScript("get-command bicep"); + } + catch + { + IsBicepExecutable = false; + return IsBicepExecutable; + } + IsBicepExecutable = true; + return IsBicepExecutable; + } + + public static string BuildFile(ScriptExecutor executeScript, string bicepTemplateFilePath) + { + if (!IsBicepExecutable && !CheckBicepExecutable(executeScript)) + { + throw new AzPSApplicationException(Properties.Resources.BicepNotFound); + } + + string tempPath = Path.Combine(Path.GetTempPath(), Path.GetFileName(bicepTemplateFilePath)); + + try{ + if (Uri.IsWellFormedUriString(bicepTemplateFilePath, UriKind.Absolute)) + { + FileUtilities.DataStore.WriteFile(tempPath, GeneralUtilities.DownloadFile(bicepTemplateFilePath)); + } + else if (FileUtilities.DataStore.FileExists(bicepTemplateFilePath)) + { + File.Copy(bicepTemplateFilePath, tempPath, true); + } + else + { + throw new AzPSArgumentException(Properties.Resources.InvalidBicepFilePathOrUri, "TemplateFile"); + } + executeScript($"bicep build '{tempPath}'"); + return tempPath.Replace(".bicep", ".json"); + } + finally + { + File.Delete(tempPath); + } + + } + } +} diff --git a/src/Resources/Resources.Test/Resources.Test.csproj b/src/Resources/Resources.Test/Resources.Test.csproj index ac316a7873e1..1d4c8526c4d4 100644 --- a/src/Resources/Resources.Test/Resources.Test.csproj +++ b/src/Resources/Resources.Test/Resources.Test.csproj @@ -27,6 +27,7 @@ + diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs index d92b324d477a..0c0357c353f3 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs @@ -187,5 +187,19 @@ public void TestNewDeploymentWithQueryString() { TestRunner.RunTestScript("Test-NewDeploymentWithQueryString"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.LiveOnly)] + public void TestNewDeploymentFromBicepFile() + { + TestRunner.RunTestScript("Test-NewDeploymentFromBicepFile"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.LiveOnly)] + public void TestTestDeploymentFromBicepFile() + { + TestRunner.RunTestScript("Test-TestDeploymentFromBicepFile"); + } } } diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 index 4d161b221a95..0b0d64456f9e 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 @@ -811,7 +811,6 @@ function Test-NewDeploymentWithQueryString # Assert Assert-AreEqual Succeeded $deployment.ProvisioningState - } finally @@ -819,4 +818,70 @@ function Test-NewDeploymentWithQueryString # Cleanup Clean-ResourceGroup $rgname } +} + +<# +.SYNOPSIS +Tests deployment via Bicep file. +#> +function Test-NewDeploymentFromBicepFile +{ + # Setup + $rgname = Get-ResourceGroupName + $rname = Get-ResourceName + $rglocation = "West US 2" + $expectedTags = @{"key1"="value1"; "key2"="value2";} + + try + { + # Test + New-AzResourceGroup -Name $rgname -Location $rglocation + + $deployment = New-AzResourceGroupDeployment -Name $rname -ResourceGroupName $rgname -TemplateFile sampleDeploymentBicepFile.bicep -Tag $expectedTags + + # Assert + Assert-AreEqual Succeeded $deployment.ProvisioningState + Assert-True { AreHashtableEqual $expectedTags $deployment.Tags } + + $subId = (Get-AzContext).Subscription.SubscriptionId + $deploymentId = "/subscriptions/$subId/resourcegroups/$rgname/providers/Microsoft.Resources/deployments/$rname" + $getById = Get-AzResourceGroupDeployment -Id $deploymentId + Assert-AreEqual $getById.DeploymentName $deployment.DeploymentName + + [hashtable]$actualTags = $getById.Tags + Assert-True { AreHashtableEqual $expectedTags $getById.Tags } + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +<# +.SYNOPSIS +Tests deployment template via bicep file. +#> +function Test-TestDeploymentFromBicepFile +{ + # Setup + $rgname = Get-ResourceGroupName + $rname = Get-ResourceName + $location = "West US 2" + + # Test + try + { + New-AzResourceGroup -Name $rgname -Location $location + + $list = Test-AzResourceGroupDeployment -ResourceGroupName $rgname -TemplateFile sampleDeploymentBicepFile.bicep + + # Assert + Assert-AreEqual 0 @($list).Count + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } } \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentFromBicepFile.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentFromBicepFile.json new file mode 100644 index 000000000000..5f799333a4d9 --- /dev/null +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentFromBicepFile.json @@ -0,0 +1,4453 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04f51ab3-9254-4598-abe6-114ebbf0187d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "f959ad85-65f3-4441-a903-e8bd28f5e819" + ], + "x-ms-correlation-request-id": [ + "f959ad85-65f3-4441-a903-e8bd28f5e819" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094703Z:f959ad85-65f3-4441-a903-e8bd28f5e819" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:03 GMT" + ], + "Content-Length": [ + "98" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d8cb111-aeff-4464-abac-0b89ef0e91d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-request-id": [ + "88da35ff-0417-4883-b029-6b79a1d82f20" + ], + "x-ms-correlation-request-id": [ + "88da35ff-0417-4883-b029-6b79a1d82f20" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094746Z:88da35ff-0417-4883-b029-6b79a1d82f20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:45 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1e298de-30b4-483e-83b9-6d2bb77cdba5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "f273cb9b-090a-4e14-b09a-ef27b52f4929" + ], + "x-ms-correlation-request-id": [ + "f273cb9b-090a-4e14-b09a-ef27b52f4929" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094707Z:f273cb9b-090a-4e14-b09a-ef27b52f4929" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:06 GMT" + ], + "Content-Length": [ + "210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991\",\r\n \"name\": \"ps2991\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/validate?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzMvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"bezstorage007\"\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {\r\n \"storageSku\": \"Standard_LRS\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"apiVersion\": \"2019-06-01\",\r\n \"name\": \"[parameters('name')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"kind\": \"Storage\",\r\n \"sku\": {\r\n \"name\": \"[variables('storageSku')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n \"value\": \"[resourceId('Microsoft.Storage/storageAccounts', parameters('name'))]\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n },\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31594afd-d257-42bc-b27d-6b76c452c6a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1175" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "4a9f9903-7fb9-43a1-b4b2-4877ce9e359f" + ], + "x-ms-correlation-request-id": [ + "4a9f9903-7fb9-43a1-b4b2-4877ce9e359f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094711Z:4a9f9903-7fb9-43a1-b4b2-4877ce9e359f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:10 GMT" + ], + "Content-Length": [ + "867" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-02T09:47:10.1915211Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"4a9f9903-7fb9-43a1-b4b2-4877ce9e359f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"bezstorage007\"\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {\r\n \"storageSku\": \"Standard_LRS\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"apiVersion\": \"2019-06-01\",\r\n \"name\": \"[parameters('name')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"kind\": \"Storage\",\r\n \"sku\": {\r\n \"name\": \"[variables('storageSku')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n \"value\": \"[resourceId('Microsoft.Storage/storageAccounts', parameters('name'))]\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n },\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e171d7c-8e1a-4524-a6fe-548236b3b458" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1175" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operationStatuses/08585893476535056652?api-version=2020-10-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "32af6107-f25d-42bc-bf45-c5a1083c68a3" + ], + "x-ms-correlation-request-id": [ + "32af6107-f25d-42bc-bf45-c5a1083c68a3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094715Z:32af6107-f25d-42bc-bf45-c5a1083c68a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:14 GMT" + ], + "Content-Length": [ + "710" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-02T09:47:13.9459863Z\",\r\n \"duration\": \"PT1.9740376S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b360726-50ea-4e2d-bfae-2b6976754e57" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "a25d6d48-5574-4634-94e0-a19a6e8d7a79" + ], + "x-ms-correlation-request-id": [ + "a25d6d48-5574-4634-94e0-a19a6e8d7a79" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094715Z:a25d6d48-5574-4634-94e0-a19a6e8d7a79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f0d51d5-7a8f-4e99-948f-65f5b6e5a16a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "a687de53-b0be-47a8-b37f-a9d9a295ba6a" + ], + "x-ms-correlation-request-id": [ + "a687de53-b0be-47a8-b37f-a9d9a295ba6a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094716Z:a687de53-b0be-47a8-b37f-a9d9a295ba6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "203777c1-cb5a-4cc5-a433-9f7d2fa90f12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "79cc0b23-4dbb-4061-8f97-e93f9d870bf6" + ], + "x-ms-correlation-request-id": [ + "79cc0b23-4dbb-4061-8f97-e93f9d870bf6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094718Z:79cc0b23-4dbb-4061-8f97-e93f9d870bf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "367c2b45-6821-4843-b746-8b3d7d6bb91d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "039f68db-dceb-4289-b08e-a6ed9b486443" + ], + "x-ms-correlation-request-id": [ + "039f68db-dceb-4289-b08e-a6ed9b486443" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094719Z:039f68db-dceb-4289-b08e-a6ed9b486443" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef50037a-28e3-4aa1-8c84-7fe30c1fd155" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "4aa90169-0672-42bd-9f6b-920364016b61" + ], + "x-ms-correlation-request-id": [ + "4aa90169-0672-42bd-9f6b-920364016b61" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094720Z:4aa90169-0672-42bd-9f6b-920364016b61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bd3191c-266a-4ab9-94de-eb30b2108ef8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "2c0ca03e-9d4d-49c8-9dd8-fd530b76bf36" + ], + "x-ms-correlation-request-id": [ + "2c0ca03e-9d4d-49c8-9dd8-fd530b76bf36" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094721Z:2c0ca03e-9d4d-49c8-9dd8-fd530b76bf36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58536bc3-9845-43df-aa57-bb734586484f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "693cb392-29e5-4580-a648-67084511eb8d" + ], + "x-ms-correlation-request-id": [ + "693cb392-29e5-4580-a648-67084511eb8d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094722Z:693cb392-29e5-4580-a648-67084511eb8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "560487cd-0f5f-48bb-86d8-3cc472df5faa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "f2ce8b87-8252-4bad-bd1a-f56e9cae0b84" + ], + "x-ms-correlation-request-id": [ + "f2ce8b87-8252-4bad-bd1a-f56e9cae0b84" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094723Z:f2ce8b87-8252-4bad-bd1a-f56e9cae0b84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b04d94e-3692-4c31-b6a0-fd7cc9d051f9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "ddcb5ba2-5f6e-4f68-9955-72bfc1ff21f6" + ], + "x-ms-correlation-request-id": [ + "ddcb5ba2-5f6e-4f68-9955-72bfc1ff21f6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094724Z:ddcb5ba2-5f6e-4f68-9955-72bfc1ff21f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7363aab0-52bb-45d3-8251-499b59231089" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "9f04f4bf-8f3c-49b8-848e-7be9b0663dac" + ], + "x-ms-correlation-request-id": [ + "9f04f4bf-8f3c-49b8-848e-7be9b0663dac" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094725Z:9f04f4bf-8f3c-49b8-848e-7be9b0663dac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f41f425b-1b7c-4b85-9fe1-35414c593f7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "1ea2cc3b-5c38-4e05-9f23-33736053ced4" + ], + "x-ms-correlation-request-id": [ + "1ea2cc3b-5c38-4e05-9f23-33736053ced4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094726Z:1ea2cc3b-5c38-4e05-9f23-33736053ced4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "238af075-3465-4b6c-a153-b96191343467" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "696d7ee7-c6bb-4837-bf1b-eadb8f3391b0" + ], + "x-ms-correlation-request-id": [ + "696d7ee7-c6bb-4837-bf1b-eadb8f3391b0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094727Z:696d7ee7-c6bb-4837-bf1b-eadb8f3391b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e069644-d596-4f9c-9377-4686198e7fb4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "c7a8ab78-d43b-460c-8880-e0b4e25c0276" + ], + "x-ms-correlation-request-id": [ + "c7a8ab78-d43b-460c-8880-e0b4e25c0276" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094728Z:c7a8ab78-d43b-460c-8880-e0b4e25c0276" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b4d63c-5b5d-46e7-9522-5fe657cfb004" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "90249787-0489-4d82-9f92-9f62959b8549" + ], + "x-ms-correlation-request-id": [ + "90249787-0489-4d82-9f92-9f62959b8549" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094729Z:90249787-0489-4d82-9f92-9f62959b8549" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0280a0d6-1db9-468b-b270-fe080b957e9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "db2af950-98a3-454f-b5af-c7fcda63dea4" + ], + "x-ms-correlation-request-id": [ + "db2af950-98a3-454f-b5af-c7fcda63dea4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094730Z:db2af950-98a3-454f-b5af-c7fcda63dea4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a519d17-e0fa-4ac2-aee0-3911abdd0f10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "49ac68f2-da7a-4874-93e9-4c3b38b69200" + ], + "x-ms-correlation-request-id": [ + "49ac68f2-da7a-4874-93e9-4c3b38b69200" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094731Z:49ac68f2-da7a-4874-93e9-4c3b38b69200" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2251242-9b2f-47a3-8f88-67539820c6c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "be13ba6a-8262-4205-b553-de712ab42be7" + ], + "x-ms-correlation-request-id": [ + "be13ba6a-8262-4205-b553-de712ab42be7" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094732Z:be13ba6a-8262-4205-b553-de712ab42be7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7aa1741b-2deb-4160-8c76-2c3385b0d621" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "d5a0ddc7-c3c9-4bdd-b757-1d3a056f5ee4" + ], + "x-ms-correlation-request-id": [ + "d5a0ddc7-c3c9-4bdd-b757-1d3a056f5ee4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094733Z:d5a0ddc7-c3c9-4bdd-b757-1d3a056f5ee4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8fe98ead-cd96-422d-bd6b-eb7d33761924" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "be37f3c1-7be6-4e1d-94d0-6ca5601b207f" + ], + "x-ms-correlation-request-id": [ + "be37f3c1-7be6-4e1d-94d0-6ca5601b207f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094735Z:be37f3c1-7be6-4e1d-94d0-6ca5601b207f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9456237-4f2c-4fca-a058-9c7bb36d44c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "474957d2-caf5-42b9-898d-feff78dd6424" + ], + "x-ms-correlation-request-id": [ + "474957d2-caf5-42b9-898d-feff78dd6424" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094736Z:474957d2-caf5-42b9-898d-feff78dd6424" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52bccf5a-665c-4626-9a09-90032fd2b509" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "b461c962-e507-4e29-93ac-f79c0690911b" + ], + "x-ms-correlation-request-id": [ + "b461c962-e507-4e29-93ac-f79c0690911b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094737Z:b461c962-e507-4e29-93ac-f79c0690911b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "086c632c-3084-4822-909b-8e06d6edd13c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "8f8d4564-0fbf-45c2-82bf-f470bb5621c6" + ], + "x-ms-correlation-request-id": [ + "8f8d4564-0fbf-45c2-82bf-f470bb5621c6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094738Z:8f8d4564-0fbf-45c2-82bf-f470bb5621c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12d6e684-4fc6-43fd-a661-dcfe5782cfb0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "98fadb81-b643-417e-85ad-204df4cab428" + ], + "x-ms-correlation-request-id": [ + "98fadb81-b643-417e-85ad-204df4cab428" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094739Z:98fadb81-b643-417e-85ad-204df4cab428" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3adf5b77-171d-4e69-b8cb-b725df4f541a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "7a3330e6-c5c6-4f4a-bf2d-e2996d3bc23b" + ], + "x-ms-correlation-request-id": [ + "7a3330e6-c5c6-4f4a-bf2d-e2996d3bc23b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094740Z:7a3330e6-c5c6-4f4a-bf2d-e2996d3bc23b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29dc65ce-967b-4848-80b1-7c21fcab9ede" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "cb10fc74-a9f7-4179-bb7f-07558b0a3e25" + ], + "x-ms-correlation-request-id": [ + "cb10fc74-a9f7-4179-bb7f-07558b0a3e25" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094741Z:cb10fc74-a9f7-4179-bb7f-07558b0a3e25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a529b399-8e5b-4364-a2f8-d1d2cc5c00bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-request-id": [ + "97b9d7c3-8020-457d-9f3d-61bad5f61c5f" + ], + "x-ms-correlation-request-id": [ + "97b9d7c3-8020-457d-9f3d-61bad5f61c5f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094742Z:97b9d7c3-8020-457d-9f3d-61bad5f61c5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ed306ac-a9df-48b4-b2b2-734cb34ce11b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-request-id": [ + "ee5f7de0-99e7-4496-866b-e911abbba296" + ], + "x-ms-correlation-request-id": [ + "ee5f7de0-99e7-4496-866b-e911abbba296" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094743Z:ee5f7de0-99e7-4496-866b-e911abbba296" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "219a2dad-04ad-4ede-abba-f174c7fae213" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-request-id": [ + "7eb5b345-ff38-4bee-8fb1-d1926f1768d0" + ], + "x-ms-correlation-request-id": [ + "7eb5b345-ff38-4bee-8fb1-d1926f1768d0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094744Z:7eb5b345-ff38-4bee-8fb1-d1926f1768d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1161" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-02T09:47:43.7880116Z\",\r\n \"duration\": \"PT28.5590867S\",\r\n \"trackingId\": \"95997be2-0a59-4790-9f1e-99f4190e1e5a\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/08585893476535056652\",\r\n \"operationId\": \"08585893476535056652\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-02T09:47:43.8488027Z\",\r\n \"duration\": \"PT28.6198778S\",\r\n \"trackingId\": \"05e8fd73-1e09-450f-9540-c67eb75e6994\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b440f827-82e2-4338-b2b3-bbd909e565b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "2a95eca3-7d48-4ac7-a713-5c1880232d00" + ], + "x-ms-correlation-request-id": [ + "2a95eca3-7d48-4ac7-a713-5c1880232d00" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094716Z:2a95eca3-7d48-4ac7-a713-5c1880232d00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:15.1724964Z\",\r\n \"duration\": \"PT3.2005477S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42a332e5-6dd3-4d1d-bc74-900a4277aaba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "cc6e8832-6321-4e69-b5d1-710fdbb4284d" + ], + "x-ms-correlation-request-id": [ + "cc6e8832-6321-4e69-b5d1-710fdbb4284d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094717Z:cc6e8832-6321-4e69-b5d1-710fdbb4284d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:15.1724964Z\",\r\n \"duration\": \"PT3.2005477S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbd7c1bc-0ccf-4a8b-8aaf-ef73444a411c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "ee1ea702-3086-48e0-b8e2-d3b792fe33fa" + ], + "x-ms-correlation-request-id": [ + "ee1ea702-3086-48e0-b8e2-d3b792fe33fa" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094718Z:ee1ea702-3086-48e0-b8e2-d3b792fe33fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:15.1724964Z\",\r\n \"duration\": \"PT3.2005477S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6c13d83-357d-40c3-a7b7-c10c2828e873" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "3e0ecdf0-c5b4-4a92-ab51-e47933c48d2e" + ], + "x-ms-correlation-request-id": [ + "3e0ecdf0-c5b4-4a92-ab51-e47933c48d2e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094719Z:3e0ecdf0-c5b4-4a92-ab51-e47933c48d2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:15.1724964Z\",\r\n \"duration\": \"PT3.2005477S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1fe73a32-82e1-4f7e-bfe3-aa02100ca8c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "ce1c5b2c-0500-4e9e-a0cf-7621ee77541f" + ], + "x-ms-correlation-request-id": [ + "ce1c5b2c-0500-4e9e-a0cf-7621ee77541f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094720Z:ce1c5b2c-0500-4e9e-a0cf-7621ee77541f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:15.1724964Z\",\r\n \"duration\": \"PT3.2005477S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88e0d988-4c76-48fa-ab2b-37378c8002c8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "581f0886-88e2-47f4-a3c0-b6f607f19f28" + ], + "x-ms-correlation-request-id": [ + "581f0886-88e2-47f4-a3c0-b6f607f19f28" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094721Z:581f0886-88e2-47f4-a3c0-b6f607f19f28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:15.1724964Z\",\r\n \"duration\": \"PT3.2005477S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae734e31-febc-424b-ae12-539c8c5920bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "87a79eee-a3d8-42a2-80c7-2c3dc5acb2c0" + ], + "x-ms-correlation-request-id": [ + "87a79eee-a3d8-42a2-80c7-2c3dc5acb2c0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094722Z:87a79eee-a3d8-42a2-80c7-2c3dc5acb2c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96f43f8a-cf13-4311-ac67-3b331c59fed9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "5422ddf7-bd59-4c9e-9ef0-77b9f118e13b" + ], + "x-ms-correlation-request-id": [ + "5422ddf7-bd59-4c9e-9ef0-77b9f118e13b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094723Z:5422ddf7-bd59-4c9e-9ef0-77b9f118e13b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38064cee-e381-4feb-bb90-ce901228faec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "079d8d7b-f964-4c48-9147-a7f50994aff0" + ], + "x-ms-correlation-request-id": [ + "079d8d7b-f964-4c48-9147-a7f50994aff0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094724Z:079d8d7b-f964-4c48-9147-a7f50994aff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e410458a-6fad-49ca-a9e0-ed1c1cff9533" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "7d2e9eb9-ef4b-4ced-aee8-c5b867c0821d" + ], + "x-ms-correlation-request-id": [ + "7d2e9eb9-ef4b-4ced-aee8-c5b867c0821d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094725Z:7d2e9eb9-ef4b-4ced-aee8-c5b867c0821d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45b2696d-30a2-4746-a436-72185ae52f68" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "fe8b7c4e-328f-4b23-8c31-d8e6dfc31587" + ], + "x-ms-correlation-request-id": [ + "fe8b7c4e-328f-4b23-8c31-d8e6dfc31587" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094726Z:fe8b7c4e-328f-4b23-8c31-d8e6dfc31587" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a39acae-9599-45ea-af12-d683760ddaac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "59cc0c16-13fd-4574-bf7e-001beaa8ff8f" + ], + "x-ms-correlation-request-id": [ + "59cc0c16-13fd-4574-bf7e-001beaa8ff8f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094728Z:59cc0c16-13fd-4574-bf7e-001beaa8ff8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1f5b9e0-88cf-443e-9d9c-74ef8c9b7919" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "55e77a88-5d84-4789-a3d5-662feb89f588" + ], + "x-ms-correlation-request-id": [ + "55e77a88-5d84-4789-a3d5-662feb89f588" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094729Z:55e77a88-5d84-4789-a3d5-662feb89f588" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07156b43-7218-4b92-a632-1599b8b6ec84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "3688dea4-e6f8-47e2-b038-da7f70c78fc6" + ], + "x-ms-correlation-request-id": [ + "3688dea4-e6f8-47e2-b038-da7f70c78fc6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094730Z:3688dea4-e6f8-47e2-b038-da7f70c78fc6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d1f6e0da-2644-41d9-9ab0-8652be1bb6f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "7bfa54c6-1a29-4a87-9734-1726dc592d92" + ], + "x-ms-correlation-request-id": [ + "7bfa54c6-1a29-4a87-9734-1726dc592d92" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094731Z:7bfa54c6-1a29-4a87-9734-1726dc592d92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14156190-069d-4738-9891-8f789502f9e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "0c50453d-f786-4ff5-bca0-f8d063372dbc" + ], + "x-ms-correlation-request-id": [ + "0c50453d-f786-4ff5-bca0-f8d063372dbc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094732Z:0c50453d-f786-4ff5-bca0-f8d063372dbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "76c493e9-6ca1-4339-8bf4-ee429d779e28" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "81692c91-2197-4c7d-9847-da8738b018fa" + ], + "x-ms-correlation-request-id": [ + "81692c91-2197-4c7d-9847-da8738b018fa" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094733Z:81692c91-2197-4c7d-9847-da8738b018fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "606641e9-04f2-4782-a854-6382a29c8ef4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "cbd7e9cb-6944-4bbb-a5d6-53d033e67157" + ], + "x-ms-correlation-request-id": [ + "cbd7e9cb-6944-4bbb-a5d6-53d033e67157" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094734Z:cbd7e9cb-6944-4bbb-a5d6-53d033e67157" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0659771c-b94a-4ac8-94af-c5c6f7697811" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "0f105c6d-f382-4a33-879a-e857bab68564" + ], + "x-ms-correlation-request-id": [ + "0f105c6d-f382-4a33-879a-e857bab68564" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094735Z:0f105c6d-f382-4a33-879a-e857bab68564" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1af64b7e-962e-4a03-9186-266aaf75d423" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "57dd6116-c66b-4cdf-b3e4-7d3cfef4d160" + ], + "x-ms-correlation-request-id": [ + "57dd6116-c66b-4cdf-b3e4-7d3cfef4d160" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094736Z:57dd6116-c66b-4cdf-b3e4-7d3cfef4d160" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8011e0cb-7ecd-4c81-9ba3-513f0ffcd63e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "d7675327-a0e1-4985-abb8-768cb1066cc5" + ], + "x-ms-correlation-request-id": [ + "d7675327-a0e1-4985-abb8-768cb1066cc5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094737Z:d7675327-a0e1-4985-abb8-768cb1066cc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e500f6d6-3c79-4119-bf83-15f85626c8ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "ac297c61-df43-4d2d-813d-2f1b52f0ad78" + ], + "x-ms-correlation-request-id": [ + "ac297c61-df43-4d2d-813d-2f1b52f0ad78" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094738Z:ac297c61-df43-4d2d-813d-2f1b52f0ad78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95dec050-3be9-4c76-a327-ee8addfbfafe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "8ac2fa13-475d-4696-a7bd-2f551622c615" + ], + "x-ms-correlation-request-id": [ + "8ac2fa13-475d-4696-a7bd-2f551622c615" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094739Z:8ac2fa13-475d-4696-a7bd-2f551622c615" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6ded65d-d88a-4e51-87d1-e7b112daf156" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "6767861f-ded5-42f6-a9c4-a63944e6dc0f" + ], + "x-ms-correlation-request-id": [ + "6767861f-ded5-42f6-a9c4-a63944e6dc0f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094740Z:6767861f-ded5-42f6-a9c4-a63944e6dc0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1869c2eb-c2ed-4a92-be62-e105ba1cdd36" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-request-id": [ + "8d9225a9-015a-4180-845e-956446ffd657" + ], + "x-ms-correlation-request-id": [ + "8d9225a9-015a-4180-845e-956446ffd657" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094741Z:8d9225a9-015a-4180-845e-956446ffd657" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0223b4c7-a2c8-4906-b49e-6c5b147f23a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-request-id": [ + "01c9e19c-e2ec-469c-a628-e22b909d47cb" + ], + "x-ms-correlation-request-id": [ + "01c9e19c-e2ec-469c-a628-e22b909d47cb" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094742Z:01c9e19c-e2ec-469c-a628-e22b909d47cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "316ecc1a-1399-42a6-ba71-0f0e2ecb0f75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-request-id": [ + "ed44aa70-4e33-41da-8e8f-cb3cdb496b0c" + ], + "x-ms-correlation-request-id": [ + "ed44aa70-4e33-41da-8e8f-cb3cdb496b0c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094743Z:ed44aa70-4e33-41da-8e8f-cb3cdb496b0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e852f2e2-8cf3-407c-8027-f52ee56bf883" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-request-id": [ + "5b0d56ed-786f-4ea7-9013-ce6900b5638f" + ], + "x-ms-correlation-request-id": [ + "5b0d56ed-786f-4ea7-9013-ce6900b5638f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094745Z:5b0d56ed-786f-4ea7-9013-ce6900b5638f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1056" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-02T09:47:43.864301Z\",\r\n \"duration\": \"PT31.8923523S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\"\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3df912c-6cec-4073-a023-01f6baa39c9a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c31ecf3f-57ef-4beb-ba6a-e78dd57f244e" + ], + "x-ms-correlation-request-id": [ + "c31ecf3f-57ef-4beb-ba6a-e78dd57f244e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094746Z:c31ecf3f-57ef-4beb-ba6a-e78dd57f244e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1056" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-02T09:47:43.864301Z\",\r\n \"duration\": \"PT31.8923523S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\"\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e631de6-4abf-4117-bc7a-f90cf4dfa611" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "847b73d0-d755-466d-a484-c8530f0d7f5e" + ], + "x-ms-correlation-request-id": [ + "847b73d0-d755-466d-a484-c8530f0d7f5e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094748Z:847b73d0-d755-466d-a484-c8530f0d7f5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-request-id": [ + "c482da67-76ee-4b51-ba65-26b2557a5660" + ], + "x-ms-correlation-request-id": [ + "c482da67-76ee-4b51-ba65-26b2557a5660" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094804Z:c482da67-76ee-4b51-ba65-26b2557a5660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:48:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "e3b65a9e-7739-4699-9186-fb05af947b91" + ], + "x-ms-correlation-request-id": [ + "e3b65a9e-7739-4699-9186-fb05af947b91" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094819Z:e3b65a9e-7739-4699-9186-fb05af947b91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:48:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-request-id": [ + "a90d0889-dffa-4ac7-ae78-339765090985" + ], + "x-ms-correlation-request-id": [ + "a90d0889-dffa-4ac7-ae78-339765090985" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094835Z:a90d0889-dffa-4ac7-ae78-339765090985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:48:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-request-id": [ + "11eb44b0-9d02-41f6-8131-2cb59fc60961" + ], + "x-ms-correlation-request-id": [ + "11eb44b0-9d02-41f6-8131-2cb59fc60961" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094850Z:11eb44b0-9d02-41f6-8131-2cb59fc60961" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:48:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-request-id": [ + "7a2be2f5-080d-4906-93cc-98098f0c9402" + ], + "x-ms-correlation-request-id": [ + "7a2be2f5-080d-4906-93cc-98098f0c9402" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094906Z:7a2be2f5-080d-4906-93cc-98098f0c9402" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:49:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-request-id": [ + "7a60e979-859f-4150-ae4b-4a1cbe90e4f2" + ], + "x-ms-correlation-request-id": [ + "7a60e979-859f-4150-ae4b-4a1cbe90e4f2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094921Z:7a60e979-859f-4150-ae4b-4a1cbe90e4f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:49:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-request-id": [ + "d1256164-bf70-41f8-bd8b-8784934a0910" + ], + "x-ms-correlation-request-id": [ + "d1256164-bf70-41f8-bd8b-8784934a0910" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094936Z:d1256164-bf70-41f8-bd8b-8784934a0910" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:49:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-request-id": [ + "3385e595-dc95-4cb2-b1f4-6d93faf341f1" + ], + "x-ms-correlation-request-id": [ + "3385e595-dc95-4cb2-b1f4-6d93faf341f1" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094937Z:3385e595-dc95-4cb2-b1f4-6d93faf341f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:49:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-NewDeploymentFromBicepFile": [ + "ps2991", + "ps2273" + ] + }, + "Variables": { + "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f" + } +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestTestDeploymentFromBicepFile.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestTestDeploymentFromBicepFile.json new file mode 100644 index 000000000000..2b38b83849d3 --- /dev/null +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestTestDeploymentFromBicepFile.json @@ -0,0 +1,562 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps6032?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzNjAzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4ab663d-48ae-4a17-bf6e-9620cfc9bb58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "58ca855a-278f-4a0e-aa5f-87693562fa25" + ], + "x-ms-correlation-request-id": [ + "58ca855a-278f-4a0e-aa5f-87693562fa25" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094528Z:58ca855a-278f-4a0e-aa5f-87693562fa25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:45:28 GMT" + ], + "Content-Length": [ + "98" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps6032?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzNjAzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16c538d6-4403-4cdc-a184-f643b81fe4db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "0b605887-cfaf-4160-9694-9543f3a557fe" + ], + "x-ms-correlation-request-id": [ + "0b605887-cfaf-4160-9694-9543f3a557fe" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094535Z:0b605887-cfaf-4160-9694-9543f3a557fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:45:35 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps6032?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzNjAzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ea64a64-6ee5-4565-b0a0-088bcb4db1b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "91b7e299-bd70-4718-b30d-4eee592d3184" + ], + "x-ms-correlation-request-id": [ + "91b7e299-bd70-4718-b30d-4eee592d3184" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094530Z:91b7e299-bd70-4718-b30d-4eee592d3184" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:45:30 GMT" + ], + "Content-Length": [ + "210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps6032\",\r\n \"name\": \"ps6032\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps6032/providers/Microsoft.Resources/deployments/69d6ffd5-2e5d-4815-b511-8c4d9d28fc50/validate?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzNjAzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy82OWQ2ZmZkNS0yZTVkLTQ4MTUtYjUxMS04YzRkOWQyOGZjNTAvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"bezstorage007\"\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {\r\n \"storageSku\": \"Standard_LRS\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"apiVersion\": \"2019-06-01\",\r\n \"name\": \"[parameters('name')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"kind\": \"Storage\",\r\n \"sku\": {\r\n \"name\": \"[variables('storageSku')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n \"value\": \"[resourceId('Microsoft.Storage/storageAccounts', parameters('name'))]\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "629b0228-f209-4824-89ab-f714eb48d721" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1111" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "c43ae395-a81f-4f47-9322-336b5ebcf00f" + ], + "x-ms-correlation-request-id": [ + "c43ae395-a81f-4f47-9322-336b5ebcf00f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094534Z:c43ae395-a81f-4f47-9322-336b5ebcf00f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:45:34 GMT" + ], + "Content-Length": [ + "886" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps6032/providers/Microsoft.Resources/deployments/69d6ffd5-2e5d-4815-b511-8c4d9d28fc50\",\r\n \"name\": \"69d6ffd5-2e5d-4815-b511-8c4d9d28fc50\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-02T09:45:33.8302784Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"c43ae395-a81f-4f47-9322-336b5ebcf00f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps6032/providers/Microsoft.Storage/storageAccounts/bezstorage007\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps6032?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzNjAzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b04fd680-e4ea-4190-a8e6-770077aa65ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "7f7c8c94-492e-4270-8536-4529b7258563" + ], + "x-ms-correlation-request-id": [ + "7f7c8c94-492e-4270-8536-4529b7258563" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094538Z:7f7c8c94-492e-4270-8536-4529b7258563" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:45:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "a13693e9-c387-4bd5-8eb6-1a8a7fc55e89" + ], + "x-ms-correlation-request-id": [ + "a13693e9-c387-4bd5-8eb6-1a8a7fc55e89" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094554Z:a13693e9-c387-4bd5-8eb6-1a8a7fc55e89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:45:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "e1bc4687-7b14-4e00-b192-9180de3c932c" + ], + "x-ms-correlation-request-id": [ + "e1bc4687-7b14-4e00-b192-9180de3c932c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094609Z:e1bc4687-7b14-4e00-b192-9180de3c932c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:46:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "837c646d-0602-4bbc-a4f0-41eebdf3fd30" + ], + "x-ms-correlation-request-id": [ + "837c646d-0602-4bbc-a4f0-41eebdf3fd30" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094625Z:837c646d-0602-4bbc-a4f0-41eebdf3fd30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:46:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "a4cd3ad0-79f5-498b-8cd6-05637636685c" + ], + "x-ms-correlation-request-id": [ + "a4cd3ad0-79f5-498b-8cd6-05637636685c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094625Z:a4cd3ad0-79f5-498b-8cd6-05637636685c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:46:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-TestDeploymentFromBicepFile": [ + "ps6032", + "ps476" + ] + }, + "Variables": { + "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f" + } +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/UnitTests/Utilities/TestBicepUtility.cs b/src/Resources/Resources.Test/UnitTests/Utilities/TestBicepUtility.cs new file mode 100644 index 000000000000..9e8a574a07cd --- /dev/null +++ b/src/Resources/Resources.Test/UnitTests/Utilities/TestBicepUtility.cs @@ -0,0 +1,40 @@ +using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Utilities; +using Microsoft.WindowsAzure.Commands.ScenarioTest; + +using System; +using System.Collections.Generic; +using System.Text; + +using Xunit; + +namespace Microsoft.Azure.Commands.Resources.Test.UnitTests.Utilities +{ + public class TestBicepUtility + { + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestIsBicepFile() + { + Assert.True(BicepUtility.IsBicepFile("test.bicep")); + Assert.False(BicepUtility.IsBicepFile("test.json")); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCheckBicepExecutable() + { + Assert.True(BicepUtility.CheckBicepExecutable(FakeTrueScriptExcutor)); + Assert.False(BicepUtility.CheckBicepExecutable(FakeFalseScriptExcutor)); + } + + private List FakeTrueScriptExcutor(string script) + { + return null; + } + + private List FakeFalseScriptExcutor(string script) + { + throw new Exception("fake exception"); + } + } +} diff --git a/src/Resources/Resources.Test/sampleDeploymentBicepFile.bicep b/src/Resources/Resources.Test/sampleDeploymentBicepFile.bicep new file mode 100644 index 000000000000..de738a3957a8 --- /dev/null +++ b/src/Resources/Resources.Test/sampleDeploymentBicepFile.bicep @@ -0,0 +1,14 @@ +param location string = 'westus' +param name string = 'bezstorage007' +var storageSku = 'Standard_LRS' + +resource stg 'Microsoft.Storage/storageAccounts@2019-06-01' = { + name: name + location: location + kind: 'Storage' + sku: { + name: storageSku + } +} + +output storageId string = stg.id \ No newline at end of file diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index 3e838234c88d..18eeb6206d0b 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* Added support for Azure resources deployment in Bicep language * Fixed issues with TemplateSpec deployments in New-AzTenantDeployment and New-AzManagementGroupDeployment * Added support for -QueryString parameter in Test-Az*Deployments cmdlets * Fixed issue with dynamic parameters when New-Az*Deployments is used with -QueryString diff --git a/src/Resources/Resources/help/Get-AzDeploymentWhatIfResult.md b/src/Resources/Resources/help/Get-AzDeploymentWhatIfResult.md index 1fae35c853fb..636466340f27 100644 --- a/src/Resources/Resources/help/Get-AzDeploymentWhatIfResult.md +++ b/src/Resources/Resources/help/Get-AzDeploymentWhatIfResult.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzDeploymentWhatIfResult ## SYNOPSIS -Gets an ARM template What-If result for a deployment at subscription scope. +Gets a template What-If result for a deployment at subscription scope. ## SYNTAX @@ -244,7 +244,7 @@ Accept wildcard characters: False ``` ### -TemplateFile -Local path to the template file. +Local path to the template file. Supported template file type: json and bicep. ```yaml Type: System.String diff --git a/src/Resources/Resources/help/Get-AzManagementGroupDeploymentWhatIfResult.md b/src/Resources/Resources/help/Get-AzManagementGroupDeploymentWhatIfResult.md index d69868a2c3f1..dad3ba921539 100644 --- a/src/Resources/Resources/help/Get-AzManagementGroupDeploymentWhatIfResult.md +++ b/src/Resources/Resources/help/Get-AzManagementGroupDeploymentWhatIfResult.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzManagementGroupDeploymentWhatIfResult ## SYNOPSIS -Gets an ARM template What-If result for a deployment at management group scope. +Gets a template What-If result for a deployment at management group scope. ## SYNTAX @@ -274,7 +274,7 @@ Accept wildcard characters: False ``` ### -TemplateFile -Local path to the template file. +Local path to the template file. Supported template file type: json and bicep. ```yaml Type: System.String diff --git a/src/Resources/Resources/help/Get-AzResourceGroupDeploymentWhatIfResult.md b/src/Resources/Resources/help/Get-AzResourceGroupDeploymentWhatIfResult.md index 28524fc2611d..b3a36f99dfec 100644 --- a/src/Resources/Resources/help/Get-AzResourceGroupDeploymentWhatIfResult.md +++ b/src/Resources/Resources/help/Get-AzResourceGroupDeploymentWhatIfResult.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzResourceGroupDeploymentWhatIfResult ## SYNOPSIS -Gets an ARM template What-If result for a deployment at resource group scope. +Gets a template What-If result for a deployment at resource group scope. ## SYNTAX @@ -269,7 +269,7 @@ Accept wildcard characters: False ``` ### -TemplateFile -Local path to the template file. +Local path to the template file. Supported template file type: json and bicep. ```yaml Type: System.String diff --git a/src/Resources/Resources/help/Get-AzTenantDeploymentWhatIfResult.md b/src/Resources/Resources/help/Get-AzTenantDeploymentWhatIfResult.md index b6a6ef3688dd..288584d8e939 100644 --- a/src/Resources/Resources/help/Get-AzTenantDeploymentWhatIfResult.md +++ b/src/Resources/Resources/help/Get-AzTenantDeploymentWhatIfResult.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzTenantDeploymentWhatIfResult ## SYNOPSIS -Gets an ARM template What-If result for a deployment at tenant scope. +Gets a template What-If result for a deployment at tenant scope. ## SYNTAX @@ -246,7 +246,7 @@ Accept wildcard characters: False ``` ### -TemplateFile -Local path to the template file. +Local path to the template file. Supported template file type: json and bicep. ```yaml Type: System.String diff --git a/src/Resources/Resources/help/New-AzDeployment.md b/src/Resources/Resources/help/New-AzDeployment.md index d45e25ca9cf5..279960b270ef 100644 --- a/src/Resources/Resources/help/New-AzDeployment.md +++ b/src/Resources/Resources/help/New-AzDeployment.md @@ -338,7 +338,7 @@ Accept wildcard characters: False ``` ### -TemplateFile -Local path to the template file. +Local path to the template file. Supported template file type: json and bicep. ```yaml Type: System.String diff --git a/src/Resources/Resources/help/New-AzManagementGroupDeployment.md b/src/Resources/Resources/help/New-AzManagementGroupDeployment.md index 3c5528742c83..72370dcb5198 100644 --- a/src/Resources/Resources/help/New-AzManagementGroupDeployment.md +++ b/src/Resources/Resources/help/New-AzManagementGroupDeployment.md @@ -359,7 +359,7 @@ Accept wildcard characters: False ``` ### -TemplateFile -Local path to the template file. +Local path to the template file. Supported template file type: json and bicep. ```yaml Type: System.String diff --git a/src/Resources/Resources/help/New-AzResourceGroupDeployment.md b/src/Resources/Resources/help/New-AzResourceGroupDeployment.md index 8489ee46be1d..b7958f5198de 100644 --- a/src/Resources/Resources/help/New-AzResourceGroupDeployment.md +++ b/src/Resources/Resources/help/New-AzResourceGroupDeployment.md @@ -437,7 +437,7 @@ Accept wildcard characters: False ``` ### -TemplateFile -Specifies the full path of a JSON template file. +Specifies the full path of a template file. Supported template file type: json and bicep. This can be a custom template or a gallery template that is saved as a JSON file, such as one created by using the **Save-AzResourceGroupGalleryTemplate** cmdlet. ```yaml @@ -534,7 +534,7 @@ Accept wildcard characters: False ``` ### -TemplateUri -Specifies the URI of a JSON template file. +Specifies the URI of a template file. This file can be a custom template or a gallery template that is saved as a JSON file, such as by using **Save-AzResourceGroupGalleryTemplate**. ```yaml diff --git a/src/Resources/Resources/help/New-AzTenantDeployment.md b/src/Resources/Resources/help/New-AzTenantDeployment.md index 5a11f40854e6..10c514b32c72 100644 --- a/src/Resources/Resources/help/New-AzTenantDeployment.md +++ b/src/Resources/Resources/help/New-AzTenantDeployment.md @@ -326,7 +326,7 @@ Accept wildcard characters: False ``` ### -TemplateFile -Local path to the template file. +Local path to the template file. Supported template file type: json and bicep. ```yaml Type: System.String diff --git a/src/Resources/Resources/help/Test-AzDeployment.md b/src/Resources/Resources/help/Test-AzDeployment.md index 3897abe25133..c2ac4fb42439 100644 --- a/src/Resources/Resources/help/Test-AzDeployment.md +++ b/src/Resources/Resources/help/Test-AzDeployment.md @@ -212,7 +212,7 @@ Accept wildcard characters: False ``` ### -TemplateFile -Local path to the template file. +Local path to the template file. Supported template file type: json and bicep. ```yaml Type: System.String diff --git a/src/Resources/Resources/help/Test-AzManagementGroupDeployment.md b/src/Resources/Resources/help/Test-AzManagementGroupDeployment.md index b6c1c9615c01..e8f05c32a49b 100644 --- a/src/Resources/Resources/help/Test-AzManagementGroupDeployment.md +++ b/src/Resources/Resources/help/Test-AzManagementGroupDeployment.md @@ -233,7 +233,7 @@ Accept wildcard characters: False ``` ### -TemplateFile -Local path to the template file. +Local path to the template file. Supported template file type: json and bicep. ```yaml Type: System.String diff --git a/src/Resources/Resources/help/Test-AzResourceGroupDeployment.md b/src/Resources/Resources/help/Test-AzResourceGroupDeployment.md index def26a21b3e6..f18c18a538c7 100644 --- a/src/Resources/Resources/help/Test-AzResourceGroupDeployment.md +++ b/src/Resources/Resources/help/Test-AzResourceGroupDeployment.md @@ -279,7 +279,7 @@ Accept wildcard characters: False ``` ### -TemplateFile -Specifies the full path of a JSON template file. +Specifies the full path of a template file. Supported template file type: json and bicep. ```yaml Type: System.String @@ -369,7 +369,7 @@ Accept wildcard characters: False ``` ### -TemplateUri -Specifies the URI of a JSON template file. +Specifies the URI of a template file. ```yaml Type: System.String diff --git a/src/Resources/Resources/help/Test-AzTenantDeployment.md b/src/Resources/Resources/help/Test-AzTenantDeployment.md index fc34a839a8cd..e7f094de45f8 100644 --- a/src/Resources/Resources/help/Test-AzTenantDeployment.md +++ b/src/Resources/Resources/help/Test-AzTenantDeployment.md @@ -214,7 +214,7 @@ Accept wildcard characters: False ``` ### -TemplateFile -Local path to the template file. +Local path to the template file. Supported template file type: json and bicep. ```yaml Type: System.String From 141d64a49f155d19be7914fca4c34af12bb7aa1d Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Tue, 23 Feb 2021 14:02:53 +0800 Subject: [PATCH 5/6] Add "[Breaking Change]" (#14276) to changelog.md for Compute --- src/Compute/Compute/ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 796eef18ce4a..e1caa658a067 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -20,7 +20,7 @@ --> ## Upcoming Release -* Removed all `ContainerService` cmdlets. The Container Service API was deprecated in January 2020. +* [Breaking Change] Removed all `ContainerService` cmdlets. The Container Service API was deprecated in January 2020. - `Add-AzureRmContainerServiceAgentPoolProfileCommand` - `Get-AzContainerService` - `New-AzContainerService` From 677d1bd19ed7c1e0e647b2d20e440533a2d6da3b Mon Sep 17 00:00:00 2001 From: Dingmeng Xue Date: Tue, 23 Feb 2021 15:59:03 +0800 Subject: [PATCH 6/6] Polish changelog for upcoming release (#14279) --- src/Accounts/Accounts/ChangeLog.md | 2 +- src/Resources/Resources/ChangeLog.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index 1c12317d771a..0ee80f15ccb2 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* Upgrade Azure.Identity to fix the issue that Connect-AzAccount fails when explict ADFS credential is used [#13560] +* Upgrade Azure.Identity to fix the issue that Connect-AzAccount fails when ADFS credential is used [#13560] ## Version 2.2.5 * Tracked CloudError code in exception diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index 18eeb6206d0b..0daca5755c40 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -20,11 +20,11 @@ ## Upcoming Release * Added support for Azure resources deployment in Bicep language -* Fixed issues with TemplateSpec deployments in New-AzTenantDeployment and New-AzManagementGroupDeployment -* Added support for -QueryString parameter in Test-Az*Deployments cmdlets -* Fixed issue with dynamic parameters when New-Az*Deployments is used with -QueryString -* Added support for `-TemplateParameterObject` parameter while using `-TemplateSpecId` parameter in New-Az*Deployments cmdlets. -* Fixed the inaccurate error message received on trying to deploy a non existant template spec. +* Fixed issues with TemplateSpec deployments in `New-AzTenantDeployment` and `New-AzManagementGroupDeployment` +* Added support for `-QueryString` parameter in `Test-Az*Deployments` cmdlets +* Fixed issue with dynamic parameters when `New-Az*Deployments` is used with `-QueryString` +* Added support for `-TemplateParameterObject` parameter while using `-TemplateSpecId` parameter in `New-Az*Deployments` cmdlets +* Fixed the inaccurate error message received on trying to deploy a non-existent template spec ## Version 3.2.1 * Removed principal type on New-AzRoleAssignment and Set-AzRoleAssignment because current mapping was breaking certain scenarios