diff --git a/src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.cs b/src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.cs deleted file mode 100644 index 4c673af9de73..000000000000 --- a/src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.cs +++ /dev/null @@ -1,41 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.WindowsAzure.Commands.ScenarioTest; -using Xunit; - -namespace Microsoft.Azure.Commands.Compute.Test.ScenarioTests -{ - public class ContainerServiceTests : ComputeTestRunner - { - public ContainerServiceTests(Xunit.Abstractions.ITestOutputHelper output) - : base(output) - { - } - - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestContainerService() - { - TestRunner.RunTestScript("Test-ContainerService"); - } - - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestContainerServiceUpdate() - { - TestRunner.RunTestScript("Test-ContainerServiceUpdate"); - } - } -} diff --git a/src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.ps1 b/src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.ps1 deleted file mode 100644 index 8d93617bd7ec..000000000000 --- a/src/Compute/Compute.Test/ScenarioTests/ContainerServiceTests.ps1 +++ /dev/null @@ -1,177 +0,0 @@ -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -<# -.SYNOPSIS -Test Container Service -#> -function Test-ContainerService -{ - # Setup - $rgname = Get-ComputeTestResourceName - - try - { - # Common - $loc = 'eastus2'; - New-AzResourceGroup -Name $rgname -Location $loc -Force; - - $csName = 'cs' + $rgname; - $masterDnsPrefixName = 'master' + $rgname; - $agentPoolDnsPrefixName = 'ap' + $rgname; - $agentPoolProfileName = 'AgentPool1'; - $vmSize = 'Standard_A1'; - - $orchestratorType = 'DCOS'; - $adminUserName = 'acslinuxadmin'; - $sshPublicKey = - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2" + - "MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2" + - "oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgE" + - "Sgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h" + - "9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417" + - "u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4" + - "bL acs-bot@microsoft.com"; - - $job = New-AzContainerServiceConfig -Location $loc -OrchestratorType $orchestratorType ` - -MasterDnsPrefix $masterDnsPrefixName -AdminUsername $adminUserName -SshPublicKey $sshPublicKey ` - | Add-AzContainerServiceAgentPoolProfile -Name $agentPoolProfileName -VmSize $vmSize -DnsPrefix $agentPoolDnsPrefixName -Count 1 ` - | New-AzContainerService -ResourceGroupName $rgname -Name $csName -AsJob; - $result = $job | Wait-Job; - Assert-AreEqual "Completed" $result.State; - $container = $job | Receive-Job - - $wildcardRgQuery = ($rgname -replace ".$") + "*" - $wildcardNameQuery = ($csName -replace ".$") + "*" - - $cs = Get-AzContainerService - Assert-True { $cs.Count -ge 1 } - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -ResourceGroupName $rgname - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -ResourceGroupName $wildcardRgQuery - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -Name $csName; - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -Name $wildcardNameQuery; - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -ResourceGroupName $rgname -Name $wildcardNameQuery; - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -ResourceGroupName $wildcardRgQuery -Name $csName; - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -ResourceGroupName $wildcardRgQuery -Name $wildcardNameQuery; - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-False { $output.Contains("AgentPoolProfiles") }; - - $cs = Get-AzContainerService -ResourceGroupName $rgname -Name $csName; - Assert-AreEqual $rgname $cs.ResourceGroupName - $output = $cs | Out-String; - Assert-True { $output.Contains("AgentPoolProfiles") }; - - $job = Remove-AzContainerService -ResourceGroupName $rgname -Name $csName -Force -AsJob; - $result = $job | Wait-Job; - Assert-AreEqual "Completed" $result.State; - $st = $job | Receive-Job - } - finally - { - # Cleanup - Clean-ResourceGroup $rgname - } -} - -<# -.SYNOPSIS -Test Container Service Update -#> -function Test-ContainerServiceUpdate -{ - # Setup - $rgname = Get-ComputeTestResourceName - - try - { - # Common - $loc = 'australiasoutheast'; - New-AzResourceGroup -Name $rgname -Location $loc -Force; - - $csName = 'cs' + $rgname; - $masterDnsPrefixName = 'master' + $rgname; - $agentPoolDnsPrefixName = 'ap' + $rgname; - $agentPoolProfileName = 'AgentPool1'; - $vmSize = 'Standard_A1'; - - $orchestratorType = 'DCOS'; - $adminUserName = 'acslinuxadmin'; - $sshPublicKey = - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2" + - "MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2" + - "oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgE" + - "Sgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h" + - "9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417" + - "u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4" + - "bL acs-bot@microsoft.com"; - - $container = New-AzContainerServiceConfig -Location $loc ` - -OrchestratorType $orchestratorType ` - -MasterDnsPrefix $masterDnsPrefixName ` - -MasterCount 1 ` - -AdminUsername $adminUserName ` - -SshPublicKey $sshPublicKey ` - | Add-AzContainerServiceAgentPoolProfile -Name $agentPoolProfileName ` - -VmSize $vmSize ` - -DnsPrefix $agentPoolDnsPrefixName ` - -Count 1 ` - | New-AzContainerService -ResourceGroupName $rgname -Name $csName; - - $job = Get-AzContainerService -ResourceGroupName $rgname -Name $csName ` - | Remove-AzContainerServiceAgentPoolProfile -Name $agentPoolProfileName ` - | Add-AzContainerServiceAgentPoolProfile -Name $agentPoolProfileName ` - -VmSize $vmSize ` - -DnsPrefix $agentPoolDnsPrefixName ` - -Count 2 ` - | Update-AzContainerService -AsJob; - $result = $job | Wait-Job; - Assert-AreEqual "Completed" $result.State; - - $st = Get-AzContainerService -ResourceGroupName $rgname -Name $csName | Remove-AzContainerService -Force; - } - finally - { - # Cleanup - Clean-ResourceGroup $rgname - } -} - diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerService.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerService.json deleted file mode 100644 index eb8dbb85eafb..000000000000 --- a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerService.json +++ /dev/null @@ -1,3250 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/crptestps1291?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyOTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "57bad377-cfc6-43d6-a456-2cac1b00b54f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "ea7ccb13-6c01-45b3-bfb6-1de6195a84af" - ], - "x-ms-correlation-request-id": [ - "ea7ccb13-6c01-45b3-bfb6-1de6195a84af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004307Z:ea7ccb13-6c01-45b3-bfb6-1de6195a84af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:43:07 GMT" - ], - "Content-Length": [ - "180" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291\",\r\n \"name\": \"crptestps1291\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzMTI5MT9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"dnsPrefix\": \"mastercrptestps1291\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"acslinuxadmin\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c9aa6f20-06bb-4490-a5bc-c9959eff9d64" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1080" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateContainerService3Min;9,Microsoft.Compute/CreateUpdateContainerService30Min;99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "43688436-7be8-4964-86ab-734d6ff1eb03" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "a388486d-68e0-46b4-bc15-625f7be0b0a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004318Z:a388486d-68e0-46b4-bc15-625f7be0b0a0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:43:18 GMT" - ], - "Content-Length": [ - "1453" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;148,Microsoft.Compute/GetOperationStatus30Min;1498" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "7c6c4658-b63f-47bb-8e4a-0cd0164e08ea" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "b499031b-a088-497a-a9aa-1983e642f65e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004348Z:b499031b-a088-497a-a9aa-1983e642f65e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:43:48 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;145,Microsoft.Compute/GetOperationStatus30Min;1495" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "5c9795c5-4cd7-4ebc-b34c-3e59de9ea64a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "937f68e4-98eb-46dc-b1cf-b9ad4697059a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004418Z:937f68e4-98eb-46dc-b1cf-b9ad4697059a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:44:18 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;142,Microsoft.Compute/GetOperationStatus30Min;1492" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "9382ee13-cb95-4268-9537-52e26411bc74" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "1b9b74ad-bfe3-4a1a-97a1-e7836079cd80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004449Z:1b9b74ad-bfe3-4a1a-97a1-e7836079cd80" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:44:48 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;139,Microsoft.Compute/GetOperationStatus30Min;1489" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "df2b8970-7c7b-4887-852b-2d1febf88827" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "eb274fc5-f21a-499e-b5e2-f189041ba217" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004519Z:eb274fc5-f21a-499e-b5e2-f189041ba217" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:45:18 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;136,Microsoft.Compute/GetOperationStatus30Min;1486" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "8e8a813b-c4f5-46c6-8056-5a13dce27664" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "22d3cfad-77cd-49ef-b8f3-b840519a8334" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004549Z:22d3cfad-77cd-49ef-b8f3-b840519a8334" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:45:49 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1483" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "3738ebd1-8a2c-461b-bbed-5723dbaaea7c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "58d059ba-310f-4f0f-86b0-f8ffb5f99001" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004619Z:58d059ba-310f-4f0f-86b0-f8ffb5f99001" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:46:19 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1480" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "74952535-6339-46e0-be24-dd7fdcd827ac" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "760c5282-f417-4139-8459-6e185b039611" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004649Z:760c5282-f417-4139-8459-6e185b039611" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:46:49 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1477" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "fd1fb510-cfe0-4363-8249-e2d3f1f803bc" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "2ab3fba2-683e-4a99-a40d-c1723036b3e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004720Z:2ab3fba2-683e-4a99-a40d-c1723036b3e6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:47:19 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1474" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "ee3cfad3-3311-447c-8982-faaa423e3723" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "77d8b6a8-0eed-4a91-ac68-41e7c787dc99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004750Z:77d8b6a8-0eed-4a91-ac68-41e7c787dc99" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:47:49 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1471" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "8b5f5458-9887-4d93-b15f-f2adbce6dcea" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-correlation-request-id": [ - "aab92679-cbdd-4aa2-a52a-ec88c1c3fd87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004820Z:aab92679-cbdd-4aa2-a52a-ec88c1c3fd87" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:48:20 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1468" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "e3b0416a-12db-4ed1-83f6-155ad6413516" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "d49aee4f-b7e7-4929-b5ac-ee0d515cf8e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004850Z:d49aee4f-b7e7-4929-b5ac-ee0d515cf8e8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:48:49 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1465" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "8a166273-3574-4889-b9e8-2a285ad12270" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-correlation-request-id": [ - "9ba4c953-3919-4d07-b4db-a11f55b6a3a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004920Z:9ba4c953-3919-4d07-b4db-a11f55b6a3a4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:49:20 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;134,Microsoft.Compute/GetOperationStatus30Min;1463" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "1240e03d-9148-44c2-8c1d-1441b3beebb2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "e2637bc5-da9e-4b8e-8290-d75f8e747735" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T004951Z:e2637bc5-da9e-4b8e-8290-d75f8e747735" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:49:50 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/43688436-7be8-4964-86ab-734d6ff1eb03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQzNjg4NDM2LTdiZTgtNDk2NC04NmFiLTczNGQ2ZmYxZWIwMz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;134,Microsoft.Compute/GetOperationStatus30Min;1460" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "09ca29cf-38ad-46d9-93e8-1a2b77c46c4a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "525c416e-5c52-4f13-ba9a-3893a18fa5fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005021Z:525c416e-5c52-4f13-ba9a-3893a18fa5fd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:20 GMT" - ], - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:43:09.9572824-08:00\",\r\n \"endTime\": \"2019-01-30T16:49:58.9999388-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"43688436-7be8-4964-86ab-734d6ff1eb03\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzMTI5MT9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerService3Min;37,Microsoft.Compute/GetContainerService30Min;396" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "4168ecb4-173d-429f-8c99-d1015e7abb80" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-correlation-request-id": [ - "f2019319-c24e-49f1-838c-5b15e646a4d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005021Z:f2019319-c24e-49f1-838c-5b15e646a4d5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:20 GMT" - ], - "Content-Length": [ - "1658" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzMTI5MT9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "744c5170-698f-4b51-b70d-1ee1d7e94cbb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerService3Min;36,Microsoft.Compute/GetContainerService30Min;395" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "6054a1b7-159e-46ca-939a-dfb82bd0e7d1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-correlation-request-id": [ - "5e401cb5-ca78-4627-a4e4-63752fdcba9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005023Z:5e401cb5-ca78-4627-a4e4-63752fdcba9d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:23 GMT" - ], - "Content-Length": [ - "1658" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9jb250YWluZXJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fc508727-bcb5-4451-96b7-623fe7d0a484" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceSubscription3Min;149,Microsoft.Compute/GetContainerServiceSubscription30Min;1499" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "866759dd-cfe0-46d6-ab3a-0d9057d8a02c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-correlation-request-id": [ - "ae1d58e8-45da-4f48-98be-fe39b9fae14a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005021Z:ae1d58e8-45da-4f48-98be-fe39b9fae14a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:21 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9jb250YWluZXJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f9fa3b08-dfea-4ed8-a289-1c132329d284" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceSubscription3Min;148,Microsoft.Compute/GetContainerServiceSubscription30Min;1498" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "30c44f68-eff2-4308-b8b5-256698d8c4a9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "d4bd66a1-5e96-4741-9d12-72200f836b2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005022Z:d4bd66a1-5e96-4741-9d12-72200f836b2c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:21 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9jb250YWluZXJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "50923f57-bbce-4cc7-9735-42d3bfafb6c5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceSubscription3Min;147,Microsoft.Compute/GetContainerServiceSubscription30Min;1497" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "f1ed3d05-d4e2-4b8e-89a4-2f0b4e570bde" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-correlation-request-id": [ - "58b9f0f3-dec1-4325-9568-9ca8a1908440" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005022Z:58b9f0f3-dec1-4325-9568-9ca8a1908440" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:21 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9jb250YWluZXJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6873def2-46f2-4c1a-b5ee-c214968f3e45" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceSubscription3Min;146,Microsoft.Compute/GetContainerServiceSubscription30Min;1496" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "2153473f-e922-4466-843d-7ac397a820dd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "5b546b92-a659-4200-8c94-efcfa0571ff9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005022Z:5b546b92-a659-4200-8c94-efcfa0571ff9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:21 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9jb250YWluZXJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "afc79390-ef01-4e9f-b710-1c7906a3af42" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceSubscription3Min;145,Microsoft.Compute/GetContainerServiceSubscription30Min;1495" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "623bef4e-b8e4-4f72-baa1-0df44100ca32" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-correlation-request-id": [ - "ef4e6ebf-c7a2-43ea-9aff-d945154b96a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005023Z:ef4e6ebf-c7a2-43ea-9aff-d945154b96a0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:23 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9jb250YWluZXJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d6545461-e1f5-4026-a5fd-36889cdc3ea7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceSubscription3Min;144,Microsoft.Compute/GetContainerServiceSubscription30Min;1494" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "376e10c2-de98-41b3-a105-8ae44d0c1ced" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-correlation-request-id": [ - "cef806e9-ecef-40f6-aefc-bbfd480e9d65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005023Z:cef806e9-ecef-40f6-aefc-bbfd480e9d65" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:23 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "47184adc-d1cf-4900-ab42-b22792820ec1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceResourceGroup3Min;149,Microsoft.Compute/GetContainerServiceResourceGroup30Min;1499" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "ab85ce70-304d-4e89-814c-b11a47297f90" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-correlation-request-id": [ - "44a52fab-cda9-4880-84f7-d20865d7db10" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005022Z:44a52fab-cda9-4880-84f7-d20865d7db10" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:21 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "21a462e7-d026-49a1-95d6-6bfde279f1f5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerServiceResourceGroup3Min;148,Microsoft.Compute/GetContainerServiceResourceGroup30Min;1498" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "93ba87a4-9adf-4bb1-b091-f1e3466dbe96" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-correlation-request-id": [ - "085747d4-5bcc-4986-a6c1-a5c1667146d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005023Z:085747d4-5bcc-4986-a6c1-a5c1667146d1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:23 GMT" - ], - "Content-Length": [ - "1863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/CRPTESTPS1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291\",\r\n \"name\": \"cscrptestps1291\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps1291\",\r\n \"fqdn\": \"mastercrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps1291\",\r\n \"fqdn\": \"apcrptestps1291.eastus2.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://sue5wuflb2udidiag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/crptestps1291/providers/Microsoft.ContainerService/containerServices/cscrptestps1291?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzMTI5MT9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6c08680e-103d-40ac-98ec-78f5b967069b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/116219a5-1cfa-4f6d-b34a-62498684c0d5?monitor=true&api-version=2017-01-31" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/116219a5-1cfa-4f6d-b34a-62498684c0d5?api-version=2017-01-31" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteContainerService3Min;29,Microsoft.Compute/DeleteContainerService30Min;149" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "116219a5-1cfa-4f6d-b34a-62498684c0d5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "6e53e8ef-70bd-4004-8e25-93de414132d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005024Z:6e53e8ef-70bd-4004-8e25-93de414132d9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:24 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/116219a5-1cfa-4f6d-b34a-62498684c0d5?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzExNjIxOWE1LTFjZmEtNGY2ZC1iMzRhLTYyNDk4Njg0YzBkNT9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;134,Microsoft.Compute/GetOperationStatus30Min;1458" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "c4919c76-b619-43b1-bdc7-8a83f8428b81" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-correlation-request-id": [ - "3f7ab5f1-4eaa-45b9-97ab-7a89e782ac37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005054Z:3f7ab5f1-4eaa-45b9-97ab-7a89e782ac37" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:53 GMT" - ], - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-01-30T16:50:24.0655309-08:00\",\r\n \"endTime\": \"2019-01-30T16:50:24.1592549-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"116219a5-1cfa-4f6d-b34a-62498684c0d5\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ContainerService/locations/eastus2/operations/116219a5-1cfa-4f6d-b34a-62498684c0d5?monitor=true&api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzExNjIxOWE1LTFjZmEtNGY2ZC1iMzRhLTYyNDk4Njg0YzBkNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0wMS0zMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/24.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1457" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b2a10fe4-96f7-45e7-8b13-dff96037b374_131806577557411190" - ], - "x-ms-request-id": [ - "5d597b22-0dc2-492b-acdb-37179432b104" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-correlation-request-id": [ - "e10cf8f9-6844-4339-9892-a819860e7a64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005054Z:e10cf8f9-6844-4339-9892-a819860e7a64" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/crptestps1291?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyOTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9dac5f8d-5924-451c-9714-0a00dfbe155a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-request-id": [ - "22928219-e34a-4c9d-8606-e20cf1cd9c7a" - ], - "x-ms-correlation-request-id": [ - "22928219-e34a-4c9d-8606-e20cf1cd9c7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005056Z:22928219-e34a-4c9d-8606-e20cf1cd9c7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:50:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-request-id": [ - "1f3eb786-ef19-4689-b9b1-2a486a41676d" - ], - "x-ms-correlation-request-id": [ - "1f3eb786-ef19-4689-b9b1-2a486a41676d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005111Z:1f3eb786-ef19-4689-b9b1-2a486a41676d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:51:11 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-request-id": [ - "c6660def-e57e-4193-a845-89f17c1c3340" - ], - "x-ms-correlation-request-id": [ - "c6660def-e57e-4193-a845-89f17c1c3340" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005126Z:c6660def-e57e-4193-a845-89f17c1c3340" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:51:26 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-request-id": [ - "28c20ec7-a609-4126-b87a-d8b6a65682df" - ], - "x-ms-correlation-request-id": [ - "28c20ec7-a609-4126-b87a-d8b6a65682df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005142Z:28c20ec7-a609-4126-b87a-d8b6a65682df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:51:41 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-request-id": [ - "96f957af-5060-456c-a55a-b65e5efb7494" - ], - "x-ms-correlation-request-id": [ - "96f957af-5060-456c-a55a-b65e5efb7494" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005157Z:96f957af-5060-456c-a55a-b65e5efb7494" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:51:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-request-id": [ - "f503c5ed-9a11-4955-bd05-1c9df53f126e" - ], - "x-ms-correlation-request-id": [ - "f503c5ed-9a11-4955-bd05-1c9df53f126e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005212Z:f503c5ed-9a11-4955-bd05-1c9df53f126e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:52:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-request-id": [ - "d3034539-09de-4957-8e23-d441231a5711" - ], - "x-ms-correlation-request-id": [ - "d3034539-09de-4957-8e23-d441231a5711" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005227Z:d3034539-09de-4957-8e23-d441231a5711" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:52:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-request-id": [ - "9c73d997-eca8-4b44-b7b8-6bf57a84a3f5" - ], - "x-ms-correlation-request-id": [ - "9c73d997-eca8-4b44-b7b8-6bf57a84a3f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005243Z:9c73d997-eca8-4b44-b7b8-6bf57a84a3f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:52:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-request-id": [ - "eb34d673-6ff2-4256-9e48-ac4366f3aabd" - ], - "x-ms-correlation-request-id": [ - "eb34d673-6ff2-4256-9e48-ac4366f3aabd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005258Z:eb34d673-6ff2-4256-9e48-ac4366f3aabd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:52:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-request-id": [ - "10d617ca-73c9-4fab-8e09-52e97173d583" - ], - "x-ms-correlation-request-id": [ - "10d617ca-73c9-4fab-8e09-52e97173d583" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005313Z:10d617ca-73c9-4fab-8e09-52e97173d583" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:53:13 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-request-id": [ - "a260e1b2-6bab-4f6a-83fe-d37316b3b495" - ], - "x-ms-correlation-request-id": [ - "a260e1b2-6bab-4f6a-83fe-d37316b3b495" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005328Z:a260e1b2-6bab-4f6a-83fe-d37316b3b495" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:53:28 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-request-id": [ - "9ff1b6e3-7481-4345-a6f7-7aeefaa8afed" - ], - "x-ms-correlation-request-id": [ - "9ff1b6e3-7481-4345-a6f7-7aeefaa8afed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005344Z:9ff1b6e3-7481-4345-a6f7-7aeefaa8afed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:53:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "x-ms-request-id": [ - "683226ef-9d6e-4c12-b5df-dcde7000bf5e" - ], - "x-ms-correlation-request-id": [ - "683226ef-9d6e-4c12-b5df-dcde7000bf5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005359Z:683226ef-9d6e-4c12-b5df-dcde7000bf5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:53:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-request-id": [ - "8d744d79-8005-4271-bd6e-106b42dff8dd" - ], - "x-ms-correlation-request-id": [ - "8d744d79-8005-4271-bd6e-106b42dff8dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005414Z:8d744d79-8005-4271-bd6e-106b42dff8dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:54:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" - ], - "x-ms-request-id": [ - "da6eb8db-4d59-4654-b982-6b0b0a7b0218" - ], - "x-ms-correlation-request-id": [ - "da6eb8db-4d59-4654-b982-6b0b0a7b0218" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005429Z:da6eb8db-4d59-4654-b982-6b0b0a7b0218" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:54:28 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-request-id": [ - "051f6ca2-1254-4733-8521-41f4e0e8709f" - ], - "x-ms-correlation-request-id": [ - "051f6ca2-1254-4733-8521-41f4e0e8709f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005457Z:051f6ca2-1254-4733-8521-41f4e0e8709f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:54:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-request-id": [ - "9ee29ee4-c60a-4df7-b4e4-377ceca0fa24" - ], - "x-ms-correlation-request-id": [ - "9ee29ee4-c60a-4df7-b4e4-377ceca0fa24" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005512Z:9ee29ee4-c60a-4df7-b4e4-377ceca0fa24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:55:11 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-request-id": [ - "e7829a41-842d-47c6-b8eb-63a0f1fab545" - ], - "x-ms-correlation-request-id": [ - "e7829a41-842d-47c6-b8eb-63a0f1fab545" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005528Z:e7829a41-842d-47c6-b8eb-63a0f1fab545" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:55:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" - ], - "x-ms-request-id": [ - "c52ecbff-43a6-4b05-ac6a-3c8a7bf335e6" - ], - "x-ms-correlation-request-id": [ - "c52ecbff-43a6-4b05-ac6a-3c8a7bf335e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005543Z:c52ecbff-43a6-4b05-ac6a-3c8a7bf335e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:55:42 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-request-id": [ - "f388f12e-57d0-48d5-a930-420a0faf06b5" - ], - "x-ms-correlation-request-id": [ - "f388f12e-57d0-48d5-a930-420a0faf06b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005558Z:f388f12e-57d0-48d5-a930-420a0faf06b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:55:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" - ], - "x-ms-request-id": [ - "1c6639cd-9fe7-4494-913f-34ff8660a19d" - ], - "x-ms-correlation-request-id": [ - "1c6639cd-9fe7-4494-913f-34ff8660a19d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005613Z:1c6639cd-9fe7-4494-913f-34ff8660a19d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:56:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], - "x-ms-request-id": [ - "fde75fd2-118c-4f84-9f5b-3e727d151da4" - ], - "x-ms-correlation-request-id": [ - "fde75fd2-118c-4f84-9f5b-3e727d151da4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005629Z:fde75fd2-118c-4f84-9f5b-3e727d151da4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:56:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjkxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpreExVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" - ], - "x-ms-request-id": [ - "a04d37eb-7692-45c4-91c4-c581157a52d2" - ], - "x-ms-correlation-request-id": [ - "a04d37eb-7692-45c4-91c4-c581157a52d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190131T005629Z:a04d37eb-7692-45c4-91c4-c581157a52d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 31 Jan 2019 00:56:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - } - ], - "Names": { - "Test-ContainerService": [ - "crptestps1291" - ] - }, - "Variables": { - "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f" - } -} \ No newline at end of file diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerServiceUpdate.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerServiceUpdate.json deleted file mode 100644 index 523b232dc7b2..000000000000 --- a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ContainerServiceTests/TestContainerServiceUpdate.json +++ /dev/null @@ -1,3332 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4764?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ3NjQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"australiasoutheast\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "40" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764\",\r\n \"name\": \"crptestps4764\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "191" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "f12e75a0-7ab9-4652-8660-4465cb6799cd" - ], - "x-ms-correlation-request-id": [ - "f12e75a0-7ab9-4652-8660-4465cb6799cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225305Z:f12e75a0-7ab9-4652-8660-4465cb6799cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 22:53:04 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"acslinuxadmin\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {}\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1110" - ], - "x-ms-client-request-id": [ - "ca61f9b7-192f-4e1a-b4f4-b70216e4b58b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764\",\r\n \"name\": \"cscrptestps4764\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\",\r\n \"vmSize\": \"Standard_D2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1461" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateContainerService3Min;9,Microsoft.Compute/CreateUpdateContainerService30Min;98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "02c07562-679a-4e6c-8b8c-88e98fdb4b03" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "a2f8e83d-c072-4dcc-93c2-ffffafaa367f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225320Z:a2f8e83d-c072-4dcc-93c2-ffffafaa367f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:53:19 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 2,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"acslinuxadmin\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {}\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1110" - ], - "x-ms-client-request-id": [ - "6e16025f-0b4d-4596-b4fa-318573604956" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764\",\r\n \"name\": \"cscrptestps4764\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\",\r\n \"vmSize\": \"Standard_D2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 2,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://6u33bfhtxehtediag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1537" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateContainerService3Min;9,Microsoft.Compute/CreateUpdateContainerService30Min;97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "f058cd7c-4d61-4081-aab2-06320b35f66d" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "75cae9f0-b005-49c1-b326-515b15da85a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230000Z:75cae9f0-b005-49c1-b326-515b15da85a2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:59:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;148,Microsoft.Compute/GetOperationStatus30Min;1441" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "124965e1-c0f0-4326-a67a-1919410a6f2b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-correlation-request-id": [ - "f5dde3e2-1017-4f82-8e3c-6e730cbf3eb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225350Z:f5dde3e2-1017-4f82-8e3c-6e730cbf3eb1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:53:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;145,Microsoft.Compute/GetOperationStatus30Min;1438" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "00406f66-a58d-4510-8f22-1a1fb6e0e374" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "d7bb79e5-c9b7-4fa3-ab77-3c40cb2554a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225420Z:d7bb79e5-c9b7-4fa3-ab77-3c40cb2554a7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:54:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;142,Microsoft.Compute/GetOperationStatus30Min;1435" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "45dcc346-3f45-42de-b189-27bf7ba1d4c3" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-correlation-request-id": [ - "2cfea3ea-fdf8-497a-8b12-c53277f440dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225451Z:2cfea3ea-fdf8-497a-8b12-c53277f440dd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:54:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;139,Microsoft.Compute/GetOperationStatus30Min;1432" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "32ba4021-fb8c-4c5b-99bf-33d2f2abfd44" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "461dac9c-92cd-4049-bdd9-b615fdf172d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225521Z:461dac9c-92cd-4049-bdd9-b615fdf172d9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:55:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;136,Microsoft.Compute/GetOperationStatus30Min;1429" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "c4529630-1fbb-4e23-bdf4-8430f3a8dffd" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "98426c43-95af-48eb-8aa5-64144032f741" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225551Z:98426c43-95af-48eb-8aa5-64144032f741" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:55:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1426" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "9c04d537-4771-43a6-ad64-b67b69882983" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "75b6b1ae-fc66-45ae-a78b-befc00cdbc77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225622Z:75b6b1ae-fc66-45ae-a78b-befc00cdbc77" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:56:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1423" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "a59422cf-da29-4d29-a35a-823d8e03ec5e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-correlation-request-id": [ - "d19a5d20-9878-4052-b090-ef5631408b63" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225652Z:d19a5d20-9878-4052-b090-ef5631408b63" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:56:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1420" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "43b53899-fd15-4b4d-99bb-805d96355a76" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "cde5e8ce-7695-4a2b-8082-9969c56655ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225722Z:cde5e8ce-7695-4a2b-8082-9969c56655ae" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:57:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1417" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "0b750ee5-27d5-4cfa-bce6-fb3e61648781" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "96cc2361-5ab6-4a54-8636-1478f2171b60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225753Z:96cc2361-5ab6-4a54-8636-1478f2171b60" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:57:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;134,Microsoft.Compute/GetOperationStatus30Min;1415" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "694e124e-2093-4b4c-b01d-d1a1c7525039" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "20cc83e3-fb70-46eb-82b0-c727325b82ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225823Z:20cc83e3-fb70-46eb-82b0-c727325b82ea" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:58:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;134,Microsoft.Compute/GetOperationStatus30Min;1412" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "5867b99c-a195-4e07-9759-e5c949f89ece" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "c3a5014c-c788-4005-a141-8ece2c1e055e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225854Z:c3a5014c-c788-4005-a141-8ece2c1e055e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:58:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1409" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "41b84d55-35bb-4148-943a-00c280bc6512" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-correlation-request-id": [ - "d820b500-28a5-4ab1-9256-ab801c22f14d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225924Z:d820b500-28a5-4ab1-9256-ab801c22f14d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:59:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/02c07562-679a-4e6c-8b8c-88e98fdb4b03?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvMDJjMDc1NjItNjc5YS00ZTZjLThiOGMtODhlOThmZGI0YjAzP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:53:08.9500828-07:00\",\r\n \"endTime\": \"2018-06-01T15:59:49.110188-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"02c07562-679a-4e6c-8b8c-88e98fdb4b03\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "183" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;133,Microsoft.Compute/GetOperationStatus30Min;1406" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "7fd0f926-35e2-40ac-9d81-ab3a2734e96e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-correlation-request-id": [ - "3d4551a7-861d-490c-9d32-59d78596a616" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225955Z:3d4551a7-861d-490c-9d32-59d78596a616" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:59:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764\",\r\n \"name\": \"cscrptestps4764\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\",\r\n \"fqdn\": \"mastercrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\",\r\n \"fqdn\": \"apcrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://6u33bfhtxehtediag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1688" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerService3Min;39,Microsoft.Compute/GetContainerService30Min;391" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "16cf2b26-5b4b-4409-b8bc-554ffc6f0c2c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-correlation-request-id": [ - "87d36b4a-ce26-471a-b4fe-775d86695221" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225955Z:87d36b4a-ce26-471a-b4fe-775d86695221" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:59:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1fd14e3c-8c3f-4352-bdbe-62a0419213c9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764\",\r\n \"name\": \"cscrptestps4764\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\",\r\n \"fqdn\": \"mastercrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\",\r\n \"fqdn\": \"apcrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://6u33bfhtxehtediag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1688" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerService3Min;38,Microsoft.Compute/GetContainerService30Min;390" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "97e170ef-4cc7-45cc-bcf2-e684148207ed" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-correlation-request-id": [ - "ee6cffd2-6658-4a41-b138-81d6511bda18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T225955Z:ee6cffd2-6658-4a41-b138-81d6511bda18" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 22:59:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764\",\r\n \"name\": \"cscrptestps4764\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\",\r\n \"fqdn\": \"mastercrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 2,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\",\r\n \"fqdn\": \"apcrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://6u33bfhtxehtediag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1688" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerService3Min;37,Microsoft.Compute/GetContainerService30Min;385" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "e4e00281-ee4c-48fb-97bc-9f39ffa6d29c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], - "x-ms-correlation-request-id": [ - "ba3188d4-8025-42f4-b878-f106723b4220" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230333Z:ba3188d4-8025-42f4-b878-f106723b4220" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:03:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "541c4cf1-d551-46fa-9185-1c4585c75532" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerService/ContainerServices\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764\",\r\n \"name\": \"cscrptestps4764\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"orchestratorProfile\": {\r\n \"orchestratorType\": \"DCOS\"\r\n },\r\n \"masterProfile\": {\r\n \"count\": 1,\r\n \"dnsPrefix\": \"mastercrptestps4764\",\r\n \"fqdn\": \"mastercrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"vmSize\": \"Standard_D2\"\r\n },\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"AgentPool1\",\r\n \"count\": 2,\r\n \"vmSize\": \"Standard_A1\",\r\n \"dnsPrefix\": \"apcrptestps4764\",\r\n \"fqdn\": \"apcrptestps4764.australiasoutheast.cloudapp.azure.com\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDorij8dGcKUBTbvHylBpm5NZ2MtDgn1+jbyHE8N4dCS4ZoIl6Pdoa1At/GjXVhIRuz1hlyT2ey5BaC8iQnQTh/f2oyNctQ5+2KX1sgFlvaQAJCVn0tN7yDT29ZiIE2kfL3RCV5HH7p+NjBQ/cvtaOgESgoi/CI3S58w1XaRdDKo5Uz0U0DDuuB5lO5dq4nceAH8sx2bFTNjlgJcoyxi13h9CYkymm0mVaZkwiIJY8cU+UrupZKCMboBbCM7Q2spmRQ1tGicT5g84PsCqUf417u+Jvtf0kD1GdsCyMGALzBDS0scORhMiXHZ/vEM6rOPCIBpH7IzeULhWGXZfPdg4bL acs-bot@microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"adminUsername\": \"acslinuxadmin\"\r\n },\r\n \"diagnosticsProfile\": {\r\n \"vmDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://6u33bfhtxehtediag0.blob.core.windows.net/\"\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1688" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetContainerService3Min;36,Microsoft.Compute/GetContainerService30Min;384" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "a6a8f5fa-e2ba-4a34-9af0-dd4884ab1429" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "d6307729-6673-4a78-96a4-67f4982f04bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230334Z:d6307729-6673-4a78-96a4-67f4982f04bf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:03:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;137,Microsoft.Compute/GetOperationStatus30Min;1405" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "7cadc046-5109-4e1f-8c06-38c271f9fe1f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "b785d87f-4d9d-4f26-8d2c-3c79c0c412bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230030Z:b785d87f-4d9d-4f26-8d2c-3c79c0c412bb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:00:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;139,Microsoft.Compute/GetOperationStatus30Min;1404" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "74c831e4-23a1-4cae-80c1-f4d19b18683e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-correlation-request-id": [ - "c8dd73dd-42ad-46ee-ace9-3a522f5f7ccb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230101Z:c8dd73dd-42ad-46ee-ace9-3a522f5f7ccb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:01:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;141,Microsoft.Compute/GetOperationStatus30Min;1403" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "8f0b91cb-ba13-413d-ac38-7e65970890fc" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], - "x-ms-correlation-request-id": [ - "620d7a07-c38a-4837-9ccf-46175bb4e0ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230131Z:620d7a07-c38a-4837-9ccf-46175bb4e0ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:01:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;143,Microsoft.Compute/GetOperationStatus30Min;1402" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "9ff57074-ebae-45a6-81ef-fe3e1c3dc287" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "a755b278-bf3b-457d-b79d-d94a774525ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230201Z:a755b278-bf3b-457d-b79d-d94a774525ab" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:02:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;144,Microsoft.Compute/GetOperationStatus30Min;1401" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "2bbe3cd8-111b-46de-aaae-c7c920c16ddf" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-correlation-request-id": [ - "a4955a0e-3cf0-424f-bb94-3f9e9f8d3fa1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230232Z:a4955a0e-3cf0-424f-bb94-3f9e9f8d3fa1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:02:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;144,Microsoft.Compute/GetOperationStatus30Min;1400" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "c937228f-c6c4-434b-ac2c-a3073368c917" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "8f49c372-b559-4d15-91f8-334ae02447b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230302Z:8f49c372-b559-4d15-91f8-334ae02447b4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:03:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f058cd7c-4d61-4081-aab2-06320b35f66d?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjA1OGNkN2MtNGQ2MS00MDgxLWFhYjItMDYzMjBiMzVmNjZkP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T15:59:56.6322873-07:00\",\r\n \"endTime\": \"2018-06-01T16:03:08.8649552-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f058cd7c-4d61-4081-aab2-06320b35f66d\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;144,Microsoft.Compute/GetOperationStatus30Min;1399" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "d2f38a43-03a1-4c53-aaea-fef8a0da7ed9" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "48e155d0-85a8-40cb-8e2e-d91f3381a1be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230333Z:48e155d0-85a8-40cb-8e2e-d91f3381a1be" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:03:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4764/providers/Microsoft.ContainerService/containerServices/cscrptestps4764?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL2NvbnRhaW5lclNlcnZpY2VzL2NzY3JwdGVzdHBzNDc2ND9hcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f261612d-529b-4437-a70d-52ade3a06f7f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f0d7dcd5-2708-41c4-8eb1-900c539bf8ab?api-version=2017-01-31" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteContainerService3Min;29,Microsoft.Compute/DeleteContainerService30Min;148" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "f0d7dcd5-2708-41c4-8eb1-900c539bf8ab" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f0d7dcd5-2708-41c4-8eb1-900c539bf8ab?monitor=true&api-version=2017-01-31" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "fdc35d4a-d949-4ab7-a1bb-d26d7eb87362" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230335Z:fdc35d4a-d949-4ab7-a1bb-d26d7eb87362" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:03:35 GMT" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f0d7dcd5-2708-41c4-8eb1-900c539bf8ab?api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjBkN2RjZDUtMjcwOC00MWM0LThlYjEtOTAwYzUzOWJmOGFiP2FwaS12ZXJzaW9uPTIwMTctMDEtMzE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2018-06-01T16:03:35.3054954-07:00\",\r\n \"endTime\": \"2018-06-01T16:03:35.3211269-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f0d7dcd5-2708-41c4-8eb1-900c539bf8ab\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;143,Microsoft.Compute/GetOperationStatus30Min;1397" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "91f5680e-38eb-4c39-972f-a78df02abd7c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "c2470cf6-8798-4b0f-a462-c6a37dff5efb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230405Z:c2470cf6-8798-4b0f-a462-c6a37dff5efb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ContainerService/locations/australiasoutheast/operations/f0d7dcd5-2708-41c4-8eb1-900c539bf8ab?monitor=true&api-version=2017-01-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvYXVzdHJhbGlhc291dGhlYXN0L29wZXJhdGlvbnMvZjBkN2RjZDUtMjcwOC00MWM0LThlYjEtOTAwYzUzOWJmOGFiP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTAxLTMx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3101.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/19.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;142,Microsoft.Compute/GetOperationStatus30Min;1396" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cd07ff54-3654-49c2-b508-c94d0eddc927_131665615092613489" - ], - "x-ms-request-id": [ - "b2d026ef-daa4-47b7-9733-497251827afb" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "4de66064-0444-41db-a8ee-3dc98fc3b31d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230405Z:4de66064-0444-41db-a8ee-3dc98fc3b31d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4764?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ3NjQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "db3cc149-6e48-4c04-a663-176c3e4b5670" - ], - "x-ms-correlation-request-id": [ - "db3cc149-6e48-4c04-a663-176c3e4b5670" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230409Z:db3cc149-6e48-4c04-a663-176c3e4b5670" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "bf62f969-fc93-4972-bced-297de1694eb1" - ], - "x-ms-correlation-request-id": [ - "bf62f969-fc93-4972-bced-297de1694eb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230410Z:bf62f969-fc93-4972-bced-297de1694eb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "7730f63c-0887-4c6a-b83b-c22e86819624" - ], - "x-ms-correlation-request-id": [ - "7730f63c-0887-4c6a-b83b-c22e86819624" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230425Z:7730f63c-0887-4c6a-b83b-c22e86819624" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:24 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-request-id": [ - "5ab587ed-8325-444d-992f-c6e7e5355708" - ], - "x-ms-correlation-request-id": [ - "5ab587ed-8325-444d-992f-c6e7e5355708" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230441Z:5ab587ed-8325-444d-992f-c6e7e5355708" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-request-id": [ - "276547f7-83ee-4e04-9bf3-1107132abe2d" - ], - "x-ms-correlation-request-id": [ - "276547f7-83ee-4e04-9bf3-1107132abe2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230456Z:276547f7-83ee-4e04-9bf3-1107132abe2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:04:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "x-ms-request-id": [ - "80fb2cc6-5e7e-4742-989f-044ca78aac02" - ], - "x-ms-correlation-request-id": [ - "80fb2cc6-5e7e-4742-989f-044ca78aac02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230512Z:80fb2cc6-5e7e-4742-989f-044ca78aac02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:05:11 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-request-id": [ - "f8609460-8df1-47e3-8e90-e56a49c6a230" - ], - "x-ms-correlation-request-id": [ - "f8609460-8df1-47e3-8e90-e56a49c6a230" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230527Z:f8609460-8df1-47e3-8e90-e56a49c6a230" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:05:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-request-id": [ - "9c35bd5c-8368-46e5-b6ae-73e6520431d1" - ], - "x-ms-correlation-request-id": [ - "9c35bd5c-8368-46e5-b6ae-73e6520431d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230542Z:9c35bd5c-8368-46e5-b6ae-73e6520431d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:05:42 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-request-id": [ - "198b9d53-8ed1-4916-9b9c-bca71db0ede9" - ], - "x-ms-correlation-request-id": [ - "198b9d53-8ed1-4916-9b9c-bca71db0ede9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230558Z:198b9d53-8ed1-4916-9b9c-bca71db0ede9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:05:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-request-id": [ - "e4154744-df89-40e5-a9b9-557f1e8ea27b" - ], - "x-ms-correlation-request-id": [ - "e4154744-df89-40e5-a9b9-557f1e8ea27b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230613Z:e4154744-df89-40e5-a9b9-557f1e8ea27b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:06:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-request-id": [ - "4e082da3-2692-46e0-bdb3-0616298f5a9a" - ], - "x-ms-correlation-request-id": [ - "4e082da3-2692-46e0-bdb3-0616298f5a9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230629Z:4e082da3-2692-46e0-bdb3-0616298f5a9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:06:29 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-request-id": [ - "451984aa-bcf0-4810-a946-e66c0e16a62f" - ], - "x-ms-correlation-request-id": [ - "451984aa-bcf0-4810-a946-e66c0e16a62f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230644Z:451984aa-bcf0-4810-a946-e66c0e16a62f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:06:44 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-request-id": [ - "0da9c116-0af1-45a6-904c-a668289386a5" - ], - "x-ms-correlation-request-id": [ - "0da9c116-0af1-45a6-904c-a668289386a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230659Z:0da9c116-0af1-45a6-904c-a668289386a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:06:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-request-id": [ - "d195d52d-378d-4810-b3fe-fb078c43ee86" - ], - "x-ms-correlation-request-id": [ - "d195d52d-378d-4810-b3fe-fb078c43ee86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230715Z:d195d52d-378d-4810-b3fe-fb078c43ee86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:07:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-request-id": [ - "ab76b3d7-ebd8-4bfc-a363-5c10dfc2530e" - ], - "x-ms-correlation-request-id": [ - "ab76b3d7-ebd8-4bfc-a363-5c10dfc2530e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230730Z:ab76b3d7-ebd8-4bfc-a363-5c10dfc2530e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:07:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-request-id": [ - "c6930268-5d7f-410b-a348-30b35cef28f4" - ], - "x-ms-correlation-request-id": [ - "c6930268-5d7f-410b-a348-30b35cef28f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230746Z:c6930268-5d7f-410b-a348-30b35cef28f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:07:45 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-request-id": [ - "a676246d-df47-4c9b-a641-22a518072100" - ], - "x-ms-correlation-request-id": [ - "a676246d-df47-4c9b-a641-22a518072100" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230801Z:a676246d-df47-4c9b-a641-22a518072100" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:08:01 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-request-id": [ - "ae347ae5-b34c-4a42-81e2-4c49fb3e99f3" - ], - "x-ms-correlation-request-id": [ - "ae347ae5-b34c-4a42-81e2-4c49fb3e99f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230817Z:ae347ae5-b34c-4a42-81e2-4c49fb3e99f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:08:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-request-id": [ - "f28790fa-a1df-48ca-bc38-42ca798c685f" - ], - "x-ms-correlation-request-id": [ - "f28790fa-a1df-48ca-bc38-42ca798c685f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230832Z:f28790fa-a1df-48ca-bc38-42ca798c685f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:08:31 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-request-id": [ - "97066a70-37d6-427b-9867-aa4f9aca9e81" - ], - "x-ms-correlation-request-id": [ - "97066a70-37d6-427b-9867-aa4f9aca9e81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230847Z:97066a70-37d6-427b-9867-aa4f9aca9e81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:08:47 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-request-id": [ - "6a5248c7-85b9-4617-9fb2-f4abb0cefcdf" - ], - "x-ms-correlation-request-id": [ - "6a5248c7-85b9-4617-9fb2-f4abb0cefcdf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230903Z:6a5248c7-85b9-4617-9fb2-f4abb0cefcdf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:09:02 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], - "x-ms-request-id": [ - "23326ee4-ec41-4940-bfa5-00c562e5f63a" - ], - "x-ms-correlation-request-id": [ - "23326ee4-ec41-4940-bfa5-00c562e5f63a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230918Z:23326ee4-ec41-4940-bfa5-00c562e5f63a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:09:17 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" - ], - "x-ms-request-id": [ - "45c58a30-67dc-4671-b440-4d2eb1e321f9" - ], - "x-ms-correlation-request-id": [ - "45c58a30-67dc-4671-b440-4d2eb1e321f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230934Z:45c58a30-67dc-4671-b440-4d2eb1e321f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:09:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzY0LUFVU1RSQUxJQVNPVVRIRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhc291dGhlYXN0In0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpZMExVRlZVMVJTUVV4SlFWTlBWVlJJUlVGVFZDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVlYVnpkSEpoYkdsaGMyOTFkR2hsWVhOMEluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-request-id": [ - "89544007-3fd9-4045-bccb-3e380332a842" - ], - "x-ms-correlation-request-id": [ - "89544007-3fd9-4045-bccb-3e380332a842" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180601T230949Z:89544007-3fd9-4045-bccb-3e380332a842" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Jun 2018 23:09:48 GMT" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "Test-ContainerServiceUpdate": [ - "crptestps4764" - ] - }, - "Variables": { - "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e" - } -} \ No newline at end of file diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index c777779e1096..796eef18ce4a 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -20,6 +20,14 @@ --> ## Upcoming Release +* Removed all `ContainerService` cmdlets. The Container Service API was deprecated in January 2020. + - `Add-AzureRmContainerServiceAgentPoolProfileCommand` + - `Get-AzContainerService` + - `New-AzContainerService` + - `New-AzContainerServiceConfig` + - `Remove-AzContainerService` + - `Remove-AzContainerServiceAgentPoolProfile` + - `Update-AzContainerService` ## Version 4.9.0 * Added parameter `-EnableAutomaticUpgrade` to `Set-AzVmExtension` and `Add-AzVmssExtension`. diff --git a/src/Compute/Compute/Generated/ContainerService/Config/AddAzureRmContainerServiceAgentPoolProfileCommand.cs b/src/Compute/Compute/Generated/ContainerService/Config/AddAzureRmContainerServiceAgentPoolProfileCommand.cs deleted file mode 100644 index 63780d2e9ee3..000000000000 --- a/src/Compute/Compute/Generated/ContainerService/Config/AddAzureRmContainerServiceAgentPoolProfileCommand.cs +++ /dev/null @@ -1,95 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using Microsoft.Azure.Commands.Compute.Automation.Models; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; - -namespace Microsoft.Azure.Commands.Compute.Automation -{ - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsCommon.Add, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerServiceAgentPoolProfile", SupportsShouldProcess = true)] - [OutputType(typeof(PSContainerService))] - public partial class AddAzureRmContainerServiceAgentPoolProfileCommand : Microsoft.Azure.Commands.ResourceManager.Common.AzureRMCmdlet - { - [Parameter( - Mandatory = true, - Position = 0, - ValueFromPipeline = true, - ValueFromPipelineByPropertyName = true)] - public PSContainerService ContainerService { get; set; } - - [Parameter( - Mandatory = false, - Position = 1, - ValueFromPipelineByPropertyName = true)] - public string Name { get; set; } - - [Parameter( - Mandatory = false, - Position = 2, - ValueFromPipelineByPropertyName = true)] - public int Count { get; set; } - - [Parameter( - Mandatory = false, - Position = 3, - ValueFromPipelineByPropertyName = true)] - public string VmSize { get; set; } - - [Parameter( - Mandatory = false, - Position = 4, - ValueFromPipelineByPropertyName = true)] - public string DnsPrefix { get; set; } - - protected override void ProcessRecord() - { - if (ShouldProcess("ContainerService", "Add")) - { - Run(); - } - } - - private void Run() - { - // AgentPoolProfiles - if (this.ContainerService.AgentPoolProfiles == null) - { - this.ContainerService.AgentPoolProfiles = new List(); - } - - var vAgentPoolProfiles = new ContainerServiceAgentPoolProfile(); - - vAgentPoolProfiles.Name = this.IsParameterBound(c => c.Name) ? this.Name : null; - vAgentPoolProfiles.Count = this.Count; - vAgentPoolProfiles.VmSize = this.IsParameterBound(c => c.VmSize) ? this.VmSize : null; - vAgentPoolProfiles.DnsPrefix = this.IsParameterBound(c => c.DnsPrefix) ? this.DnsPrefix : null; - this.ContainerService.AgentPoolProfiles.Add(vAgentPoolProfiles); - WriteObject(this.ContainerService); - } - } -} diff --git a/src/Compute/Compute/Generated/ContainerService/Config/NewAzureRmContainerServiceConfigCommand.cs b/src/Compute/Compute/Generated/ContainerService/Config/NewAzureRmContainerServiceConfigCommand.cs deleted file mode 100644 index 47f4cb4f5e03..000000000000 --- a/src/Compute/Compute/Generated/ContainerService/Config/NewAzureRmContainerServiceConfigCommand.cs +++ /dev/null @@ -1,284 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using Microsoft.Azure.Commands.Compute.Automation.Models; -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; - -namespace Microsoft.Azure.Commands.Compute.Automation -{ - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerServiceConfig", SupportsShouldProcess = true)] - [OutputType(typeof(PSContainerService))] - public partial class NewAzureRmContainerServiceConfigCommand : Microsoft.Azure.Commands.ResourceManager.Common.AzureRMCmdlet - { - [Parameter( - Mandatory = false, - Position = 0, - ValueFromPipelineByPropertyName = true)] - [LocationCompleter("Microsoft.ContainerService/containerServices")] - public string Location { get; set; } - - [Parameter( - Mandatory = false, - Position = 1, - ValueFromPipelineByPropertyName = true)] - public Hashtable Tag { get; set; } - - [Parameter( - Mandatory = false, - Position = 2, - ValueFromPipelineByPropertyName = true)] - public ContainerServiceOrchestratorTypes? OrchestratorType { get; set; } - - [Parameter( - Mandatory = false, - Position = 3, - ValueFromPipelineByPropertyName = true)] - public int MasterCount { get; set; } - - [Parameter( - Mandatory = false, - Position = 4, - ValueFromPipelineByPropertyName = true)] - public string MasterDnsPrefix { get; set; } - - [Parameter( - Mandatory = false, - Position = 5, - ValueFromPipelineByPropertyName = true)] - public ContainerServiceAgentPoolProfile[] AgentPoolProfile { get; set; } - - [Parameter( - Mandatory = false, - Position = 6, - ValueFromPipelineByPropertyName = true)] - public string WindowsProfileAdminUsername { get; set; } - - [Parameter( - Mandatory = false, - Position = 7, - ValueFromPipelineByPropertyName = true)] - public string WindowsProfileAdminPassword { get; set; } - - [Parameter( - Mandatory = false, - Position = 8, - ValueFromPipelineByPropertyName = true)] - public string AdminUsername { get; set; } - - [Parameter( - Mandatory = false, - Position = 9, - ValueFromPipelineByPropertyName = true)] - public string[] SshPublicKey { get; set; } - - [Parameter( - Mandatory = false, - Position = 10, - ValueFromPipelineByPropertyName = true)] - public bool VmDiagnosticsEnabled { get; set; } - - [Parameter( - Mandatory = false, - ValueFromPipelineByPropertyName = true)] - public string CustomProfileOrchestrator { get; set; } - - [Parameter( - Mandatory = false, - ValueFromPipelineByPropertyName = true)] - public string ServicePrincipalProfileClientId { get; set; } - - [Parameter( - Mandatory = false, - ValueFromPipelineByPropertyName = true)] - public string ServicePrincipalProfileSecret { get; set; } - - protected override void ProcessRecord() - { - if (ShouldProcess("ContainerService", "New")) - { - Run(); - } - } - - private void Run() - { - // OrchestratorProfile - ContainerServiceOrchestratorProfile vOrchestratorProfile = null; - - // CustomProfile - ContainerServiceCustomProfile vCustomProfile = null; - - // ServicePrincipalProfile - ContainerServiceServicePrincipalProfile vServicePrincipalProfile = null; - - // MasterProfile - ContainerServiceMasterProfile vMasterProfile = null; - - // WindowsProfile - ContainerServiceWindowsProfile vWindowsProfile = null; - - // LinuxProfile - ContainerServiceLinuxProfile vLinuxProfile = null; - - // DiagnosticsProfile - ContainerServiceDiagnosticsProfile vDiagnosticsProfile = null; - - if (this.IsParameterBound(c => c.OrchestratorType)) - { - if (vOrchestratorProfile == null) - { - vOrchestratorProfile = new ContainerServiceOrchestratorProfile(); - } - vOrchestratorProfile.OrchestratorType = this.OrchestratorType.Value; - } - - if (this.IsParameterBound(c => c.CustomProfileOrchestrator)) - { - if (vCustomProfile == null) - { - vCustomProfile = new ContainerServiceCustomProfile(); - } - vCustomProfile.Orchestrator = this.CustomProfileOrchestrator; - } - - if (this.IsParameterBound(c => c.ServicePrincipalProfileClientId)) - { - if (vServicePrincipalProfile == null) - { - vServicePrincipalProfile = new ContainerServiceServicePrincipalProfile(); - } - vServicePrincipalProfile.ClientId = this.ServicePrincipalProfileClientId; - } - - if (this.IsParameterBound(c => c.ServicePrincipalProfileSecret)) - { - if (vServicePrincipalProfile == null) - { - vServicePrincipalProfile = new ContainerServiceServicePrincipalProfile(); - } - vServicePrincipalProfile.Secret = this.ServicePrincipalProfileSecret; - } - - if (this.IsParameterBound(c => c.MasterCount)) - { - if (vMasterProfile == null) - { - vMasterProfile = new ContainerServiceMasterProfile(); - } - vMasterProfile.Count = this.MasterCount; - } - - if (this.IsParameterBound(c => c.MasterDnsPrefix)) - { - if (vMasterProfile == null) - { - vMasterProfile = new ContainerServiceMasterProfile(); - } - vMasterProfile.DnsPrefix = this.MasterDnsPrefix; - } - - if (this.IsParameterBound(c => c.WindowsProfileAdminUsername)) - { - if (vWindowsProfile == null) - { - vWindowsProfile = new ContainerServiceWindowsProfile(); - } - vWindowsProfile.AdminUsername = this.WindowsProfileAdminUsername; - } - - if (this.IsParameterBound(c => c.WindowsProfileAdminPassword)) - { - if (vWindowsProfile == null) - { - vWindowsProfile = new ContainerServiceWindowsProfile(); - } - vWindowsProfile.AdminPassword = this.WindowsProfileAdminPassword; - } - - if (this.IsParameterBound(c => c.AdminUsername)) - { - if (vLinuxProfile == null) - { - vLinuxProfile = new ContainerServiceLinuxProfile(); - } - vLinuxProfile.AdminUsername = this.AdminUsername; - } - - - if (this.IsParameterBound(c => c.SshPublicKey)) - { - if (vLinuxProfile == null) - { - vLinuxProfile = new ContainerServiceLinuxProfile(); - } - if (vLinuxProfile.Ssh == null) - { - vLinuxProfile.Ssh = new ContainerServiceSshConfiguration(); - } - if (vLinuxProfile.Ssh.PublicKeys == null) - { - vLinuxProfile.Ssh.PublicKeys = new List(); - } - foreach (var element in this.SshPublicKey) - { - var vPublicKeys = new ContainerServiceSshPublicKey(); - vPublicKeys.KeyData = element; - vLinuxProfile.Ssh.PublicKeys.Add(vPublicKeys); - } - } - - if (vDiagnosticsProfile == null) - { - vDiagnosticsProfile = new ContainerServiceDiagnosticsProfile(); - } - if (vDiagnosticsProfile.VmDiagnostics == null) - { - vDiagnosticsProfile.VmDiagnostics = new ContainerServiceVMDiagnostics(); - } - - vDiagnosticsProfile.VmDiagnostics.Enabled = this.VmDiagnosticsEnabled; - - var vContainerService = new PSContainerService - { - Location = this.IsParameterBound(c => c.Location) ? this.Location : null, - Tags = this.IsParameterBound(c => c.Tag) ? this.Tag.Cast().ToDictionary(ht => (string)ht.Key, ht => (string)ht.Value) : null, - AgentPoolProfiles = this.IsParameterBound(c => c.AgentPoolProfile) ? this.AgentPoolProfile : null, - OrchestratorProfile = vOrchestratorProfile, - CustomProfile = vCustomProfile, - ServicePrincipalProfile = vServicePrincipalProfile, - MasterProfile = vMasterProfile, - WindowsProfile = vWindowsProfile, - LinuxProfile = vLinuxProfile, - DiagnosticsProfile = vDiagnosticsProfile, - }; - - WriteObject(vContainerService); - } - } -} diff --git a/src/Compute/Compute/Generated/ContainerService/Config/RemoveAzureRmContainerServiceAgentPoolProfileCommand.cs b/src/Compute/Compute/Generated/ContainerService/Config/RemoveAzureRmContainerServiceAgentPoolProfileCommand.cs deleted file mode 100644 index 98e048b9bd19..000000000000 --- a/src/Compute/Compute/Generated/ContainerService/Config/RemoveAzureRmContainerServiceAgentPoolProfileCommand.cs +++ /dev/null @@ -1,77 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using Microsoft.Azure.Commands.Compute.Automation.Models; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; - -namespace Microsoft.Azure.Commands.Compute.Automation -{ - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerServiceAgentPoolProfile", SupportsShouldProcess = true)] - [OutputType(typeof(PSContainerService))] - public partial class RemoveAzureRmContainerServiceAgentPoolProfileCommand : Microsoft.Azure.Commands.ResourceManager.Common.AzureRMCmdlet - { - [Parameter( - Mandatory = true, - Position = 0, - ValueFromPipeline = true, - ValueFromPipelineByPropertyName = true)] - public PSContainerService ContainerService { get; set; } - - [Parameter( - Mandatory = true, - Position = 1, - ParameterSetName = "NameParameterSet", - ValueFromPipelineByPropertyName = true)] - public string Name { get; set; } - - protected override void ProcessRecord() - { - // AgentPoolProfiles - if (this.ContainerService.AgentPoolProfiles == null) - { - WriteObject(this.ContainerService); - return; - } - var vAgentPoolProfiles = this.ContainerService.AgentPoolProfiles.First - (e => - (this.Name != null && e.Name == this.Name) - ); - - if (vAgentPoolProfiles != null) - { - this.ContainerService.AgentPoolProfiles.Remove(vAgentPoolProfiles); - } - - if (this.ContainerService.AgentPoolProfiles.Count == 0) - { - this.ContainerService.AgentPoolProfiles = null; - } - WriteObject(this.ContainerService); - } - } -} diff --git a/src/Compute/Compute/Generated/ContainerService/ContainerServiceCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/ContainerService/ContainerServiceCreateOrUpdateMethod.cs deleted file mode 100644 index 0cffe475a89f..000000000000 --- a/src/Compute/Compute/Generated/ContainerService/ContainerServiceCreateOrUpdateMethod.cs +++ /dev/null @@ -1,136 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using Microsoft.Azure.Commands.Compute.Automation.Models; -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.Compute; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; - -namespace Microsoft.Azure.Commands.Compute.Automation -{ - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerService", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)] - [OutputType(typeof(PSContainerService))] - public partial class NewAzureRmContainerService : ComputeAutomationBaseCmdlet - { - public override void ExecuteCmdlet() - { - base.ExecuteCmdlet(); - ExecuteClientAction(() => - { - if (ShouldProcess(this.Name, VerbsCommon.New)) - { - string resourceGroupName = this.ResourceGroupName; - string containerServiceName = this.Name; - ContainerService parameters = new ContainerService(); - ComputeAutomationAutoMapperProfile.Mapper.Map(this.ContainerService, parameters); - - var result = ContainerServicesClient.CreateOrUpdate(resourceGroupName, containerServiceName, parameters); - var psObject = new PSContainerService(); - ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); - WriteObject(psObject); - } - }); - } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 0, - Mandatory = true, - ValueFromPipelineByPropertyName = true)] - [ResourceGroupCompleter] - public string ResourceGroupName { get; set; } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 1, - Mandatory = true, - ValueFromPipelineByPropertyName = true)] - public string Name { get; set; } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 2, - Mandatory = true, - ValueFromPipeline = true)] - public PSContainerService ContainerService { get; set; } - - [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] - public SwitchParameter AsJob { get; set; } - } - - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsData.Update, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerService", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)] - [OutputType(typeof(PSContainerService))] - public partial class UpdateAzureRmContainerService : ComputeAutomationBaseCmdlet - { - public override void ExecuteCmdlet() - { - base.ExecuteCmdlet(); - ExecuteClientAction(() => - { - if (ShouldProcess(this.Name, VerbsData.Update)) - { - string resourceGroupName = this.ResourceGroupName; - string containerServiceName = this.Name; - ContainerService parameters = new ContainerService(); - ComputeAutomationAutoMapperProfile.Mapper.Map(this.ContainerService, parameters); - - var result = ContainerServicesClient.CreateOrUpdate(resourceGroupName, containerServiceName, parameters); - var psObject = new PSContainerService(); - ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); - WriteObject(psObject); - } - }); - } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 0, - Mandatory = true, - ValueFromPipelineByPropertyName = true)] - [ResourceGroupCompleter] - public string ResourceGroupName { get; set; } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 1, - Mandatory = true, - ValueFromPipelineByPropertyName = true)] - public string Name { get; set; } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 2, - Mandatory = true, - ValueFromPipeline = true)] - public PSContainerService ContainerService { get; set; } - - [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] - public SwitchParameter AsJob { get; set; } - } -} diff --git a/src/Compute/Compute/Generated/ContainerService/ContainerServiceDeleteMethod.cs b/src/Compute/Compute/Generated/ContainerService/ContainerServiceDeleteMethod.cs deleted file mode 100644 index 6102926ecb71..000000000000 --- a/src/Compute/Compute/Generated/ContainerService/ContainerServiceDeleteMethod.cs +++ /dev/null @@ -1,93 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using Microsoft.Azure.Commands.Compute.Automation.Models; -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.Compute; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; - -namespace Microsoft.Azure.Commands.Compute.Automation -{ - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerService", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)] - [OutputType(typeof(PSOperationStatusResponse))] - public partial class RemoveAzureRmContainerService : ComputeAutomationBaseCmdlet - { - public override void ExecuteCmdlet() - { - base.ExecuteCmdlet(); - ExecuteClientAction(() => - { - if (ShouldProcess(this.Name, VerbsCommon.Remove) - && (this.Force.IsPresent || - this.ShouldContinue(Properties.Resources.ResourceRemovalConfirmation, - "Remove-AzContainerService operation"))) - { - string resourceGroupName = this.ResourceGroupName; - string containerServiceName = this.Name; - - var result = ContainerServicesClient.DeleteWithHttpMessagesAsync(resourceGroupName, containerServiceName).GetAwaiter().GetResult(); - PSOperationStatusResponse output = new PSOperationStatusResponse - { - StartTime = this.StartTime, - EndTime = DateTime.Now - }; - - if (result != null && result.Request != null && result.Request.RequestUri != null) - { - output.Name = GetOperationIdFromUrlString(result.Request.RequestUri.ToString()); - } - - WriteObject(output); - } - }); - } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 0, - Mandatory = true, - ValueFromPipelineByPropertyName = true)] - [ResourceGroupCompleter] - public string ResourceGroupName { get; set; } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 1, - Mandatory = true, - ValueFromPipelineByPropertyName = true)] - [ResourceNameCompleter("Microsoft.ContainerService/containerServices", "ResourceGroupName")] - public string Name { get; set; } - - [Parameter( - Mandatory = false)] - public SwitchParameter Force { get; set; } - - [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] - public SwitchParameter AsJob { get; set; } - } -} diff --git a/src/Compute/Compute/Generated/ContainerService/ContainerServiceGetMethod.cs b/src/Compute/Compute/Generated/ContainerService/ContainerServiceGetMethod.cs deleted file mode 100644 index 3d626fd91ebc..000000000000 --- a/src/Compute/Compute/Generated/ContainerService/ContainerServiceGetMethod.cs +++ /dev/null @@ -1,116 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using Microsoft.Azure.Commands.Compute.Automation.Models; -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.Compute; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; - -namespace Microsoft.Azure.Commands.Compute.Automation -{ - [WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()] - [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerService", DefaultParameterSetName = "DefaultParameter")] - [OutputType(typeof(PSContainerService))] - public partial class GetAzureRmContainerService : ComputeAutomationBaseCmdlet - { - public override void ExecuteCmdlet() - { - base.ExecuteCmdlet(); - ExecuteClientAction(() => - { - string resourceGroupName = this.ResourceGroupName; - string containerServiceName = this.Name; - - if (ShouldGetByName(resourceGroupName, containerServiceName)) - { - var result = ContainerServicesClient.Get(resourceGroupName, containerServiceName); - var psObject = new PSContainerService(); - ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); - WriteObject(psObject); - } - else if (ShouldListByResourceGroup(resourceGroupName, containerServiceName)) - { - var result = ContainerServicesClient.ListByResourceGroup(resourceGroupName); - var resultList = result.ToList(); - var nextPageLink = result.NextPageLink; - while (!string.IsNullOrEmpty(nextPageLink)) - { - var pageResult = ContainerServicesClient.ListByResourceGroupNext(nextPageLink); - foreach (var pageItem in pageResult) - { - resultList.Add(pageItem); - } - nextPageLink = pageResult.NextPageLink; - } - var psObject = new List(); - foreach (var r in resultList) - { - psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map(r)); - } - WriteObject(TopLevelWildcardFilter(resourceGroupName, containerServiceName, psObject), true); - } - else - { - var result = ContainerServicesClient.List(); - var resultList = result.ToList(); - var nextPageLink = result.NextPageLink; - while (!string.IsNullOrEmpty(nextPageLink)) - { - var pageResult = ContainerServicesClient.ListNext(nextPageLink); - foreach (var pageItem in pageResult) - { - resultList.Add(pageItem); - } - nextPageLink = pageResult.NextPageLink; - } - var psObject = new List(); - foreach (var r in resultList) - { - psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map(r)); - } - WriteObject(TopLevelWildcardFilter(resourceGroupName, containerServiceName, psObject), true); - } - }); - } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 0, - ValueFromPipelineByPropertyName = true)] - [ResourceGroupCompleter] - [SupportsWildcards] - public string ResourceGroupName { get; set; } - - [Parameter( - ParameterSetName = "DefaultParameter", - Position = 1, - ValueFromPipelineByPropertyName = true)] - [ResourceNameCompleter("Microsoft.ContainerService/containerServices", "ResourceGroupName")] - [SupportsWildcards] - public string Name { get; set; } - } -} diff --git a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs index a7f73db9290a..58d1ca3b2bb7 100644 --- a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs +++ b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs @@ -56,9 +56,6 @@ private static void Initialize() { var config = new MapperConfiguration(cfg => { - cfg.CreateMap(); - cfg.CreateMap(); - cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); @@ -109,8 +106,6 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); - cfg.CreateMap(); - cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); diff --git a/src/Compute/Compute/Generated/Models/PSContainerService.cs b/src/Compute/Compute/Generated/Models/PSContainerService.cs deleted file mode 100644 index 77613005bf67..000000000000 --- a/src/Compute/Compute/Generated/Models/PSContainerService.cs +++ /dev/null @@ -1,59 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -using System; -using System.Collections.Generic; -using System.Text.RegularExpressions; -using Microsoft.Azure.Management.Compute.Models; - -namespace Microsoft.Azure.Commands.Compute.Automation.Models -{ - public partial class PSContainerService - { - // Gets or sets the property of 'ResourceGroupName' - public string ResourceGroupName - { - get - { - if (string.IsNullOrEmpty(Id)) return null; - Regex r = new Regex(@"(.*?)/resourcegroups/(?\S+)/providers/(.*?)", RegexOptions.IgnoreCase); - Match m = r.Match(Id); - return m.Success ? m.Groups["rgname"].Value : null; - } - } - - public string ProvisioningState { get; set; } - public ContainerServiceOrchestratorProfile OrchestratorProfile { get; set; } - public ContainerServiceCustomProfile CustomProfile { get; set; } - public ContainerServiceServicePrincipalProfile ServicePrincipalProfile { get; set; } - public ContainerServiceMasterProfile MasterProfile { get; set; } - public IList AgentPoolProfiles { get; set; } - public ContainerServiceWindowsProfile WindowsProfile { get; set; } - public ContainerServiceLinuxProfile LinuxProfile { get; set; } - public ContainerServiceDiagnosticsProfile DiagnosticsProfile { get; set; } - public string Id { get; set; } - public string Name { get; set; } - public string Type { get; set; } - public string Location { get; set; } - public IDictionary Tags { get; set; } - - } -} diff --git a/src/Compute/Compute/Generated/Models/PSContainerServiceList.cs b/src/Compute/Compute/Generated/Models/PSContainerServiceList.cs deleted file mode 100644 index b4fb06aada66..000000000000 --- a/src/Compute/Compute/Generated/Models/PSContainerServiceList.cs +++ /dev/null @@ -1,31 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -namespace Microsoft.Azure.Commands.Compute.Automation.Models -{ - public class PSContainerServiceList : PSContainerService - { - public PSContainerService ToPSContainerService () - { - return ComputeAutomationAutoMapperProfile.Mapper.Map(this); - } - } -} diff --git a/src/Compute/Compute/help/Add-AzContainerServiceAgentPoolProfile.md b/src/Compute/Compute/help/Add-AzContainerServiceAgentPoolProfile.md deleted file mode 100644 index dd59efa274d7..000000000000 --- a/src/Compute/Compute/help/Add-AzContainerServiceAgentPoolProfile.md +++ /dev/null @@ -1,181 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: C3C65F3E-1192-4B57-87DB-5D371C8FF68E -online version: https://docs.microsoft.com/powershell/module/az.compute/add-azcontainerserviceagentpoolprofile -schema: 2.0.0 ---- - -# Add-AzContainerServiceAgentPoolProfile - -## SYNOPSIS -Adds a container service agent pool profile. - -## SYNTAX - -``` -Add-AzContainerServiceAgentPoolProfile [-ContainerService] [[-Name] ] - [[-Count] ] [[-VmSize] ] [[-DnsPrefix] ] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] -``` - -## DESCRIPTION -The **Add-AzContainerServiceAgentPoolProfile** cmdlet adds a container service agent pool profile to a local container service object. - -## EXAMPLES - -### Example 1: Add a profile -``` -PS C:\> Add-AzContainerServiceAgentPoolProfile -Name "AgentPool01" -VmSize "Standard_A1" -DnsPrefix "APResourceGroup17" -``` - -This command adds a container service agent pool profile to the local container service object. - -## PARAMETERS - -### -ContainerService -Specifies the container service object to which this cmdlet adds an agent pool profile. -To obtain a **ContainerService** object, use the [New-AzContainerServiceConfig](./New-AzContainerServiceConfig.md) cmdlet. - -```yaml -Type: Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService -Parameter Sets: (All) -Aliases: - -Required: True -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName, ByValue) -Accept wildcard characters: False -``` - -### -Count -Specifies the number of agents that host containers. -The acceptable values for this parameter are: integers from 1 to 100. -The default value is 1. - -```yaml -Type: System.Int32 -Parameter Sets: (All) -Aliases: - -Required: False -Position: 2 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DnsPrefix -Specifies the DNS prefix that this cmdlet uses to create the fully qualified domain name for this agent pool. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 4 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Name -Specifies the name of the agent pool profile. -This value must be unique in the context of the subscription and resource group. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmSize -Specifies the size of the virtual machines for the agents. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 3 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -### System.String - -### System.Int32 - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## NOTES - -## RELATED LINKS - -[New-AzContainerServiceConfig](./New-AzContainerServiceConfig.md) - -[Remove-AzContainerServiceAgentPoolProfile](./Remove-AzContainerServiceAgentPoolProfile.md) diff --git a/src/Compute/Compute/help/Get-AzContainerService.md b/src/Compute/Compute/help/Get-AzContainerService.md deleted file mode 100644 index d3bcd6b9be08..000000000000 --- a/src/Compute/Compute/help/Get-AzContainerService.md +++ /dev/null @@ -1,171 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: AFF75E0B-CB88-45ED-9067-7F43E2BA485C -online version: https://docs.microsoft.com/powershell/module/az.compute/get-azcontainerservice -schema: 2.0.0 ---- - -# Get-AzContainerService - -## SYNOPSIS -Gets a container service. - -## SYNTAX - -``` -Get-AzContainerService [[-ResourceGroupName] ] [[-Name] ] - [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **Get-AzContainerService** cmdlet gets a container service. -You can view the properties of a container service, which include state, number of master and agents, and fully qualified domain name of master and agent. - -## EXAMPLES - -### Example 1: Get a container service -``` -PS C:\> Get-AzContainerService -ResourceGroupName "ResourceGroup17" -Name "CSResourceGroup17" - -ResourceGroupName : ResourceGroup17 -ProvisioningState : Succeeded -OrchestratorProfile : - OrchestratorType : DCOS -MasterProfile : - Count : 1 - DnsPrefix : MasterResourceGroup17 - Fqdn : masterresourcegroup17.eastus.cloudapp.azure.com -AgentPoolProfiles[0] : - Name : AgentPool01 - Count : 2 - VmSize : Standard_A1 - DnsPrefix : APResourceGroup17 - Fqdn : apresourcegroup17.eastus.cloudapp.azure.com -LinuxProfile : - AdminUsername : acslinuxadmin - Ssh : - PublicKeys[0] : - KeyData : ssh-rsa xxxxxxxxxxxxxx contoso@microsoft.com -DiagnosticsProfile : - VmDiagnostics : - Enabled : False - StorageUri : https://xxxxxxxxxxx.blob.core.windows.net/ -Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ResourceGroup17/providers/Micr -osoft.ContainerService/containerServices/CSResourceGroup17 -Name : CSResourceGroup17 -Type : Microsoft.ContainerService/ContainerServices -Location : eastus -Tags : {} -``` - -This command gets a container service named CSResourceGroup17. - -### Example 2: Get all container services -``` -PS C:\> Get-AzContainerService - -ResourceGroupName Name Location ProvisioningState ------------------ ---- -------- ----------------- -ResourceGroup17 CSResourceGroup17 eastus Succeeded -ResourceGroup17 CSResourceGroup18 eastus Succeeded -ResourceGroup18 CSResourceGroup19 eastus Succeeded -ResourceGroup18 CSResourceGroup20 eastus Succeeded -``` - -This command gets all container services in subscription. - -### Example 3: Get all container services in resource group -``` -PS C:\> Get-AzContainerService -ResourceGroupName "ResourceGroup17" - -ResourceGroupName Name Location ProvisioningState ------------------ ---- -------- ----------------- -ResourceGroup17 CSResourceGroup17 eastus Succeeded -ResourceGroup17 CSResourceGroup18 eastus Succeeded -``` - -This command gets all container services in ResourceGroup17. - -### Example 4: Get all container services using filter -``` -PS C:\> Get-AzContainerService -Name "CSResourceGroup1*" - -ResourceGroupName Name Location ProvisioningState ------------------ ---- -------- ----------------- -ResourceGroup17 CSResourceGroup17 eastus Succeeded -ResourceGroup17 CSResourceGroup18 eastus Succeeded -ResourceGroup18 CSResourceGroup19 eastus Succeeded -``` - -This command gets all container services starting with "CSResourceGroup1". - -## PARAMETERS - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Name -Specifies the name of the container service that this cmdlet gets. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: True -``` - -### -ResourceGroupName -Specifies the resource group of the container service that this cmdlet gets. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: True -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### System.String - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## NOTES - -## RELATED LINKS - -[New-AzContainerService](./New-AzContainerService.md) - -[Remove-AzContainerService](./Remove-AzContainerService.md) - -[Update-AzContainerService](./Update-AzContainerService.md) - - diff --git a/src/Compute/Compute/help/New-AzContainerService.md b/src/Compute/Compute/help/New-AzContainerService.md deleted file mode 100644 index 82c78675bf7a..000000000000 --- a/src/Compute/Compute/help/New-AzContainerService.md +++ /dev/null @@ -1,175 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: 522F5305-CDF6-41F2-803B-9EEA9E927668 -online version: https://docs.microsoft.com/powershell/module/az.compute/new-azcontainerservice -schema: 2.0.0 ---- - -# New-AzContainerService - -## SYNOPSIS -Creates a container service. - -## SYNTAX - -``` -New-AzContainerService [-ResourceGroupName] [-Name] [-ContainerService] - [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -## DESCRIPTION -The **New-AzContainerService** cmdlet creates a container service. -Specify a container service object that you can create by using the New-AzContainerServiceConfig cmdlet. - -## EXAMPLES - -### Example 1: Create a container service -``` -PS C:\> New-AzResourceGroup -Name "ResourceGroup17" -Location "East US" -Force -PS C:\> $Container = New-AzContainerServiceConfig -Location "East US" -OrchestratorType "DCOS" -MasterDnsPrefix "MasterResourceGroup17" -AdminUsername "acslinuxadmin" -SshPublicKey "" | Add-AzContainerServiceAgentPoolProfile -Name "AgentPool01" -VmSize "Standard_A1" -DnsPrefix "APResourceGroup17" -Count 2 -PS C:\> New-AzContainerService -ResourceGroupName "ResourceGroup17" -Name "CSResourceGroup17" -ContainerService $Container -``` - -The first command creates a resource group named ResourceGroup17 at the specified location. -For more information, see the New-AzResourceGroup cmdlet. -The second command creates a container, and then stores it in the $Container variable. -For more information, see the New-AzContainerServiceConfig cmdlet. -The final command creates a container service for the container stored in $Container. -The service is named csResourceGroup17. - -## PARAMETERS - -### -AsJob -RRun cmdlet in the background and return a Job to track progress. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ContainerService -Specifies a container service object that contains the properties for the new service. -To obtain a **ContainerService** object, use the New-AzContainerServiceConfig cmdlet. - -```yaml -Type: Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService -Parameter Sets: (All) -Aliases: - -Required: True -Position: 2 -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Name -Specifies the name of the container service that this cmdlet creates. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -ResourceGroupName -Specifies the resource group in which this cmdlet deploys the container service. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### System.String - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## NOTES - -## RELATED LINKS - -[Get-AzContainerService](./Get-AzContainerService.md) - -[New-AzContainerServiceConfig](./New-AzContainerServiceConfig.md) - -[Remove-AzContainerService](./Remove-AzContainerService.md) - -[Update-AzContainerService](./Update-AzContainerService.md) - - diff --git a/src/Compute/Compute/help/New-AzContainerServiceConfig.md b/src/Compute/Compute/help/New-AzContainerServiceConfig.md deleted file mode 100644 index 896f86ccabc9..000000000000 --- a/src/Compute/Compute/help/New-AzContainerServiceConfig.md +++ /dev/null @@ -1,335 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: EC8C915A-A0BC-41DE-9DBF-3617536E3D1A -online version: https://docs.microsoft.com/powershell/module/az.compute/new-azcontainerserviceconfig -schema: 2.0.0 ---- - -# New-AzContainerServiceConfig - -## SYNOPSIS -Creates a local configuration object for a container service. - -## SYNTAX - -``` -New-AzContainerServiceConfig [[-Location] ] [[-Tag] ] - [[-OrchestratorType] ] [[-MasterCount] ] - [[-MasterDnsPrefix] ] [[-AgentPoolProfile] ] - [[-WindowsProfileAdminUsername] ] [[-WindowsProfileAdminPassword] ] - [[-AdminUsername] ] [[-SshPublicKey] ] [[-VmDiagnosticsEnabled] ] - [-CustomProfileOrchestrator ] [-ServicePrincipalProfileClientId ] - [-ServicePrincipalProfileSecret ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] -``` - -## DESCRIPTION -The **New-AzContainerServiceConfig** cmdlet creates a local configuration object for a container service. -Provide this object to the New-AzContainerService cmdlet to create a container service. - -## EXAMPLES - -### Example 1: Create a container service configuration -``` -PS C:\> $Container = New-AzContainerServiceConfig -Location "Australia Southeast" -OrchestratorType "DCOS" -MasterDnsPrefix "MasterResourceGroup17" -AdminUsername "AcsLinuxAdmin" -SshPublicKey "" -PS C:\> $Container | Add-AzContainerServiceAgentPoolProfile -Name "AgentPool01" -VmSize "Standard_A1" -DnsPrefix "APResourceGroup17" -``` - -This command creates a container, and then stores it in the $Container variable. -The command specifies various settings for the container service configuration. The command passes -the configuration object to the Add-AzContainerServiceAgentPoolProfile cmdlet by using the -pipeline operator. That cmdlet adds an agent pool profile. -Specify the object in $Container for the *ContainerService* parameter of **New-AzContainerService**. - -## PARAMETERS - -### -AdminUsername -Specifies the administrator account name to use for a Linux-based container service. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 8 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -AgentPoolProfile -Specifies an array of agent pool profile objects for the container service. -Add a profile by using the Add-AzContainerServiceAgentPoolProfile cmdlet. - -```yaml -Type: Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile[] -Parameter Sets: (All) -Aliases: - -Required: False -Position: 5 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -CustomProfileOrchestrator -Specifies the custom profile orchestrator. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Location -Specifies the location in which to create the container service. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -MasterCount -Specifies the number of master virtual machines to create. - -```yaml -Type: System.Int32 -Parameter Sets: (All) -Aliases: - -Required: False -Position: 3 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -MasterDnsPrefix -Specifies the DNS prefix for the master virtual machine. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 4 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -OrchestratorType -Specifies the type of orchestrator for the container service. -The acceptable values for this parameter are: DCOS and Swarm. - -```yaml -Type: System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes] -Parameter Sets: (All) -Aliases: -Accepted values: Swarm, DCOS, Custom, Kubernetes - -Required: False -Position: 2 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -ServicePrincipalProfileClientId -Specifies the principal profile client ID. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -ServicePrincipalProfileSecret -Specifies the principal profile secret. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -SshPublicKey -Specifies the SSH public key for a Linux-based container service. - -```yaml -Type: System.String[] -Parameter Sets: (All) -Aliases: - -Required: False -Position: 9 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Tag -Key-value pairs in the form of a hash table. For example: -@{key0="value0";key1=$null;key2="value2"} - -```yaml -Type: System.Collections.Hashtable -Parameter Sets: (All) -Aliases: - -Required: False -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmDiagnosticsEnabled -Indicates whether this configuration enables diagnostics for the container service virtual machine. - -```yaml -Type: System.Boolean -Parameter Sets: (All) -Aliases: - -Required: False -Position: 10 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -WindowsProfileAdminPassword -Specifies the administrator password for a container service that uses the Windows operating system. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 7 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -WindowsProfileAdminUsername -Specifies the administrator username for a container service that uses the Windows operating system. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 6 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### System.String - -### System.Collections.Hashtable - -### System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes, Microsoft.Azure.Management.Compute, Version=23.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] - -### System.Int32 - -### Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile[] - -### System.String[] - -### System.Boolean - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## NOTES - -## RELATED LINKS - -[Add-AzContainerServiceAgentPoolProfile](./Add-AzContainerServiceAgentPoolProfile.md) - -[New-AzContainerService](./New-AzContainerService.md) diff --git a/src/Compute/Compute/help/Remove-AzContainerService.md b/src/Compute/Compute/help/Remove-AzContainerService.md deleted file mode 100644 index eb144c8e7328..000000000000 --- a/src/Compute/Compute/help/Remove-AzContainerService.md +++ /dev/null @@ -1,161 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: 8180092D-5B1D-43A0-B830-D009B30E2DDF -online version: https://docs.microsoft.com/powershell/module/az.compute/remove-azcontainerservice -schema: 2.0.0 ---- - -# Remove-AzContainerService - -## SYNOPSIS -Removes a container service. - -## SYNTAX - -``` -Remove-AzContainerService [-ResourceGroupName] [-Name] [-Force] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -## DESCRIPTION -The **Remove-AzContainerService** cmdlet removes a container service from your Azure account. - -## EXAMPLES - -### Example 1: Remove a container service -``` -PS C:\> Remove-AzContainerService -ResourceGroupName "ResourceGroup17" -Name "CSResourceGroup17" -``` - -This command removes the container service named CSResourceGroup17. - -## PARAMETERS - -### -AsJob -Run cmdlet in the background and return a Job to track progress. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Force -Forces the command to run without asking for user confirmation. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Name -Specifies the name of the container service that this cmdlet removes. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -ResourceGroupName -Specifies the resource group of the container service that this cmdlet removes. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### System.String - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse - -## NOTES - -## RELATED LINKS - -[Get-AzContainerService](./Get-AzContainerService.md) - -[New-AzContainerService](./New-AzContainerService.md) - -[Update-AzContainerService](./Update-AzContainerService.md) - - diff --git a/src/Compute/Compute/help/Remove-AzContainerServiceAgentPoolProfile.md b/src/Compute/Compute/help/Remove-AzContainerServiceAgentPoolProfile.md deleted file mode 100644 index cdb001fcaeb4..000000000000 --- a/src/Compute/Compute/help/Remove-AzContainerServiceAgentPoolProfile.md +++ /dev/null @@ -1,134 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: ED37B17D-C513-422A-89EA-A6AF1C9A5FEE -online version: https://docs.microsoft.com/powershell/module/az.compute/remove-azcontainerserviceagentpoolprofile -schema: 2.0.0 ---- - -# Remove-AzContainerServiceAgentPoolProfile - -## SYNOPSIS -Removes an agent pool profile from a container service. - -## SYNTAX - -``` -Remove-AzContainerServiceAgentPoolProfile [-ContainerService] [-Name] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -## DESCRIPTION -The **Remove-AzContainerServiceAgentPoolProfile** cmdlet removes an agent pool profile from a container service. - -## EXAMPLES - -### Example 1: Remove a profile from a container service -``` -PS C:\> $Container = Get-AzContainerService -ResourceGroupName "ResourceGroup17" -Name "CSResourceGroup17" -PS C:\> Remove-AzContainerServiceAgentPoolProfile -ContainerService $Container -Name "AgentPool01" -``` - -The first command gets a container service named CSResourceGroup17 by using the Get-AzContainerService cmdlet. -The command stores the service in the $Container variable. -The second command removes the profile named AgentPool01 from the container service in $Container. - -## PARAMETERS - -### -ContainerService -Specifies the container service object from which this cmdlet removes an agent pool profile. - -```yaml -Type: Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService -Parameter Sets: (All) -Aliases: - -Required: True -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName, ByValue) -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Name -Specifies the name of the agent pool profile that this cmdlet removes. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -### System.String - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## NOTES - -## RELATED LINKS - -[Add-AzContainerServiceAgentPoolProfile](./Add-AzContainerServiceAgentPoolProfile.md) - -[Get-AzContainerService](./Get-AzContainerService.md) - - diff --git a/src/Compute/Compute/help/Update-AzContainerService.md b/src/Compute/Compute/help/Update-AzContainerService.md deleted file mode 100644 index 55781d9a456b..000000000000 --- a/src/Compute/Compute/help/Update-AzContainerService.md +++ /dev/null @@ -1,175 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml -Module Name: Az.Compute -ms.assetid: 43D01A97-75B9-46CE-B007-26FE6A97C31C -online version: https://docs.microsoft.com/powershell/module/az.compute/update-azcontainerservice -schema: 2.0.0 ---- - -# Update-AzContainerService - -## SYNOPSIS -Updates the state of a container service. - -## SYNTAX - -``` -Update-AzContainerService [-ResourceGroupName] [-Name] - [-ContainerService] [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] -``` - -## DESCRIPTION -The **Update-AzContainerService** cmdlet updates the state of a container service to match a local instance of the service. - -## EXAMPLES - -### Example 1: Update a container service -``` -PS C:\> Get-AzContainerService -ResourceGroupName "ResourceGroup17" -Name "CSResourceGroup17" | Remove-AzContainerServiceAgentPoolProfile -Name "AgentPool01" | Add-AzContainerServiceAgentPoolProfile -Name "AgentPool01" -VmSize "Standard_A1" -DnsPrefix "APResourceGroup17" -Count 2 | Update-AzContainerService -ResourceGroupName "ResourceGroup17" -Name "CSResourceGroup17" -``` - -This command gets the container service named CSResourceGroup17 by using the Get-AzContainerService cmdlet. -The command passes that object to the Remove-AzContainerServiceAgentPoolProfile cmdlet by using the pipeline operator. -**Remove-AzContainerServiceAgentPoolProfile** removes the profile named AgentPool01. -The command passes the result to the Add-AzContainerServiceAgentPoolProfile cmdlet. -**Add-AzContainerServiceAgentPoolProfile** adds a profile that has the name AgentPool01, and has the specified properties. -The command passes the result to the current cmdlet. -The current cmdlet updates the container service to reflect the changes that were made in this command. - -## PARAMETERS - -### -AsJob -Run cmdlet in the background - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ContainerService -Specifies a local **ContainerService** object that contains changes. - -```yaml -Type: Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService -Parameter Sets: (All) -Aliases: - -Required: True -Position: 2 -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Name -Specifies the name of the container service that this cmdlet updates. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -ResourceGroupName -Specifies the resource group of the container service that this cmdlet updates. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### System.String - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## OUTPUTS - -### Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService - -## NOTES - -## RELATED LINKS - -[Add-AzContainerServiceAgentPoolProfile](./Add-AzContainerServiceAgentPoolProfile.md) - -[Get-AzContainerService](./Get-AzContainerService.md) - -[New-AzContainerService](./New-AzContainerService.md) - -[Remove-AzContainerService](./Remove-AzContainerService.md) - -[Remove-AzContainerServiceAgentPoolProfile](./Remove-AzContainerServiceAgentPoolProfile.md) - - diff --git a/tools/StaticAnalysis/Exceptions/Az.Compute/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Compute/BreakingChangeIssues.csv new file mode 100644 index 000000000000..8804f20412be --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.Compute/BreakingChangeIssues.csv @@ -0,0 +1,8 @@ +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.AddAzureRmContainerServiceAgentPoolProfileCommand","Add-AzContainerServiceAgentPoolProfile","0","1000","The cmdlet 'Add-AzContainerServiceAgentPoolProfile' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'Add-AzContainerServiceAgentPoolProfile' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.NewAzureRmContainerServiceConfigCommand","New-AzContainerServiceConfig","0","1000","The cmdlet 'New-AzContainerServiceConfig' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'New-AzContainerServiceConfig' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.RemoveAzureRmContainerServiceAgentPoolProfileCommand","Remove-AzContainerServiceAgentPoolProfile","0","1000","The cmdlet 'Remove-AzContainerServiceAgentPoolProfile' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'Remove-AzContainerServiceAgentPoolProfile' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.NewAzureRmContainerService","New-AzContainerService","0","1000","The cmdlet 'New-AzContainerService' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'New-AzContainerService' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.UpdateAzureRmContainerService","Update-AzContainerService","0","1000","The cmdlet 'Update-AzContainerService' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'Update-AzContainerService' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.RemoveAzureRmContainerService","Remove-AzContainerService","0","1000","The cmdlet 'Remove-AzContainerService' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'Remove-AzContainerService' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.GetAzureRmContainerService","Get-AzContainerService","0","1000","The cmdlet 'Get-AzContainerService' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'Get-AzContainerService' back to the module, or add an alias to the original cmdlet name."