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/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/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
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..e1caa658a067 100644
--- a/src/Compute/Compute/ChangeLog.md
+++ b/src/Compute/Compute/ChangeLog.md
@@ -20,6 +20,14 @@
-->
## Upcoming Release
+* [Breaking Change] 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/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.
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