From 56612741391c6eace21b1ea0e74b759776e8de9a Mon Sep 17 00:00:00 2001 From: Yan Xu Date: Mon, 28 Nov 2022 10:05:24 +0800 Subject: [PATCH] [AKS] support NodeLabels and Tags (#20240) * [AKS] support NodeLabels * [AKS] support Tags * rename input parameters to singular nouns * remove Install-AzAksKubectl.md --- src/Aks/Aks.Test/ScenarioTests/Common.ps1 | 25 + .../Aks.Test/ScenarioTests/KubernetesTests.cs | 8 +- .../ScenarioTests/KubernetesTests.ps1 | 94 + .../TestNodeLabels.json | 4366 +++++++++++++++++ .../TestNodeLabelsAndTags.json | 4366 +++++++++++++++++ src/Aks/Aks/ChangeLog.md | 8 +- .../Aks/Commands/CreateOrUpdateKubeBase.cs | 8 +- src/Aks/Aks/Commands/NewAzureRmAks.cs | 12 +- src/Aks/Aks/Commands/NewAzureRmAksNodePool.cs | 17 + .../Aks/Commands/NewOrUpdateAgentPoolBase.cs | 9 + src/Aks/Aks/Commands/SetAzureRmAks.cs | 20 +- .../Aks/Commands/UpdateAzureRmAksNodePool.cs | 17 + src/Aks/Aks/Models/PSNodePool.cs | 170 + src/Aks/Aks/Properties/Resources.Designer.cs | 9 + src/Aks/Aks/Properties/Resources.resx | 3 + src/Aks/Aks/help/New-AzAksCluster.md | 43 +- src/Aks/Aks/help/New-AzAksNodePool.md | 38 +- src/Aks/Aks/help/Set-AzAksCluster.md | 78 +- src/Aks/Aks/help/Update-AzAksNodePool.md | 47 +- 19 files changed, 9277 insertions(+), 61 deletions(-) create mode 100644 src/Aks/Aks.Test/SessionRecords/Commands.Aks.Test.ScenarioTests.KubernetesTests/TestNodeLabels.json create mode 100644 src/Aks/Aks.Test/SessionRecords/Commands.Aks.Test.ScenarioTests.KubernetesTests/TestNodeLabelsAndTags.json diff --git a/src/Aks/Aks.Test/ScenarioTests/Common.ps1 b/src/Aks/Aks.Test/ScenarioTests/Common.ps1 index f28023b1d994..2f4b3352e551 100644 --- a/src/Aks/Aks.Test/ScenarioTests/Common.ps1 +++ b/src/Aks/Aks.Test/ScenarioTests/Common.ps1 @@ -99,4 +99,29 @@ function Assert-Error Assert-True {$result} $Error.Clear() +} + +function Assert-HashTableEquals { + param([HashTable] $expected, [HashTable] $actual, [string] $message) + + if (!$message) { + $expectedStr = $expected | Out-String + $actualStr = $actual | Out-String + $message = "Assertion failed because '$expectedStr' does not match actual '$actualStr'" + } + + if ($expected.Count -ne $actual.Count) { + throw $message + } + + foreach ($key in $expected.Keys) { + if (-not $expected.ContainsKey($key)) { + throw $message + } + if ($expected[$key] -ne $actual[$key]) { + throw $message + } + } + + return $true } \ No newline at end of file diff --git a/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.cs b/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.cs index f7cab3ec3f94..61fc37fef467 100644 --- a/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.cs +++ b/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.cs @@ -80,12 +80,18 @@ public void TestManagedIdentity() TestRunner.RunTestScript("Test-ManagedIdentity"); } - [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestOsSku() { TestRunner.RunTestScript("Test-OSSku"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNodeLabelsAndTags() + { + TestRunner.RunTestScript("Test-NodeLabels-Tags"); + } } } \ No newline at end of file diff --git a/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.ps1 b/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.ps1 index ab8025686dbc..b807b162a6a3 100644 --- a/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.ps1 +++ b/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.ps1 @@ -393,4 +393,98 @@ function Test-OSSku { Remove-AzResourceGroup -Name $resourceGroupName -Force } +} + +function Test-NodeLabels-Tags { + # Setup + $resourceGroupName = Get-RandomResourceGroupName + $kubeClusterName = Get-RandomClusterName + $location = 'eastus' + $nodeVmSize = "Standard_D2_v2" + + try { + New-AzResourceGroup -Name $resourceGroupName -Location $location + + # create aks cluster with default nodepool + $labels1 = @{"someId" = 123; "app" = "test" } + $tags1 = @{"dept"="IT"; "costcenter"=9999} + New-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName -NodeVmSize $nodeVmSize -NodeCount 1 -NodePoolLabel $labels1 -NodePoolTag $tags1 + $cluster = Get-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName + Assert-AreEqual 1 $cluster.AgentPoolProfiles.Count + Assert-HashTableEquals $labels1 $cluster.AgentPoolProfiles[0].NodeLabels + Assert-HashTableEquals $tags1 $cluster.AgentPoolProfiles[0].Tags + $pools = Get-AzAksNodePool -ResourceGroupName $resourceGroupName -ClusterName $kubeClusterName + Assert-AreEqual 1 $pools.Count + Assert-HashTableEquals $labels1 $pools[0].NodeLabels + Assert-HashTableEquals $tags1 $pools[0].Tags + + # update aks cluster default nodepool + $labels2 = @{"someId" = 124; "app" = "test"; "environment" = "dev" } + $tags2 = @{"dept"="Finance"; "costcenter"=8888} + Set-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName -NodePoolLabel $labels2 -NodePoolTag $tags2 + $cluster = Get-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName + Assert-AreEqual 1 $cluster.AgentPoolProfiles.Count + Assert-HashTableEquals $labels2 $cluster.AgentPoolProfiles[0].NodeLabels + Assert-HashTableEquals $tags2 $cluster.AgentPoolProfiles[0].Tags + $pools = Get-AzAksNodePool -ResourceGroupName $resourceGroupName -ClusterName $kubeClusterName + Assert-AreEqual 1 $pools.Count + Assert-HashTableEquals $labels2 $pools[0].NodeLabels + Assert-HashTableEquals $tags2 $pools[0].Tags + + # create a 2nd nodepool + $labels3 = @{"someId" = 125; "tier" = "frontend" } + $tags3 = @{"dept"="Finance"; "costcenter"=8888; "Admin"="Alice"} + New-AzAksNodePool -ResourceGroupName $resourceGroupName -ClusterName $kubeClusterName -Name "pool2" -Count 1 -NodeLabel $labels3 -Tag $tags3 + $cluster = Get-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName + Assert-AreEqual 2 $cluster.AgentPoolProfiles.Count + Assert-HashTableEquals $labels2 ($cluster.AgentPoolProfiles | where {$_.Name -eq "default"}).NodeLabels + Assert-HashTableEquals $tags2 ($cluster.AgentPoolProfiles | where {$_.Name -eq "default"}).Tags + Assert-HashTableEquals $labels3 ($cluster.AgentPoolProfiles | where {$_.Name -eq "pool2"}).NodeLabels + Assert-HashTableEquals $tags3 ($cluster.AgentPoolProfiles | where {$_.Name -eq "pool2"}).Tags + $pools = Get-AzAksNodePool -ResourceGroupName $resourceGroupName -ClusterName $kubeClusterName + Assert-AreEqual 2 $pools.Count + Assert-HashTableEquals $labels2 ($pools | where {$_.Name -eq "default"}).NodeLabels + Assert-HashTableEquals $tags2 ($pools | where {$_.Name -eq "default"}).Tags + Assert-HashTableEquals $labels3 ($pools | where {$_.Name -eq "pool2"}).NodeLabels + Assert-HashTableEquals $tags3 ($pools | where {$_.Name -eq "pool2"}).Tags + + # update the 2nd nodepool + $labels4 = @{"someId" = 126; "app" = "test"; "environment" = "qa" } + $tags4 = @{"dept"="HR"; "costcenter"=6666; "Admin"="Bruce"} + Set-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName -NodeName "pool2" -NodePoolLabel $labels4 -NodePoolTag $tags4 + $cluster = Get-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName + Assert-AreEqual 2 $cluster.AgentPoolProfiles.Count + Assert-HashTableEquals $labels2 ($cluster.AgentPoolProfiles | where {$_.Name -eq "default"}).NodeLabels + Assert-HashTableEquals $tags2 ($cluster.AgentPoolProfiles | where {$_.Name -eq "default"}).Tags + Assert-HashTableEquals $labels4 ($cluster.AgentPoolProfiles | where {$_.Name -eq "pool2"}).NodeLabels + Assert-HashTableEquals $tags4 ($cluster.AgentPoolProfiles | where {$_.Name -eq "pool2"}).Tags + $pools = Get-AzAksNodePool -ResourceGroupName $resourceGroupName -ClusterName $kubeClusterName + Assert-AreEqual 2 $pools.Count + Assert-HashTableEquals $labels2 ($pools | where {$_.Name -eq "default"}).NodeLabels + Assert-HashTableEquals $tags2 ($pools | where {$_.Name -eq "default"}).Tags + Assert-HashTableEquals $labels4 ($pools | where {$_.Name -eq "pool2"}).NodeLabels + Assert-HashTableEquals $tags4 ($pools | where {$_.Name -eq "pool2"}).Tags + + # update the default nodepool + $labels5 = @{"someId" = 127; "tier" = "frontend"; "environment" = "qa" } + $tags5 = @{"dept"="MM"; "costcenter"=7777; "Admin"="Cindy"} + Update-AzAksNodePool -ResourceGroupName $resourceGroupName -ClusterName $kubeClusterName -Name "default" -NodeLabel $labels5 -Tag $tags5 + $cluster = Get-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName + Assert-AreEqual 2 $cluster.AgentPoolProfiles.Count + Assert-HashTableEquals $labels5 ($cluster.AgentPoolProfiles | where {$_.Name -eq "default"}).NodeLabels + Assert-HashTableEquals $tags5 ($cluster.AgentPoolProfiles | where {$_.Name -eq "default"}).Tags + Assert-HashTableEquals $labels4 ($cluster.AgentPoolProfiles | where {$_.Name -eq "pool2"}).NodeLabels + Assert-HashTableEquals $tags4 ($cluster.AgentPoolProfiles | where {$_.Name -eq "pool2"}).Tags + $pools = Get-AzAksNodePool -ResourceGroupName $resourceGroupName -ClusterName $kubeClusterName + Assert-AreEqual 2 $pools.Count + Assert-HashTableEquals $labels5 ($pools | where {$_.Name -eq "default"}).NodeLabels + Assert-HashTableEquals $tags5 ($pools | where {$_.Name -eq "default"}).Tags + Assert-HashTableEquals $labels4 ($pools | where {$_.Name -eq "pool2"}).NodeLabels + Assert-HashTableEquals $tags4 ($pools | where {$_.Name -eq "pool2"}).Tags + + $cluster | Remove-AzAksCluster -Force + } + finally { + Remove-AzResourceGroup -Name $resourceGroupName -Force + } } \ No newline at end of file diff --git a/src/Aks/Aks.Test/SessionRecords/Commands.Aks.Test.ScenarioTests.KubernetesTests/TestNodeLabels.json b/src/Aks/Aks.Test/SessionRecords/Commands.Aks.Test.ScenarioTests.KubernetesTests/TestNodeLabels.json new file mode 100644 index 000000000000..35f73c44fdb0 --- /dev/null +++ b/src/Aks/Aks.Test/SessionRecords/Commands.Aks.Test.ScenarioTests.KubernetesTests/TestNodeLabels.json @@ -0,0 +1,4366 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JncHMxNzk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f0ad72c-33e8-4666-8653-82f9eb216ef8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "9fa0a331-167a-443f-9dde-9fda942aee6f" + ], + "x-ms-correlation-request-id": [ + "9fa0a331-167a-443f-9dde-9fda942aee6f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T090837Z:9fa0a331-167a-443f-9dde-9fda942aee6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 09:08:36 GMT" + ], + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179\",\r\n \"name\": \"rgps179\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58ce0468-c884-4d1a-93c5-d4032415e59a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7d9bb083-f3d9-4f9a-a147-d7aa5e1c57fc" + ], + "x-ms-correlation-request-id": [ + "7d9bb083-f3d9-4f9a-a147-d7aa5e1c57fc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T090837Z:7d9bb083-f3d9-4f9a-a147-d7aa5e1c57fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 09:08:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "232" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ContainerService/managedClusters/kubeps2702' under resource group 'rgps179' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58ce0468-c884-4d1a-93c5-d4032415e59a" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091220Z:2f43b995-714d-44b4-b787-1cebdf6df0d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "2f43b995-714d-44b4-b787-1cebdf6df0d1" + ], + "x-ms-request-id": [ + "f3f881e3-98d4-4aef-9eaf-574b48d87f3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:12:20 GMT" + ], + "Content-Length": [ + "3427" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"123\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "633d078f-5c92-4e1d-962a-94012d5434f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091222Z:e472c3aa-cd04-4d99-8b71-18220d6676d3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "e472c3aa-cd04-4d99-8b71-18220d6676d3" + ], + "x-ms-request-id": [ + "b20fb413-844a-4849-944d-099b0dddb64c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:12:22 GMT" + ], + "Content-Length": [ + "3427" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"123\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "450f589e-6ced-4ccc-a78a-79384f1795e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091227Z:59f10924-7db1-42c8-ba5c-bccd88c4f005" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "59f10924-7db1-42c8-ba5c-bccd88c4f005" + ], + "x-ms-request-id": [ + "06922bf4-3eea-450c-9fa7-68e96dc77adb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:12:26 GMT" + ], + "Content-Length": [ + "3427" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"123\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "450f589e-6ced-4ccc-a78a-79384f1795e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091228Z:c71b0b49-7839-49ca-9055-9c28defd9e95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "c71b0b49-7839-49ca-9055-9c28defd9e95" + ], + "x-ms-request-id": [ + "c8c128a0-ea14-4a4f-9716-8cb206a680e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:12:27 GMT" + ], + "Content-Length": [ + "3427" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"123\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "450f589e-6ced-4ccc-a78a-79384f1795e1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091438Z:d4cc8321-e4a1-469b-87dd-eeb7c345dc0d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "d4cc8321-e4a1-469b-87dd-eeb7c345dc0d" + ], + "x-ms-request-id": [ + "953781d4-9b25-4965-a4d5-2fd0507933a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:14:38 GMT" + ], + "Content-Length": [ + "3455" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "666f0ed8-5495-4d48-85b3-0890dee733c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091440Z:5f5b40b6-2164-4a5b-8d2a-a08be7f3d6d3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "5f5b40b6-2164-4a5b-8d2a-a08be7f3d6d3" + ], + "x-ms-request-id": [ + "96c5beeb-1fef-4b5d-89e0-76c8c43d689d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:14:40 GMT" + ], + "Content-Length": [ + "3455" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c9f5ec8-0ff7-4e7b-8585-2cf28fe8f5c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091824Z:7af74366-d165-46be-b385-295ccf982357" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "7af74366-d165-46be-b385-295ccf982357" + ], + "x-ms-request-id": [ + "69b8574b-0914-4b58-b4f3-235e47db0546" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:18:23 GMT" + ], + "Content-Length": [ + "4130" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa9988f5-cdfe-4deb-9cbc-76cadc654cb3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091828Z:213ee001-5630-4548-80c9-95f1b2f8d9bd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "213ee001-5630-4548-80c9-95f1b2f8d9bd" + ], + "x-ms-request-id": [ + "faf4e157-f252-4221-9192-2c292daf901f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:18:27 GMT" + ], + "Content-Length": [ + "4130" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa9988f5-cdfe-4deb-9cbc-76cadc654cb3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091829Z:4f222a00-fba6-4d02-88c2-d1eb3e056827" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "4f222a00-fba6-4d02-88c2-d1eb3e056827" + ], + "x-ms-request-id": [ + "8fabc856-823c-4293-b347-ee63e5bdc4ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:18:28 GMT" + ], + "Content-Length": [ + "4130" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa9988f5-cdfe-4deb-9cbc-76cadc654cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092040Z:c46fd2e5-39d1-4e51-a864-a56ffd78755e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "c46fd2e5-39d1-4e51-a864-a56ffd78755e" + ], + "x-ms-request-id": [ + "c495fcb9-cb6c-4296-9284-29eb7c9ae846" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:20:40 GMT" + ], + "Content-Length": [ + "4152" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"126\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d07aaa1-74f1-4c8d-9758-12e01f2ec774" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092042Z:febfb95b-5af4-40ba-833b-02ec84fbd3bd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "febfb95b-5af4-40ba-833b-02ec84fbd3bd" + ], + "x-ms-request-id": [ + "dd3b0850-c4fa-4f06-9575-f17005f0dd86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:20:42 GMT" + ], + "Content-Length": [ + "4152" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"126\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e24d728-d73f-47e1-9df4-c5c6f92a58ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092122Z:11463c00-244c-4337-890b-d7ba085c1adb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "11463c00-244c-4337-890b-d7ba085c1adb" + ], + "x-ms-request-id": [ + "2dd91e24-547a-421f-806b-6b4fb30e0d5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:21:22 GMT" + ], + "Content-Length": [ + "4156" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"environment\": \"qa\",\r\n \"someId\": \"127\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"126\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JncHMxNzk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58ce0468-c884-4d1a-93c5-d4032415e59a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "a0ab457d-ae6f-4c59-9563-f52c8e1b749f" + ], + "x-ms-correlation-request-id": [ + "a0ab457d-ae6f-4c59-9563-f52c8e1b749f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T090837Z:a0ab457d-ae6f-4c59-9563-f52c8e1b749f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 09:08:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "167" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179\",\r\n \"name\": \"rgps179\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58ce0468-c884-4d1a-93c5-d4032415e59a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "960278ce-db14-4dc0-bd9b-cb8191d34414" + ], + "x-ms-correlation-request-id": [ + "960278ce-db14-4dc0-bd9b-cb8191d34414" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T090838Z:960278ce-db14-4dc0-bd9b-cb8191d34414" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 09:08:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "14500" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\r\n },\r\n {\r\n \"applicationId\": \"6dae42f8-4368-4678-94ff-3960e28e3630\",\r\n \"roleDefinitionId\": \"831388fc-33b1-4dd1-b64c-40fdcaf96654\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ManagedClusters/eventGridFilters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-09-01\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-08-01\",\r\n \"2022-07-02-preview\",\r\n \"2022-07-01\",\r\n \"2022-06-02-preview\",\r\n \"2022-06-01\",\r\n \"2022-05-02-preview\",\r\n \"2022-04-02-preview\",\r\n \"2022-04-01\",\r\n \"2022-03-02-preview\",\r\n \"2022-03-01\",\r\n \"2022-02-02-preview\",\r\n \"2022-02-01\",\r\n \"2022-01-02-preview\",\r\n \"2022-01-01\",\r\n \"2021-11-01-preview\",\r\n \"2021-10-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-07-01\",\r\n \"2021-05-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"West India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fleetMemberships\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-09-02-preview\",\r\n \"2022-07-02-preview\",\r\n \"2022-06-02-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"fleets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-09-02-preview\",\r\n \"2022-07-02-preview\",\r\n \"2022-06-02-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fleets/members\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-09-02-preview\",\r\n \"2022-07-02-preview\",\r\n \"2022-06-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyNetworkSecurityPerimeterUpdatesAvailable\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-07-02-preview\",\r\n \"2022-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"West India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"West India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-09-01\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-08-01\",\r\n \"2022-07-02-preview\",\r\n \"2022-07-01\",\r\n \"2022-06-02-preview\",\r\n \"2022-06-01\",\r\n \"2022-05-02-preview\",\r\n \"2022-04-02-preview\",\r\n \"2022-04-01\",\r\n \"2022-03-02-preview\",\r\n \"2022-03-01\",\r\n \"2022-02-02-preview\",\r\n \"2022-02-01\",\r\n \"2022-01-02-preview\",\r\n \"2022-01-01\",\r\n \"2021-11-01-preview\",\r\n \"2021-10-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-07-01\",\r\n \"2021-05-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2020-12-01\",\r\n \"2020-11-01\",\r\n \"2020-09-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2017-09-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/osOptions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-09-01\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-08-01\",\r\n \"2022-07-02-preview\",\r\n \"2022-07-01\",\r\n \"2022-06-02-preview\",\r\n \"2022-06-01\",\r\n \"2022-05-02-preview\",\r\n \"2022-04-02-preview\",\r\n \"2022-04-01\",\r\n \"2022-03-02-preview\",\r\n \"2022-03-01\",\r\n \"2022-02-02-preview\",\r\n \"2022-02-01\",\r\n \"2022-01-02-preview\",\r\n \"2022-01-01\",\r\n \"2021-11-01-preview\",\r\n \"2021-10-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-07-01\",\r\n \"2021-05-01\",\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-09-01\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-08-01\",\r\n \"2022-07-02-preview\",\r\n \"2022-07-01\",\r\n \"2022-06-02-preview\",\r\n \"2022-06-01\",\r\n \"2022-05-02-preview\",\r\n \"2022-04-02-preview\",\r\n \"2022-04-01\",\r\n \"2022-03-02-preview\",\r\n \"2022-03-01\",\r\n \"2022-02-02-preview\",\r\n \"2022-02-01\",\r\n \"2022-01-02-preview\",\r\n \"2022-01-01\",\r\n \"2021-11-01-preview\",\r\n \"2021-10-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-07-01\",\r\n \"2021-05-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2020-12-01\",\r\n \"2020-11-01\",\r\n \"2020-09-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-08-01-preview\",\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedclustersnapshots\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-07-02-preview\",\r\n \"2022-06-02-preview\",\r\n \"2022-05-02-preview\",\r\n \"2022-04-02-preview\",\r\n \"2022-03-02-preview\",\r\n \"2022-02-02-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31\",\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-09-01\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-08-01\",\r\n \"2022-07-02-preview\",\r\n \"2022-07-01\",\r\n \"2022-06-02-preview\",\r\n \"2022-06-01\",\r\n \"2022-05-02-preview\",\r\n \"2022-04-02-preview\",\r\n \"2022-04-01\",\r\n \"2022-03-02-preview\",\r\n \"2022-03-01\",\r\n \"2022-02-02-preview\",\r\n \"2022-02-01\",\r\n \"2022-01-02-preview\",\r\n \"2022-01-01\",\r\n \"2021-11-01-preview\",\r\n \"2021-10-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58ce0468-c884-4d1a-93c5-d4032415e59a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1593" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 0,\r\n \"osType\": \"Linux\",\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"mode\": \"System\",\r\n \"nodeLabels\": {\r\n \"someId\": \"123\",\r\n \"app\": \"test\"\r\n }\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\",\r\n \"secret\": \".t68Q~f_5.wOza7G_eSWv2xAItlnfdfuHMOJ_a2H\"\r\n },\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T090847Z:d820836e-0972-4e19-84cb-18e40f264bc4" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "azure-asyncoperation": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/201b2672-061f-4a8c-b86a-00bb988482bd?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "d820836e-0972-4e19-84cb-18e40f264bc4" + ], + "x-ms-request-id": [ + "201b2672-061f-4a8c-b86a-00bb988482bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:08:46 GMT" + ], + "Content-Length": [ + "3176" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Creating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"123\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n }\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "450f589e-6ced-4ccc-a78a-79384f1795e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3053" + ] + }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"mode\": \"System\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091236Z:fb7513c6-5abe-432e-be76-0fa41a03db73" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "azure-asyncoperation": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/1234942d-7860-4ec6-8895-6b42bf79676c?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "fb7513c6-5abe-432e-be76-0fa41a03db73" + ], + "x-ms-request-id": [ + "1234942d-7860-4ec6-8895-6b42bf79676c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:12:36 GMT" + ], + "Content-Length": [ + "3453" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Updating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa9988f5-cdfe-4deb-9cbc-76cadc654cb3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3656" + ] + }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"mode\": \"System\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"mode\": \"User\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"126\"\r\n },\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091838Z:c223d51a-ef5d-4679-8fb0-fdfde782917f" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "azure-asyncoperation": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ea6ae0f9-64ff-4ad1-ba92-8776d7899c20?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "c223d51a-ef5d-4679-8fb0-fdfde782917f" + ], + "x-ms-request-id": [ + "ea6ae0f9-64ff-4ad1-ba92-8776d7899c20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 09:18:38 GMT" + ], + "Content-Length": [ + "4149" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps2702\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-5b40ae8b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-5b40ae8b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Updating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Updating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"126\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps179_kubeps2702_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps179_kubeps2702_eastus/providers/Microsoft.Network/publicIPAddresses/0103b712-b715-43e3-9d7f-64da593aa22e\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/201b2672-061f-4a8c-b86a-00bb988482bd?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjAxYjI2NzItMDYxZi00YThjLWI4NmEtMDBiYjk4ODQ4MmJkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58ce0468-c884-4d1a-93c5-d4032415e59a" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "76b3f546-0fc8-4900-9713-62d7248ea27e" + ], + "x-ms-request-id": [ + "3a4eb9cf-61e6-4870-be04-167922f3e314" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T090917Z:76b3f546-0fc8-4900-9713-62d7248ea27e" + ], + "Date": [ + "Thu, 24 Nov 2022 09:09:17 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"72261b20-1f06-8c4a-b86a-00bb988482bd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:08:45.7473565Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/201b2672-061f-4a8c-b86a-00bb988482bd?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjAxYjI2NzItMDYxZi00YThjLWI4NmEtMDBiYjk4ODQ4MmJkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58ce0468-c884-4d1a-93c5-d4032415e59a" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "fcd1cb35-e714-4df3-a60d-e7f773d20d87" + ], + "x-ms-request-id": [ + "8432195a-3f3d-4f40-83b7-9cd7fe49fb2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T090947Z:fcd1cb35-e714-4df3-a60d-e7f773d20d87" + ], + "Date": [ + "Thu, 24 Nov 2022 09:09:47 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"72261b20-1f06-8c4a-b86a-00bb988482bd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:08:45.7473565Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/201b2672-061f-4a8c-b86a-00bb988482bd?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjAxYjI2NzItMDYxZi00YThjLWI4NmEtMDBiYjk4ODQ4MmJkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58ce0468-c884-4d1a-93c5-d4032415e59a" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "97c4fef0-42ab-4df4-98a7-240641e034ae" + ], + "x-ms-request-id": [ + "9096b2d9-ee82-4208-8dd5-20344169ca43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091018Z:97c4fef0-42ab-4df4-98a7-240641e034ae" + ], + "Date": [ + "Thu, 24 Nov 2022 09:10:18 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"72261b20-1f06-8c4a-b86a-00bb988482bd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:08:45.7473565Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/201b2672-061f-4a8c-b86a-00bb988482bd?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjAxYjI2NzItMDYxZi00YThjLWI4NmEtMDBiYjk4ODQ4MmJkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58ce0468-c884-4d1a-93c5-d4032415e59a" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "7efa38ca-8b72-4a3f-8537-8f441b1b990e" + ], + "x-ms-request-id": [ + "6f8deb90-8622-4649-b58a-066bd2bd0b3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091048Z:7efa38ca-8b72-4a3f-8537-8f441b1b990e" + ], + "Date": [ + "Thu, 24 Nov 2022 09:10:47 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"72261b20-1f06-8c4a-b86a-00bb988482bd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:08:45.7473565Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/201b2672-061f-4a8c-b86a-00bb988482bd?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjAxYjI2NzItMDYxZi00YThjLWI4NmEtMDBiYjk4ODQ4MmJkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58ce0468-c884-4d1a-93c5-d4032415e59a" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "c421f50d-027f-44fd-b224-739d6f050ceb" + ], + "x-ms-request-id": [ + "1f433218-873b-4018-90eb-9be4b3793b03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091118Z:c421f50d-027f-44fd-b224-739d6f050ceb" + ], + "Date": [ + "Thu, 24 Nov 2022 09:11:18 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"72261b20-1f06-8c4a-b86a-00bb988482bd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:08:45.7473565Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/201b2672-061f-4a8c-b86a-00bb988482bd?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjAxYjI2NzItMDYxZi00YThjLWI4NmEtMDBiYjk4ODQ4MmJkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58ce0468-c884-4d1a-93c5-d4032415e59a" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "3edfd3f9-55aa-4071-9e0c-4d988603946a" + ], + "x-ms-request-id": [ + "54ca2b1e-15f3-441c-9a38-bae76b0a2738" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091149Z:3edfd3f9-55aa-4071-9e0c-4d988603946a" + ], + "Date": [ + "Thu, 24 Nov 2022 09:11:48 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"72261b20-1f06-8c4a-b86a-00bb988482bd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:08:45.7473565Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/201b2672-061f-4a8c-b86a-00bb988482bd?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjAxYjI2NzItMDYxZi00YThjLWI4NmEtMDBiYjk4ODQ4MmJkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58ce0468-c884-4d1a-93c5-d4032415e59a" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "2f85659a-b03c-43e0-a4e0-6e1e26cf1efe" + ], + "x-ms-request-id": [ + "c000a9a6-7fb3-432c-a73c-698e9a35d611" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091219Z:2f85659a-b03c-43e0-a4e0-6e1e26cf1efe" + ], + "Date": [ + "Thu, 24 Nov 2022 09:12:19 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"72261b20-1f06-8c4a-b86a-00bb988482bd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-11-24T09:08:45.7473565Z\",\r\n \"endTime\": \"2022-11-24T09:12:01.1559557Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyL2FnZW50UG9vbHM/YXBpLXZlcnNpb249MjAyMi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "642a2ef2-4713-48c9-9cc9-fc7b17a8c716" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "dba67f3c-8d9e-4cbd-a9aa-1ed8098c5a5e" + ], + "x-ms-request-id": [ + "20e35567-dd29-4edb-b13f-b6b6b140c6a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091225Z:dba67f3c-8d9e-4cbd-a9aa-1ed8098c5a5e" + ], + "Date": [ + "Thu, 24 Nov 2022 09:12:24 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"123\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyL2FnZW50UG9vbHM/YXBpLXZlcnNpb249MjAyMi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25135bb7-be5d-46a2-97de-9b493f92c9b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d6c16d39-2b1c-4f35-9106-e6704d3e257c" + ], + "x-ms-request-id": [ + "9cacfa9f-2d2b-45dc-90fc-87c7b7301048" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091443Z:d6c16d39-2b1c-4f35-9106-e6704d3e257c" + ], + "Date": [ + "Thu, 24 Nov 2022 09:14:42 GMT" + ], + "Content-Length": [ + "953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyL2FnZW50UG9vbHM/YXBpLXZlcnNpb249MjAyMi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5332cd30-e4d9-44ba-a84a-51dcea61c6fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "2d0a98f4-f642-41d3-8b55-3dc4c71892a1" + ], + "x-ms-request-id": [ + "dec4e685-9449-4d50-9e94-812723fdf06d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091826Z:2d0a98f4-f642-41d3-8b55-3dc4c71892a1" + ], + "Date": [ + "Thu, 24 Nov 2022 09:18:25 GMT" + ], + "Content-Length": [ + "1889" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/pool2\",\r\n \"name\": \"pool2\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyL2FnZW50UG9vbHM/YXBpLXZlcnNpb249MjAyMi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99191d7f-9b6a-4287-bf6e-5634af47994e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "2ef170ed-0ecf-4f37-8ce7-22363e285ba7" + ], + "x-ms-request-id": [ + "7023fb77-aff2-46c2-b280-b32de0dc3011" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092044Z:2ef170ed-0ecf-4f37-8ce7-22363e285ba7" + ], + "Date": [ + "Thu, 24 Nov 2022 09:20:44 GMT" + ], + "Content-Length": [ + "1911" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/pool2\",\r\n \"name\": \"pool2\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"126\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyL2FnZW50UG9vbHM/YXBpLXZlcnNpb249MjAyMi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08a7bd05-b642-4442-a1b5-a82755c42259" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "74127fd6-7f2d-4a47-82df-d34137c40152" + ], + "x-ms-request-id": [ + "1fe7c5e3-ea1a-4eb8-a9ca-ba80cb338190" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092130Z:74127fd6-7f2d-4a47-82df-d34137c40152" + ], + "Date": [ + "Thu, 24 Nov 2022 09:21:30 GMT" + ], + "Content-Length": [ + "1915" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"environment\": \"qa\",\r\n \"someId\": \"127\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/pool2\",\r\n \"name\": \"pool2\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"126\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/1234942d-7860-4ec6-8895-6b42bf79676c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTIzNDk0MmQtNzg2MC00ZWM2LTg4OTUtNmI0MmJmNzk2NzZjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "450f589e-6ced-4ccc-a78a-79384f1795e1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "cae5a8db-8e31-4a26-b9e2-5d8f321f8c73" + ], + "x-ms-request-id": [ + "388e8cf9-17cb-4977-a27d-7956d0767ba1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091306Z:cae5a8db-8e31-4a26-b9e2-5d8f321f8c73" + ], + "Date": [ + "Thu, 24 Nov 2022 09:13:05 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"2d943412-6078-c64e-8895-6b42bf79676c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:12:32.0287023Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/1234942d-7860-4ec6-8895-6b42bf79676c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTIzNDk0MmQtNzg2MC00ZWM2LTg4OTUtNmI0MmJmNzk2NzZjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "450f589e-6ced-4ccc-a78a-79384f1795e1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "ef6f7023-71a8-4c6d-92a1-6b87909940ad" + ], + "x-ms-request-id": [ + "a8ebd4f2-546a-4468-83ab-4cd0f61b59e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091336Z:ef6f7023-71a8-4c6d-92a1-6b87909940ad" + ], + "Date": [ + "Thu, 24 Nov 2022 09:13:36 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"2d943412-6078-c64e-8895-6b42bf79676c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:12:32.0287023Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/1234942d-7860-4ec6-8895-6b42bf79676c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTIzNDk0MmQtNzg2MC00ZWM2LTg4OTUtNmI0MmJmNzk2NzZjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "450f589e-6ced-4ccc-a78a-79384f1795e1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "4dcc7114-438f-4900-a61f-04d3dbc89996" + ], + "x-ms-request-id": [ + "cac92fa0-1eec-4182-a2c4-c13bd39718d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091407Z:4dcc7114-438f-4900-a61f-04d3dbc89996" + ], + "Date": [ + "Thu, 24 Nov 2022 09:14:06 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"2d943412-6078-c64e-8895-6b42bf79676c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:12:32.0287023Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/1234942d-7860-4ec6-8895-6b42bf79676c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTIzNDk0MmQtNzg2MC00ZWM2LTg4OTUtNmI0MmJmNzk2NzZjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "450f589e-6ced-4ccc-a78a-79384f1795e1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "297619b2-0b46-45c9-bc2a-3aeb6c4aacf7" + ], + "x-ms-request-id": [ + "6f00514b-0141-4638-8f85-730b5a7f1bc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091437Z:297619b2-0b46-45c9-bc2a-3aeb6c4aacf7" + ], + "Date": [ + "Thu, 24 Nov 2022 09:14:37 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"2d943412-6078-c64e-8895-6b42bf79676c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-11-24T09:12:32.0287023Z\",\r\n \"endTime\": \"2022-11-24T09:14:21.6641353Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/pool2?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyL2FnZW50UG9vbHMvcG9vbDI/YXBpLXZlcnNpb249MjAyMi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee682873-e13d-4c97-a246-729ae7997213" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "ce9386a4-8001-4048-a3fa-1c597fbf487e" + ], + "x-ms-request-id": [ + "bf2b024e-ea4c-49b1-a506-6cf5662c0a46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091444Z:ce9386a4-8001-4048-a3fa-1c597fbf487e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 09:14:44 GMT" + ], + "Content-Length": [ + "220" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Could not find the agentpool: pool2 in subscription: 0b1f6471-1bf0-4dda-aec3-cb9272f09590, resourceGroup: rgps179, resourceName: kubeps2702.\",\r\n \"subcode\": \"GetAgentPool_NotFound\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/pool2?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyL2FnZW50UG9vbHMvcG9vbDI/YXBpLXZlcnNpb249MjAyMi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee682873-e13d-4c97-a246-729ae7997213" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "fb0e85a5-7cb4-4120-93e1-61c49880edab" + ], + "x-ms-request-id": [ + "0ca5374c-e76f-43e2-9070-55040ed09836" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091822Z:fb0e85a5-7cb4-4120-93e1-61c49880edab" + ], + "Date": [ + "Thu, 24 Nov 2022 09:18:21 GMT" + ], + "Content-Length": [ + "873" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/pool2\",\r\n \"name\": \"pool2\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/pool2?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyL2FnZW50UG9vbHMvcG9vbDI/YXBpLXZlcnNpb249MjAyMi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee682873-e13d-4c97-a246-729ae7997213" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 0,\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "azure-asyncoperation": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/3fe02078-dc76-444f-a72e-035a3d71e46b?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "7dcda389-f27a-4d46-9c86-6b8d60211a7c" + ], + "x-ms-request-id": [ + "3fe02078-dc76-444f-a72e-035a3d71e46b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091448Z:7dcda389-f27a-4d46-9c86-6b8d60211a7c" + ], + "Date": [ + "Thu, 24 Nov 2022 09:14:47 GMT" + ], + "Content-Length": [ + "872" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/pool2\",\r\n \"name\": \"pool2\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Creating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/3fe02078-dc76-444f-a72e-035a3d71e46b?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2ZlMDIwNzgtZGM3Ni00NDRmLWE3MmUtMDM1YTNkNzFlNDZiP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee682873-e13d-4c97-a246-729ae7997213" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "33414ca8-c597-4abf-8fe5-787372e46050" + ], + "x-ms-request-id": [ + "f8b626fc-4271-4442-b7be-55bfff2fcc23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091518Z:33414ca8-c597-4abf-8fe5-787372e46050" + ], + "Date": [ + "Thu, 24 Nov 2022 09:15:18 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7820e03f-76dc-4f44-a72e-035a3d71e46b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:14:47.8881316Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/3fe02078-dc76-444f-a72e-035a3d71e46b?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2ZlMDIwNzgtZGM3Ni00NDRmLWE3MmUtMDM1YTNkNzFlNDZiP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee682873-e13d-4c97-a246-729ae7997213" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "3eb5e16b-f2e4-4db4-a54a-f26d146c3ffc" + ], + "x-ms-request-id": [ + "dfe6d638-411b-40af-91f9-93a0125a2183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091549Z:3eb5e16b-f2e4-4db4-a54a-f26d146c3ffc" + ], + "Date": [ + "Thu, 24 Nov 2022 09:15:48 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7820e03f-76dc-4f44-a72e-035a3d71e46b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:14:47.8881316Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/3fe02078-dc76-444f-a72e-035a3d71e46b?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2ZlMDIwNzgtZGM3Ni00NDRmLWE3MmUtMDM1YTNkNzFlNDZiP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee682873-e13d-4c97-a246-729ae7997213" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "217262dd-165e-4f1e-972e-92b5fe93ec5b" + ], + "x-ms-request-id": [ + "6164fce6-d071-4a2c-ab11-f2a8de115e07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091619Z:217262dd-165e-4f1e-972e-92b5fe93ec5b" + ], + "Date": [ + "Thu, 24 Nov 2022 09:16:18 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7820e03f-76dc-4f44-a72e-035a3d71e46b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:14:47.8881316Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/3fe02078-dc76-444f-a72e-035a3d71e46b?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2ZlMDIwNzgtZGM3Ni00NDRmLWE3MmUtMDM1YTNkNzFlNDZiP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee682873-e13d-4c97-a246-729ae7997213" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "ae4109ec-6de9-49c4-9681-0928bcf61a08" + ], + "x-ms-request-id": [ + "577acac5-6fbc-4d8a-af8b-48ec8a7d79a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091649Z:ae4109ec-6de9-49c4-9681-0928bcf61a08" + ], + "Date": [ + "Thu, 24 Nov 2022 09:16:49 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7820e03f-76dc-4f44-a72e-035a3d71e46b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:14:47.8881316Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/3fe02078-dc76-444f-a72e-035a3d71e46b?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2ZlMDIwNzgtZGM3Ni00NDRmLWE3MmUtMDM1YTNkNzFlNDZiP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee682873-e13d-4c97-a246-729ae7997213" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "46a5b8c9-f0e6-4c7c-946c-e4c57b5675dc" + ], + "x-ms-request-id": [ + "a1abec82-df9b-4cae-8680-86bc49d5e380" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091720Z:46a5b8c9-f0e6-4c7c-946c-e4c57b5675dc" + ], + "Date": [ + "Thu, 24 Nov 2022 09:17:19 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7820e03f-76dc-4f44-a72e-035a3d71e46b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:14:47.8881316Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/3fe02078-dc76-444f-a72e-035a3d71e46b?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2ZlMDIwNzgtZGM3Ni00NDRmLWE3MmUtMDM1YTNkNzFlNDZiP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee682873-e13d-4c97-a246-729ae7997213" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "00e4d159-7c1c-4660-8fe1-ce730e9b52c1" + ], + "x-ms-request-id": [ + "256c4eda-e10d-4ae1-9fc4-e4091fee56e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091750Z:00e4d159-7c1c-4660-8fe1-ce730e9b52c1" + ], + "Date": [ + "Thu, 24 Nov 2022 09:17:49 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7820e03f-76dc-4f44-a72e-035a3d71e46b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:14:47.8881316Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/3fe02078-dc76-444f-a72e-035a3d71e46b?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2ZlMDIwNzgtZGM3Ni00NDRmLWE3MmUtMDM1YTNkNzFlNDZiP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee682873-e13d-4c97-a246-729ae7997213" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "4093057b-4e88-4fdd-aaf7-173cfb0881fa" + ], + "x-ms-request-id": [ + "3060d266-b3cf-4150-aaea-eb5ba705a051" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091820Z:4093057b-4e88-4fdd-aaf7-173cfb0881fa" + ], + "Date": [ + "Thu, 24 Nov 2022 09:18:20 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7820e03f-76dc-4f44-a72e-035a3d71e46b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-11-24T09:14:47.8881316Z\",\r\n \"endTime\": \"2022-11-24T09:18:20.5028676Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ea6ae0f9-64ff-4ad1-ba92-8776d7899c20?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWE2YWUwZjktNjRmZi00YWQxLWJhOTItODc3NmQ3ODk5YzIwP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa9988f5-cdfe-4deb-9cbc-76cadc654cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "81286ec8-53ea-481c-828a-eb2f4f74158b" + ], + "x-ms-request-id": [ + "570aff7a-6dbf-474b-abdf-44f88718fa3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091908Z:81286ec8-53ea-481c-828a-eb2f4f74158b" + ], + "Date": [ + "Thu, 24 Nov 2022 09:19:08 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f9e06aea-ff64-d14a-ba92-8776d7899c20\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:18:33.0913214Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ea6ae0f9-64ff-4ad1-ba92-8776d7899c20?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWE2YWUwZjktNjRmZi00YWQxLWJhOTItODc3NmQ3ODk5YzIwP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa9988f5-cdfe-4deb-9cbc-76cadc654cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "9f118ff1-fcca-4023-b43b-3434dc9c94d7" + ], + "x-ms-request-id": [ + "080f377e-8d75-42d0-a8b5-c31f7ed5f2a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T091938Z:9f118ff1-fcca-4023-b43b-3434dc9c94d7" + ], + "Date": [ + "Thu, 24 Nov 2022 09:19:38 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f9e06aea-ff64-d14a-ba92-8776d7899c20\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:18:33.0913214Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ea6ae0f9-64ff-4ad1-ba92-8776d7899c20?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWE2YWUwZjktNjRmZi00YWQxLWJhOTItODc3NmQ3ODk5YzIwP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa9988f5-cdfe-4deb-9cbc-76cadc654cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "5114d25d-8542-4db5-81d6-0d33c60f6f2f" + ], + "x-ms-request-id": [ + "840e50e5-5384-4348-967d-52cf19b20f32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092009Z:5114d25d-8542-4db5-81d6-0d33c60f6f2f" + ], + "Date": [ + "Thu, 24 Nov 2022 09:20:08 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f9e06aea-ff64-d14a-ba92-8776d7899c20\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:18:33.0913214Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ea6ae0f9-64ff-4ad1-ba92-8776d7899c20?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWE2YWUwZjktNjRmZi00YWQxLWJhOTItODc3NmQ3ODk5YzIwP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa9988f5-cdfe-4deb-9cbc-76cadc654cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "acc1c9f6-b954-4f23-b5ae-3eb1a22da0f3" + ], + "x-ms-request-id": [ + "e7113ea5-e68f-483b-b105-deabcabec101" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092039Z:acc1c9f6-b954-4f23-b5ae-3eb1a22da0f3" + ], + "Date": [ + "Thu, 24 Nov 2022 09:20:38 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f9e06aea-ff64-d14a-ba92-8776d7899c20\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-11-24T09:18:33.0913214Z\",\r\n \"endTime\": \"2022-11-24T09:20:10.0843243Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/default?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyL2FnZW50UG9vbHMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8767c33-8285-4c4b-887d-c40034920fa5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "985c1989-5b12-491c-880b-edea08c27832" + ], + "x-ms-request-id": [ + "e8a7a131-06fe-47b2-b73a-8a22f14156e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092046Z:985c1989-5b12-491c-880b-edea08c27832" + ], + "Date": [ + "Thu, 24 Nov 2022 09:20:46 GMT" + ], + "Content-Length": [ + "870" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/default?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyL2FnZW50UG9vbHMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8767c33-8285-4c4b-887d-c40034920fa5" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "72df904e-5e16-45a0-8743-c5d9426efc8e" + ], + "x-ms-request-id": [ + "439ab898-a03c-447c-9b7b-cb611c488946" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092120Z:72df904e-5e16-45a0-8743-c5d9426efc8e" + ], + "Date": [ + "Thu, 24 Nov 2022 09:21:20 GMT" + ], + "Content-Length": [ + "874" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"environment\": \"qa\",\r\n \"someId\": \"127\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/default?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyL2FnZW50UG9vbHMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8767c33-8285-4c4b-887d-c40034920fa5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "520" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"mode\": \"System\",\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"nodeLabels\": {\r\n \"tier\": \"frontend\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"127\"\r\n },\r\n \"enableFIPS\": false\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "azure-asyncoperation": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/685a3840-592c-45f1-a3f9-6a52005e5f6a?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "9d854db8-ca5d-4bb0-8cb4-f9304cb6f6f2" + ], + "x-ms-request-id": [ + "685a3840-592c-45f1-a3f9-6a52005e5f6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092049Z:9d854db8-ca5d-4bb0-8cb4-f9304cb6f6f2" + ], + "Date": [ + "Thu, 24 Nov 2022 09:20:48 GMT" + ], + "Content-Length": [ + "873" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Updating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"nodeLabels\": {\r\n \"environment\": \"qa\",\r\n \"someId\": \"127\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/685a3840-592c-45f1-a3f9-6a52005e5f6a?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjg1YTM4NDAtNTkyYy00NWYxLWEzZjktNmE1MjAwNWU1ZjZhP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8767c33-8285-4c4b-887d-c40034920fa5" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "0dcc952e-7098-42ee-b667-8d31912ef92a" + ], + "x-ms-request-id": [ + "178b48e4-157f-403e-8512-b4ea402b2d89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092119Z:0dcc952e-7098-42ee-b667-8d31912ef92a" + ], + "Date": [ + "Thu, 24 Nov 2022 09:21:19 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"40385a68-2c59-f145-a3f9-6a52005e5f6a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-11-24T09:20:49.2007412Z\",\r\n \"endTime\": \"2022-11-24T09:20:59.8865981Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps179/providers/Microsoft.ContainerService/managedClusters/kubeps2702?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHMxNzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJTZXJ2aWNlL21hbmFnZWRDbHVzdGVycy9rdWJlcHMyNzAyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b176e6-ea0e-4893-a4af-26c6b6474c78" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operationresults/7bc38768-7081-4fa1-9892-fce5bcbfe358?api-version=2017-08-31" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "azure-asyncoperation": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/7bc38768-7081-4fa1-9892-fce5bcbfe358?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "e564ba45-7ce4-4348-b4fa-ede930e24c53" + ], + "x-ms-request-id": [ + "7bc38768-7081-4fa1-9892-fce5bcbfe358" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092133Z:e564ba45-7ce4-4348-b4fa-ede930e24c53" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 09:21:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/7bc38768-7081-4fa1-9892-fce5bcbfe358?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2JjMzg3NjgtNzA4MS00ZmExLTk4OTItZmNlNWJjYmZlMzU4P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b176e6-ea0e-4893-a4af-26c6b6474c78" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "e7fd04e6-1ec8-4fa9-95e7-6fa937c295e6" + ], + "x-ms-request-id": [ + "6ce2d504-e4e3-4e28-8f63-7131d23f3d5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092203Z:e7fd04e6-1ec8-4fa9-95e7-6fa937c295e6" + ], + "Date": [ + "Thu, 24 Nov 2022 09:22:02 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6887c37b-8170-a14f-9892-fce5bcbfe358\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:21:32.9507397Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/7bc38768-7081-4fa1-9892-fce5bcbfe358?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2JjMzg3NjgtNzA4MS00ZmExLTk4OTItZmNlNWJjYmZlMzU4P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b176e6-ea0e-4893-a4af-26c6b6474c78" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "0115805d-a729-49fd-80e9-e4dc04e5caf1" + ], + "x-ms-request-id": [ + "12ea5292-be27-4cff-a1c0-0e8d7fc6ce99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092233Z:0115805d-a729-49fd-80e9-e4dc04e5caf1" + ], + "Date": [ + "Thu, 24 Nov 2022 09:22:33 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6887c37b-8170-a14f-9892-fce5bcbfe358\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:21:32.9507397Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/7bc38768-7081-4fa1-9892-fce5bcbfe358?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2JjMzg3NjgtNzA4MS00ZmExLTk4OTItZmNlNWJjYmZlMzU4P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b176e6-ea0e-4893-a4af-26c6b6474c78" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "e6066a7d-7abc-4536-8f13-69a5824ac007" + ], + "x-ms-request-id": [ + "838d9a00-ae3c-4c8c-a493-b6272e5afd8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092304Z:e6066a7d-7abc-4536-8f13-69a5824ac007" + ], + "Date": [ + "Thu, 24 Nov 2022 09:23:03 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6887c37b-8170-a14f-9892-fce5bcbfe358\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:21:32.9507397Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/7bc38768-7081-4fa1-9892-fce5bcbfe358?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2JjMzg3NjgtNzA4MS00ZmExLTk4OTItZmNlNWJjYmZlMzU4P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b176e6-ea0e-4893-a4af-26c6b6474c78" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "b2663b7a-0173-4c3f-9c39-39252684bf15" + ], + "x-ms-request-id": [ + "ea88af79-03c5-440d-974e-93a8584f7ab2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092334Z:b2663b7a-0173-4c3f-9c39-39252684bf15" + ], + "Date": [ + "Thu, 24 Nov 2022 09:23:34 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6887c37b-8170-a14f-9892-fce5bcbfe358\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:21:32.9507397Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/7bc38768-7081-4fa1-9892-fce5bcbfe358?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2JjMzg3NjgtNzA4MS00ZmExLTk4OTItZmNlNWJjYmZlMzU4P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b176e6-ea0e-4893-a4af-26c6b6474c78" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "240a4fdb-c22b-413b-9a26-c9b2cd0fd9c2" + ], + "x-ms-request-id": [ + "c9c8381a-ead4-4c4f-b7a6-6a9be5976e57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092405Z:240a4fdb-c22b-413b-9a26-c9b2cd0fd9c2" + ], + "Date": [ + "Thu, 24 Nov 2022 09:24:04 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6887c37b-8170-a14f-9892-fce5bcbfe358\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:21:32.9507397Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/7bc38768-7081-4fa1-9892-fce5bcbfe358?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2JjMzg3NjgtNzA4MS00ZmExLTk4OTItZmNlNWJjYmZlMzU4P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b176e6-ea0e-4893-a4af-26c6b6474c78" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "a870105c-1694-4e6a-8c3f-947951ee340a" + ], + "x-ms-request-id": [ + "4a81ca8b-3766-412b-8b10-1cabb6984a81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092435Z:a870105c-1694-4e6a-8c3f-947951ee340a" + ], + "Date": [ + "Thu, 24 Nov 2022 09:24:34 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6887c37b-8170-a14f-9892-fce5bcbfe358\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:21:32.9507397Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/7bc38768-7081-4fa1-9892-fce5bcbfe358?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2JjMzg3NjgtNzA4MS00ZmExLTk4OTItZmNlNWJjYmZlMzU4P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b176e6-ea0e-4893-a4af-26c6b6474c78" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "911abf56-e2e1-452d-9ee1-3cf764807a7f" + ], + "x-ms-request-id": [ + "81425796-5c18-47d8-8eaa-573520d56962" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092505Z:911abf56-e2e1-452d-9ee1-3cf764807a7f" + ], + "Date": [ + "Thu, 24 Nov 2022 09:25:05 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6887c37b-8170-a14f-9892-fce5bcbfe358\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:21:32.9507397Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/7bc38768-7081-4fa1-9892-fce5bcbfe358?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2JjMzg3NjgtNzA4MS00ZmExLTk4OTItZmNlNWJjYmZlMzU4P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b176e6-ea0e-4893-a4af-26c6b6474c78" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "1f6ea96c-f0ea-4dbe-8be9-db2a0219298f" + ], + "x-ms-request-id": [ + "5d2481b9-2cd6-426b-8e4f-151ab6976644" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092536Z:1f6ea96c-f0ea-4dbe-8be9-db2a0219298f" + ], + "Date": [ + "Thu, 24 Nov 2022 09:25:36 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6887c37b-8170-a14f-9892-fce5bcbfe358\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T09:21:32.9507397Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/7bc38768-7081-4fa1-9892-fce5bcbfe358?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2JjMzg3NjgtNzA4MS00ZmExLTk4OTItZmNlNWJjYmZlMzU4P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b176e6-ea0e-4893-a4af-26c6b6474c78" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "0ff7f390-c3ba-44ac-8904-395126e431ca" + ], + "x-ms-request-id": [ + "4f074e3f-7810-461a-91de-c44ac57b6f63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092607Z:0ff7f390-c3ba-44ac-8904-395126e431ca" + ], + "Date": [ + "Thu, 24 Nov 2022 09:26:06 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6887c37b-8170-a14f-9892-fce5bcbfe358\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-11-24T09:21:32.9507397Z\",\r\n \"endTime\": \"2022-11-24T09:25:44.5991227Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operationresults/7bc38768-7081-4fa1-9892-fce5bcbfe358?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnJlc3VsdHMvN2JjMzg3NjgtNzA4MS00ZmExLTk4OTItZmNlNWJjYmZlMzU4P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b176e6-ea0e-4893-a4af-26c6b6474c78" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operationresults/7bc38768-7081-4fa1-9892-fce5bcbfe358?api-version=2017-08-31" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "7c0aeed1-39e0-484e-ad90-7185cce3656a" + ], + "x-ms-request-id": [ + "11d0d1d8-7d02-4558-87f3-3084ce97d77c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092607Z:7c0aeed1-39e0-484e-ad90-7185cce3656a" + ], + "Date": [ + "Thu, 24 Nov 2022 09:26:06 GMT" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps179?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JncHMxNzk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c0d36b8-b12f-4fd8-8246-7d72802b3874" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTMTc5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "058ad8eb-1ad0-4d1e-9b35-4e78df4b36ed" + ], + "x-ms-correlation-request-id": [ + "058ad8eb-1ad0-4d1e-9b35-4e78df4b36ed" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092612Z:058ad8eb-1ad0-4d1e-9b35-4e78df4b36ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 09:26:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTMTc5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE1UYzVMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTMTc5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c517a47b-7348-4a53-9856-ee405e9c15ea" + ], + "x-ms-correlation-request-id": [ + "c517a47b-7348-4a53-9856-ee405e9c15ea" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092628Z:c517a47b-7348-4a53-9856-ee405e9c15ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 09:26:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTMTc5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE1UYzVMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTMTc5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "820002d1-3635-454c-a470-60d8774bf7a0" + ], + "x-ms-correlation-request-id": [ + "820002d1-3635-454c-a470-60d8774bf7a0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092643Z:820002d1-3635-454c-a470-60d8774bf7a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 09:26:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTMTc5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE1UYzVMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTMTc5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "8f1b7c1b-a928-4c62-8ce4-3850a806294d" + ], + "x-ms-correlation-request-id": [ + "8f1b7c1b-a928-4c62-8ce4-3850a806294d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092659Z:8f1b7c1b-a928-4c62-8ce4-3850a806294d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 09:26:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTMTc5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE1UYzVMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTMTc5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "9394550b-f604-4b64-99b5-cf8cce6b92f0" + ], + "x-ms-correlation-request-id": [ + "9394550b-f604-4b64-99b5-cf8cce6b92f0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092714Z:9394550b-f604-4b64-99b5-cf8cce6b92f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 09:27:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTMTc5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE1UYzVMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "d6ef2dfb-9772-4ab1-ac09-736f6e1b31e8" + ], + "x-ms-correlation-request-id": [ + "d6ef2dfb-9772-4ab1-ac09-736f6e1b31e8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092730Z:d6ef2dfb-9772-4ab1-ac09-736f6e1b31e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 09:27:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTMTc5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE1UYzVMVVZCVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "73778263-34ea-483d-bfb0-59650ecb842d" + ], + "x-ms-correlation-request-id": [ + "73778263-34ea-483d-bfb0-59650ecb842d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T092730Z:73778263-34ea-483d-bfb0-59650ecb842d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 09:27:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-NodeLabels": [ + "ps179", + "ps2702" + ] + }, + "Variables": { + "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + } +} \ No newline at end of file diff --git a/src/Aks/Aks.Test/SessionRecords/Commands.Aks.Test.ScenarioTests.KubernetesTests/TestNodeLabelsAndTags.json b/src/Aks/Aks.Test/SessionRecords/Commands.Aks.Test.ScenarioTests.KubernetesTests/TestNodeLabelsAndTags.json new file mode 100644 index 000000000000..e9ec75ca3185 --- /dev/null +++ b/src/Aks/Aks.Test/SessionRecords/Commands.Aks.Test.ScenarioTests.KubernetesTests/TestNodeLabelsAndTags.json @@ -0,0 +1,4366 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JncHM0OTQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c91d3176-850d-4715-866d-211721cecb8a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "67c8cc6a-ef51-4d5a-9138-800b2ee60c0c" + ], + "x-ms-correlation-request-id": [ + "67c8cc6a-ef51-4d5a-9138-800b2ee60c0c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100631Z:67c8cc6a-ef51-4d5a-9138-800b2ee60c0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 10:06:31 GMT" + ], + "Content-Length": [ + "169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941\",\r\n \"name\": \"rgps4941\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da15e5d8-9607-4214-8c9f-34619e5c41c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "073e9a89-086c-4dd6-88b7-6ecdf64d6a28" + ], + "x-ms-correlation-request-id": [ + "073e9a89-086c-4dd6-88b7-6ecdf64d6a28" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100632Z:073e9a89-086c-4dd6-88b7-6ecdf64d6a28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 10:06:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "233" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ContainerService/managedClusters/kubeps4270' under resource group 'rgps4941' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da15e5d8-9607-4214-8c9f-34619e5c41c5" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100943Z:bc0cb0a8-e907-4610-a6a4-0f35ba8d4295" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "bc0cb0a8-e907-4610-a6a4-0f35ba8d4295" + ], + "x-ms-request-id": [ + "640f619b-d896-43cd-9922-95776f478e4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:09:42 GMT" + ], + "Content-Length": [ + "3500" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"9999\",\r\n \"dept\": \"IT\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"123\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4f3beab9-fd85-4d5a-a883-8fb1633fa13b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100946Z:c8d0468d-d5ee-4aab-8bab-d7207a015693" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c8d0468d-d5ee-4aab-8bab-d7207a015693" + ], + "x-ms-request-id": [ + "986f8a66-f445-496a-9379-35b27c20b1ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:09:45 GMT" + ], + "Content-Length": [ + "3500" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"9999\",\r\n \"dept\": \"IT\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"123\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f415e04-3963-457a-a28c-b12312080501" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100951Z:3dada2ab-ef63-443f-a4c2-003eb2637f80" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "3dada2ab-ef63-443f-a4c2-003eb2637f80" + ], + "x-ms-request-id": [ + "d51f9bd3-b6bc-4d87-8100-cc8755e6585d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:09:50 GMT" + ], + "Content-Length": [ + "3500" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"9999\",\r\n \"dept\": \"IT\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"123\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f415e04-3963-457a-a28c-b12312080501" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100952Z:981cf4c6-db5d-4748-a81e-4088b77316cc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "981cf4c6-db5d-4748-a81e-4088b77316cc" + ], + "x-ms-request-id": [ + "5f94c981-efe8-44be-840a-cd9e6ab0d4d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:09:51 GMT" + ], + "Content-Length": [ + "3500" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"9999\",\r\n \"dept\": \"IT\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"123\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f415e04-3963-457a-a28c-b12312080501" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101203Z:d8394967-b382-44bc-975d-9e0e0811eca5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "d8394967-b382-44bc-975d-9e0e0811eca5" + ], + "x-ms-request-id": [ + "7bd0f802-701b-418e-a575-ea17ffc003e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:12:02 GMT" + ], + "Content-Length": [ + "3533" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a814241-f8d1-4ce7-9f24-13ff06e09efd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101205Z:83dcf032-c7a6-4c39-9446-e41e4fd151d9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "83dcf032-c7a6-4c39-9446-e41e4fd151d9" + ], + "x-ms-request-id": [ + "2ed3e836-33f6-469b-826e-13f69e256a68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:12:04 GMT" + ], + "Content-Length": [ + "3533" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75419254-2f5b-418a-bb62-2fa9ad4e642c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101618Z:77db8c57-e48a-4b72-9a6f-34460b7ad87d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "77db8c57-e48a-4b72-9a6f-34460b7ad87d" + ], + "x-ms-request-id": [ + "bb1f553e-782f-4ddd-8767-96960b554b3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:16:18 GMT" + ], + "Content-Length": [ + "4307" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Alice\",\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e19c42ad-5b12-40f3-8327-afefcd62e24c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101621Z:94db2a6d-67fa-4a39-8f0c-58367d53ac9d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "94db2a6d-67fa-4a39-8f0c-58367d53ac9d" + ], + "x-ms-request-id": [ + "d1b15b7c-372e-4bec-ae52-ca2b2bffc7ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:16:21 GMT" + ], + "Content-Length": [ + "4307" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Alice\",\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e19c42ad-5b12-40f3-8327-afefcd62e24c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101622Z:25043189-93c2-4dd6-9ce3-d08223b51dfb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "25043189-93c2-4dd6-9ce3-d08223b51dfb" + ], + "x-ms-request-id": [ + "a4b9ef5e-7f48-46c7-87de-040bc95798a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:16:22 GMT" + ], + "Content-Length": [ + "4307" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Alice\",\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e19c42ad-5b12-40f3-8327-afefcd62e24c" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101832Z:c94c9fa7-babd-4564-bebd-79fa44c34073" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "c94c9fa7-babd-4564-bebd-79fa44c34073" + ], + "x-ms-request-id": [ + "00bb8a2d-0d48-4694-8e01-8c49d79cfa2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:18:31 GMT" + ], + "Content-Length": [ + "4324" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Bruce\",\r\n \"costcenter\": \"6666\",\r\n \"dept\": \"HR\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"126\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "387a94f9-7c7f-4462-a443-107828159833" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101834Z:02908846-3dcf-409e-a172-d329690f96d5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "02908846-3dcf-409e-a172-d329690f96d5" + ], + "x-ms-request-id": [ + "3f5480e5-a99d-4875-875b-cd388dc11287" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:18:33 GMT" + ], + "Content-Length": [ + "4324" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Bruce\",\r\n \"costcenter\": \"6666\",\r\n \"dept\": \"HR\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"126\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70ec1e4b-b8e6-4676-b0e0-5aed63ccbd1e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101914Z:c64ad351-b27f-47d4-b901-fde0cfe0cd21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c64ad351-b27f-47d4-b901-fde0cfe0cd21" + ], + "x-ms-request-id": [ + "1981b629-7ecf-4ba0-9115-a842e4ec0346" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:19:14 GMT" + ], + "Content-Length": [ + "4347" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Cindy\",\r\n \"costcenter\": \"7777\",\r\n \"dept\": \"MM\"\r\n },\r\n \"nodeLabels\": {\r\n \"environment\": \"qa\",\r\n \"someId\": \"127\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Bruce\",\r\n \"costcenter\": \"6666\",\r\n \"dept\": \"HR\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"126\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JncHM0OTQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da15e5d8-9607-4214-8c9f-34619e5c41c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "62fb2a9f-9f5c-47cb-9816-8cf2a42898de" + ], + "x-ms-correlation-request-id": [ + "62fb2a9f-9f5c-47cb-9816-8cf2a42898de" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100632Z:62fb2a9f-9f5c-47cb-9816-8cf2a42898de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 10:06:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "169" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941\",\r\n \"name\": \"rgps4941\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da15e5d8-9607-4214-8c9f-34619e5c41c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "5deccbb4-82f8-4964-abc5-5788bbbe9ea4" + ], + "x-ms-correlation-request-id": [ + "5deccbb4-82f8-4964-abc5-5788bbbe9ea4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100632Z:5deccbb4-82f8-4964-abc5-5788bbbe9ea4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 10:06:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "14500" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\r\n },\r\n {\r\n \"applicationId\": \"6dae42f8-4368-4678-94ff-3960e28e3630\",\r\n \"roleDefinitionId\": \"831388fc-33b1-4dd1-b64c-40fdcaf96654\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ManagedClusters/eventGridFilters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-09-01\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-08-01\",\r\n \"2022-07-02-preview\",\r\n \"2022-07-01\",\r\n \"2022-06-02-preview\",\r\n \"2022-06-01\",\r\n \"2022-05-02-preview\",\r\n \"2022-04-02-preview\",\r\n \"2022-04-01\",\r\n \"2022-03-02-preview\",\r\n \"2022-03-01\",\r\n \"2022-02-02-preview\",\r\n \"2022-02-01\",\r\n \"2022-01-02-preview\",\r\n \"2022-01-01\",\r\n \"2021-11-01-preview\",\r\n \"2021-10-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-07-01\",\r\n \"2021-05-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"West India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fleetMemberships\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-09-02-preview\",\r\n \"2022-07-02-preview\",\r\n \"2022-06-02-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"fleets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-09-02-preview\",\r\n \"2022-07-02-preview\",\r\n \"2022-06-02-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fleets/members\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-09-02-preview\",\r\n \"2022-07-02-preview\",\r\n \"2022-06-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyNetworkSecurityPerimeterUpdatesAvailable\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-07-02-preview\",\r\n \"2022-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"West India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"West India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-09-01\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-08-01\",\r\n \"2022-07-02-preview\",\r\n \"2022-07-01\",\r\n \"2022-06-02-preview\",\r\n \"2022-06-01\",\r\n \"2022-05-02-preview\",\r\n \"2022-04-02-preview\",\r\n \"2022-04-01\",\r\n \"2022-03-02-preview\",\r\n \"2022-03-01\",\r\n \"2022-02-02-preview\",\r\n \"2022-02-01\",\r\n \"2022-01-02-preview\",\r\n \"2022-01-01\",\r\n \"2021-11-01-preview\",\r\n \"2021-10-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-07-01\",\r\n \"2021-05-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2020-12-01\",\r\n \"2020-11-01\",\r\n \"2020-09-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2017-09-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/osOptions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-09-01\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-08-01\",\r\n \"2022-07-02-preview\",\r\n \"2022-07-01\",\r\n \"2022-06-02-preview\",\r\n \"2022-06-01\",\r\n \"2022-05-02-preview\",\r\n \"2022-04-02-preview\",\r\n \"2022-04-01\",\r\n \"2022-03-02-preview\",\r\n \"2022-03-01\",\r\n \"2022-02-02-preview\",\r\n \"2022-02-01\",\r\n \"2022-01-02-preview\",\r\n \"2022-01-01\",\r\n \"2021-11-01-preview\",\r\n \"2021-10-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-07-01\",\r\n \"2021-05-01\",\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-09-01\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-08-01\",\r\n \"2022-07-02-preview\",\r\n \"2022-07-01\",\r\n \"2022-06-02-preview\",\r\n \"2022-06-01\",\r\n \"2022-05-02-preview\",\r\n \"2022-04-02-preview\",\r\n \"2022-04-01\",\r\n \"2022-03-02-preview\",\r\n \"2022-03-01\",\r\n \"2022-02-02-preview\",\r\n \"2022-02-01\",\r\n \"2022-01-02-preview\",\r\n \"2022-01-01\",\r\n \"2021-11-01-preview\",\r\n \"2021-10-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-07-01\",\r\n \"2021-05-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2020-12-01\",\r\n \"2020-11-01\",\r\n \"2020-09-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-08-01-preview\",\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedclustersnapshots\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-07-02-preview\",\r\n \"2022-06-02-preview\",\r\n \"2022-05-02-preview\",\r\n \"2022-04-02-preview\",\r\n \"2022-03-02-preview\",\r\n \"2022-02-02-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31\",\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-10-02-preview\",\r\n \"2022-09-02-preview\",\r\n \"2022-09-01\",\r\n \"2022-08-03-preview\",\r\n \"2022-08-02-preview\",\r\n \"2022-08-01\",\r\n \"2022-07-02-preview\",\r\n \"2022-07-01\",\r\n \"2022-06-02-preview\",\r\n \"2022-06-01\",\r\n \"2022-05-02-preview\",\r\n \"2022-04-02-preview\",\r\n \"2022-04-01\",\r\n \"2022-03-02-preview\",\r\n \"2022-03-01\",\r\n \"2022-02-02-preview\",\r\n \"2022-02-01\",\r\n \"2022-01-02-preview\",\r\n \"2022-01-01\",\r\n \"2021-11-01-preview\",\r\n \"2021-10-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da15e5d8-9607-4214-8c9f-34619e5c41c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1681" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 0,\r\n \"osType\": \"Linux\",\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"mode\": \"System\",\r\n \"tags\": {\r\n \"dept\": \"IT\",\r\n \"costcenter\": \"9999\"\r\n },\r\n \"nodeLabels\": {\r\n \"someId\": \"123\",\r\n \"app\": \"test\"\r\n }\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\",\r\n \"secret\": \".t68Q~f_5.wOza7G_eSWv2xAItlnfdfuHMOJ_a2H\"\r\n },\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100640Z:34605ac2-d796-45fc-a424-975fc6bfe192" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "azure-asyncoperation": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/686af0db-421d-455e-b076-8178f636690b?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "34605ac2-d796-45fc-a424-975fc6bfe192" + ], + "x-ms-request-id": [ + "686af0db-421d-455e-b076-8178f636690b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:06:39 GMT" + ], + "Content-Length": [ + "3248" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Creating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"9999\",\r\n \"dept\": \"IT\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"123\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n }\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f415e04-3963-457a-a28c-b12312080501" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3148" + ] + }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"mode\": \"System\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"tags\": {\r\n \"dept\": \"Finance\",\r\n \"costcenter\": \"8888\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"124\",\r\n \"environment\": \"dev\"\r\n },\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101001Z:b76c9278-8ee9-4b7c-968c-d995847d0d97" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "azure-asyncoperation": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ae23026c-9365-42d6-8d73-009f142ecbc5?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "b76c9278-8ee9-4b7c-968c-d995847d0d97" + ], + "x-ms-request-id": [ + "ae23026c-9365-42d6-8d73-009f142ecbc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:10:00 GMT" + ], + "Content-Length": [ + "3531" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Updating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e19c42ad-5b12-40f3-8327-afefcd62e24c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3868" + ] + }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"mode\": \"System\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"mode\": \"User\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"tags\": {\r\n \"dept\": \"HR\",\r\n \"Admin\": \"Bruce\",\r\n \"costcenter\": \"6666\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"126\",\r\n \"environment\": \"qa\"\r\n },\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101630Z:5167116f-9ed9-4974-86f1-05864926502e" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "azure-asyncoperation": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/70034cfb-5d8e-48a5-85ec-b0d89f511674?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "5167116f-9ed9-4974-86f1-05864926502e" + ], + "x-ms-request-id": [ + "70034cfb-5d8e-48a5-85ec-b0d89f511674" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:16:29 GMT" + ], + "Content-Length": [ + "4321" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps4270\",\r\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"kubernetesVersion\": \"1.23.12\",\r\n \"currentKubernetesVersion\": \"1.23.12\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-47084c6b.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-47084c6b.portal.hcp.eastus.azmk8s.io\",\r\n \"agentPoolProfiles\": [\r\n {\r\n \"name\": \"default\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Updating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n },\r\n {\r\n \"name\": \"pool2\",\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Updating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Bruce\",\r\n \"costcenter\": \"6666\",\r\n \"dept\": \"HR\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"126\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n ],\r\n \"linuxProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChy6cYuI2+AoUycYdObeb45hTY5N46KTuCyy7Ln6Sg+xOoC0RyEAOmLzAWUjYCgbgCuJyOWR7HUz8vGz9guxpeb6kKroXVU20/ZA7fdE8OLU/86aCWZJkBuDJpbmPZsuVwjBJ2sQClmyR+UESLmi+pHLF/QGC55sNh00kdLOpzJLFnkb7nkTWQZ25sWqzr/gmrAx5Pvn6fb6PzTgFKNjKyU2XvJQUpy0iXY1jCJd+0fMzbFDR44izuR+Y9FZ8H2abyARd/ujVYTY8S90ICW7J2eZFQPe8uCfhAjaMlHcQpAjQn/1+h21hJM51UckW1z1XptJZAYWr1IJHTp5B9KfKI/C+4EkcILlPGeqvoZlOCWPYiu6LetiWAf7I9TMfVbBmdl6tPt37Dene7rmHAOIcviskzSmFs7ajjLnOMLDp1GDDfBUntu+VOMHZo09AqOdXva5Qij+YMU1T/xd8cMPvEK7NPmp9E4T5kl+jy+zQxcP3w+niPEtI6w8uYM+vznq5g5nu1WGFT8hG+CprOnB/OzrZsJPMkWzg6cCiQ2nkBM1tjNxA0XHm665fg3OjqRhnXRMorEHri6T+0huUis6CY7Kbu5r1S4yll/eXhBLB6MNvqmeEHpwuGbEksSwjCCNBi812vOaYJ3ZIcSmgiafTDok9bsIEGj9xhNhiCV0Gklw== devigned@msft.com\\r\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \"windowsProfile\": {\r\n \"adminUsername\": \"azureuser\",\r\n \"enableCSIProxy\": true\r\n },\r\n \"servicePrincipalProfile\": {\r\n \"clientId\": \"74be032e-9cbe-4a2d-b1ab-c6beee96a311\"\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4941_kubeps4270_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"loadBalancerSku\": \"Standard\",\r\n \"loadBalancerProfile\": {\r\n \"managedOutboundIPs\": {\r\n \"count\": 1\r\n },\r\n \"effectiveOutboundIPs\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/MC_rgps4941_kubeps4270_eastus/providers/Microsoft.Network/publicIPAddresses/f6802149-76cd-4e59-8469-2de73cb86be5\"\r\n }\r\n ]\r\n },\r\n \"serviceCidr\": \"10.0.0.0/16\",\r\n \"dnsServiceIP\": \"10.0.0.10\",\r\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\r\n \"outboundType\": \"loadBalancer\",\r\n \"serviceCidrs\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"ipFamilies\": [\r\n \"IPv4\"\r\n ]\r\n },\r\n \"maxAgentPools\": 100,\r\n \"securityProfile\": {},\r\n \"storageProfile\": {\r\n \"diskCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"fileCSIDriver\": {\r\n \"enabled\": true\r\n },\r\n \"snapshotController\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"oidcIssuerProfile\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/686af0db-421d-455e-b076-8178f636690b?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjg2YWYwZGItNDIxZC00NTVlLWIwNzYtODE3OGY2MzY2OTBiP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da15e5d8-9607-4214-8c9f-34619e5c41c5" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b8599b3f-50d3-483b-bac3-52acd066293b" + ], + "x-ms-request-id": [ + "efb0de45-3ba7-4d6e-9cef-69e15e9dee00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100710Z:b8599b3f-50d3-483b-bac3-52acd066293b" + ], + "Date": [ + "Thu, 24 Nov 2022 10:07:10 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dbf06a68-1d42-5e45-b076-8178f636690b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:06:38.8735147Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/686af0db-421d-455e-b076-8178f636690b?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjg2YWYwZGItNDIxZC00NTVlLWIwNzYtODE3OGY2MzY2OTBiP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da15e5d8-9607-4214-8c9f-34619e5c41c5" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "b91020fc-a09f-4d44-a7c3-6d997b615bda" + ], + "x-ms-request-id": [ + "2b012dda-155e-4273-9007-d14f77a57209" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100740Z:b91020fc-a09f-4d44-a7c3-6d997b615bda" + ], + "Date": [ + "Thu, 24 Nov 2022 10:07:40 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dbf06a68-1d42-5e45-b076-8178f636690b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:06:38.8735147Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/686af0db-421d-455e-b076-8178f636690b?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjg2YWYwZGItNDIxZC00NTVlLWIwNzYtODE3OGY2MzY2OTBiP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da15e5d8-9607-4214-8c9f-34619e5c41c5" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "ca9c359b-f919-4527-aafd-c678a46b0a15" + ], + "x-ms-request-id": [ + "c9cde347-ba85-455c-84c6-6ff575717751" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100811Z:ca9c359b-f919-4527-aafd-c678a46b0a15" + ], + "Date": [ + "Thu, 24 Nov 2022 10:08:10 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dbf06a68-1d42-5e45-b076-8178f636690b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:06:38.8735147Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/686af0db-421d-455e-b076-8178f636690b?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjg2YWYwZGItNDIxZC00NTVlLWIwNzYtODE3OGY2MzY2OTBiP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da15e5d8-9607-4214-8c9f-34619e5c41c5" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "06e8ce40-0c32-4ab7-b58b-0529b3847cf6" + ], + "x-ms-request-id": [ + "e8245529-2b11-457a-9f78-4ce75448338c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100841Z:06e8ce40-0c32-4ab7-b58b-0529b3847cf6" + ], + "Date": [ + "Thu, 24 Nov 2022 10:08:41 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dbf06a68-1d42-5e45-b076-8178f636690b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:06:38.8735147Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/686af0db-421d-455e-b076-8178f636690b?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjg2YWYwZGItNDIxZC00NTVlLWIwNzYtODE3OGY2MzY2OTBiP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da15e5d8-9607-4214-8c9f-34619e5c41c5" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "a4e0e938-f7ca-4163-b8c9-29ebbb6552e0" + ], + "x-ms-request-id": [ + "302e5216-ccb4-4182-8e1b-8b716f04e1b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100911Z:a4e0e938-f7ca-4163-b8c9-29ebbb6552e0" + ], + "Date": [ + "Thu, 24 Nov 2022 10:09:11 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dbf06a68-1d42-5e45-b076-8178f636690b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:06:38.8735147Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/686af0db-421d-455e-b076-8178f636690b?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjg2YWYwZGItNDIxZC00NTVlLWIwNzYtODE3OGY2MzY2OTBiP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da15e5d8-9607-4214-8c9f-34619e5c41c5" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "23290f77-a076-410c-bcc6-f52cd0c0d566" + ], + "x-ms-request-id": [ + "f27863f3-37ce-45ac-ba08-a48acaa3f472" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100942Z:23290f77-a076-410c-bcc6-f52cd0c0d566" + ], + "Date": [ + "Thu, 24 Nov 2022 10:09:41 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dbf06a68-1d42-5e45-b076-8178f636690b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-11-24T10:06:38.8735147Z\",\r\n \"endTime\": \"2022-11-24T10:09:39.1658882Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MC9hZ2VudFBvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a2948ec-f3ea-4528-9f3f-ca07e6bd7d49" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "e473bf72-5d11-48b5-9abc-ab222fb539c3" + ], + "x-ms-request-id": [ + "ec184d01-cece-4f6c-9f0a-20833c300d77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T100949Z:e473bf72-5d11-48b5-9abc-ab222fb539c3" + ], + "Date": [ + "Thu, 24 Nov 2022 10:09:48 GMT" + ], + "Content-Length": [ + "996" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"9999\",\r\n \"dept\": \"IT\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"someId\": \"123\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MC9hZ2VudFBvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d7da2f0-50e5-467a-bbb6-5b3fed1429d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f90ea662-09eb-419c-aa1f-f3a3170edce8" + ], + "x-ms-request-id": [ + "ccfe8d5f-bee3-4d75-a142-876263918229" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101207Z:f90ea662-09eb-419c-aa1f-f3a3170edce8" + ], + "Date": [ + "Thu, 24 Nov 2022 10:12:07 GMT" + ], + "Content-Length": [ + "1029" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MC9hZ2VudFBvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "105ed790-5536-4ce5-a3a4-8a97f59adc9c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101620Z:4202d44d-5bf3-4ba4-8b53-8073161bc97c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "4202d44d-5bf3-4ba4-8b53-8073161bc97c" + ], + "x-ms-request-id": [ + "547bef36-e95f-4af2-82ec-165611e313f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:16:19 GMT" + ], + "Content-Length": [ + "2065" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/pool2\",\r\n \"name\": \"pool2\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Alice\",\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MC9hZ2VudFBvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "111323ef-5b8a-426d-9043-7ca363206e2b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101837Z:619234ef-46c0-4d3b-a359-1f9337ad0548" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "619234ef-46c0-4d3b-a359-1f9337ad0548" + ], + "x-ms-request-id": [ + "c656fc02-8e74-44ff-add4-cf0814c25aca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:18:36 GMT" + ], + "Content-Length": [ + "2082" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/pool2\",\r\n \"name\": \"pool2\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Bruce\",\r\n \"costcenter\": \"6666\",\r\n \"dept\": \"HR\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"126\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MC9hZ2VudFBvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a59e67ce-b9a7-4d67-8771-5f7f1bf3e95b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101916Z:2054bdb2-3641-4430-abc4-de4118c14cb4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "2054bdb2-3641-4430-abc4-de4118c14cb4" + ], + "x-ms-request-id": [ + "e3fe8a16-a9bd-4c2d-8333-ecd8ef2aa463" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Thu, 24 Nov 2022 10:19:16 GMT" + ], + "Content-Length": [ + "2105" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Cindy\",\r\n \"costcenter\": \"7777\",\r\n \"dept\": \"MM\"\r\n },\r\n \"nodeLabels\": {\r\n \"environment\": \"qa\",\r\n \"someId\": \"127\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/pool2\",\r\n \"name\": \"pool2\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Bruce\",\r\n \"costcenter\": \"6666\",\r\n \"dept\": \"HR\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"qa\",\r\n \"someId\": \"126\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ae23026c-9365-42d6-8d73-009f142ecbc5?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWUyMzAyNmMtOTM2NS00MmQ2LThkNzMtMDA5ZjE0MmVjYmM1P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f415e04-3963-457a-a28c-b12312080501" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "7cd90636-47ab-4335-85e0-647682560e8f" + ], + "x-ms-request-id": [ + "f79abc69-0132-4050-a4a6-bbc194b21485" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101031Z:7cd90636-47ab-4335-85e0-647682560e8f" + ], + "Date": [ + "Thu, 24 Nov 2022 10:10:31 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6c0223ae-6593-d642-8d73-009f142ecbc5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:09:56.0610698Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ae23026c-9365-42d6-8d73-009f142ecbc5?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWUyMzAyNmMtOTM2NS00MmQ2LThkNzMtMDA5ZjE0MmVjYmM1P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f415e04-3963-457a-a28c-b12312080501" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "c44097d0-a0af-4d0c-812d-99989196f541" + ], + "x-ms-request-id": [ + "686488c1-e12f-4057-a758-f47c2dbcb694" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101101Z:c44097d0-a0af-4d0c-812d-99989196f541" + ], + "Date": [ + "Thu, 24 Nov 2022 10:11:00 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6c0223ae-6593-d642-8d73-009f142ecbc5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:09:56.0610698Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ae23026c-9365-42d6-8d73-009f142ecbc5?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWUyMzAyNmMtOTM2NS00MmQ2LThkNzMtMDA5ZjE0MmVjYmM1P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f415e04-3963-457a-a28c-b12312080501" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "e7b0fdeb-b017-4614-a3f6-30f670e50676" + ], + "x-ms-request-id": [ + "673921bf-a2a2-469a-ab5e-7d627db33d84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101132Z:e7b0fdeb-b017-4614-a3f6-30f670e50676" + ], + "Date": [ + "Thu, 24 Nov 2022 10:11:31 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6c0223ae-6593-d642-8d73-009f142ecbc5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:09:56.0610698Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ae23026c-9365-42d6-8d73-009f142ecbc5?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWUyMzAyNmMtOTM2NS00MmQ2LThkNzMtMDA5ZjE0MmVjYmM1P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f415e04-3963-457a-a28c-b12312080501" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "528c04d1-a3f1-456a-9eab-32adb48804fe" + ], + "x-ms-request-id": [ + "da1431a6-78eb-4503-8973-621fa03f0746" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101202Z:528c04d1-a3f1-456a-9eab-32adb48804fe" + ], + "Date": [ + "Thu, 24 Nov 2022 10:12:01 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6c0223ae-6593-d642-8d73-009f142ecbc5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-11-24T10:09:56.0610698Z\",\r\n \"endTime\": \"2022-11-24T10:11:39.8691058Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/pool2?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MC9hZ2VudFBvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf103e87-cbf8-4037-bd6a-768001130ab1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "51e7d66f-8524-4a9a-8caa-f96435fbc90e" + ], + "x-ms-request-id": [ + "c0def2eb-2ad5-4e50-be7d-e3914e33b463" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101208Z:51e7d66f-8524-4a9a-8caa-f96435fbc90e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 10:12:08 GMT" + ], + "Content-Length": [ + "221" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Could not find the agentpool: pool2 in subscription: 0b1f6471-1bf0-4dda-aec3-cb9272f09590, resourceGroup: rgps4941, resourceName: kubeps4270.\",\r\n \"subcode\": \"GetAgentPool_NotFound\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/pool2?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MC9hZ2VudFBvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf103e87-cbf8-4037-bd6a-768001130ab1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "0101c581-b833-4d35-8731-c472e0ca2923" + ], + "x-ms-request-id": [ + "dc34fa92-a1b2-404a-9295-a63c4236ddcb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101616Z:0101c581-b833-4d35-8731-c472e0ca2923" + ], + "Date": [ + "Thu, 24 Nov 2022 10:16:16 GMT" + ], + "Content-Length": [ + "963" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/pool2\",\r\n \"name\": \"pool2\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Alice\",\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/pool2?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MC9hZ2VudFBvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMjItMDktMDE=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf103e87-cbf8-4037-bd6a-768001130ab1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "282" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 0,\r\n \"tags\": {\r\n \"dept\": \"Finance\",\r\n \"Admin\": \"Alice\",\r\n \"costcenter\": \"8888\"\r\n },\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "azure-asyncoperation": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/f1ceaa42-c5ab-4191-88f7-e509c27d175c?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "bc1e5144-4c5b-4ccd-819d-470991d68b3a" + ], + "x-ms-request-id": [ + "f1ceaa42-c5ab-4191-88f7-e509c27d175c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101212Z:bc1e5144-4c5b-4ccd-819d-470991d68b3a" + ], + "Date": [ + "Thu, 24 Nov 2022 10:12:12 GMT" + ], + "Content-Length": [ + "962" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/pool2\",\r\n \"name\": \"pool2\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"scaleDownMode\": \"Delete\",\r\n \"provisioningState\": \"Creating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Alice\",\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"someId\": \"125\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"User\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/f1ceaa42-c5ab-4191-88f7-e509c27d175c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjFjZWFhNDItYzVhYi00MTkxLTg4ZjctZTUwOWMyN2QxNzVjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf103e87-cbf8-4037-bd6a-768001130ab1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "c7ea1cd1-ab13-464e-b3f8-b627c301d5da" + ], + "x-ms-request-id": [ + "cd8c6eba-b847-4344-9d7c-b172ad13f840" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101242Z:c7ea1cd1-ab13-464e-b3f8-b627c301d5da" + ], + "Date": [ + "Thu, 24 Nov 2022 10:12:42 GMT" + ], + "Content-Length": [ + "125" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"42aacef1-abc5-9141-88f7-e509c27d175c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:12:12.217187Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/f1ceaa42-c5ab-4191-88f7-e509c27d175c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjFjZWFhNDItYzVhYi00MTkxLTg4ZjctZTUwOWMyN2QxNzVjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf103e87-cbf8-4037-bd6a-768001130ab1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "599a3370-79ec-4210-beb4-f125d9e4b2d9" + ], + "x-ms-request-id": [ + "e31e8c7e-1c1b-4bbc-ba3a-e600518184b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101313Z:599a3370-79ec-4210-beb4-f125d9e4b2d9" + ], + "Date": [ + "Thu, 24 Nov 2022 10:13:13 GMT" + ], + "Content-Length": [ + "125" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"42aacef1-abc5-9141-88f7-e509c27d175c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:12:12.217187Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/f1ceaa42-c5ab-4191-88f7-e509c27d175c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjFjZWFhNDItYzVhYi00MTkxLTg4ZjctZTUwOWMyN2QxNzVjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf103e87-cbf8-4037-bd6a-768001130ab1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "73512582-a403-4846-b640-94b01f01b071" + ], + "x-ms-request-id": [ + "0baaff94-657b-4f14-b1b2-58838b53118a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101343Z:73512582-a403-4846-b640-94b01f01b071" + ], + "Date": [ + "Thu, 24 Nov 2022 10:13:42 GMT" + ], + "Content-Length": [ + "125" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"42aacef1-abc5-9141-88f7-e509c27d175c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:12:12.217187Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/f1ceaa42-c5ab-4191-88f7-e509c27d175c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjFjZWFhNDItYzVhYi00MTkxLTg4ZjctZTUwOWMyN2QxNzVjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf103e87-cbf8-4037-bd6a-768001130ab1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "2fe1d9e6-e8da-4af2-b2b0-77150dbaa443" + ], + "x-ms-request-id": [ + "b2ae6c7b-ad96-45fe-b8a4-00532bbb9b52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101414Z:2fe1d9e6-e8da-4af2-b2b0-77150dbaa443" + ], + "Date": [ + "Thu, 24 Nov 2022 10:14:13 GMT" + ], + "Content-Length": [ + "125" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"42aacef1-abc5-9141-88f7-e509c27d175c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:12:12.217187Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/f1ceaa42-c5ab-4191-88f7-e509c27d175c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjFjZWFhNDItYzVhYi00MTkxLTg4ZjctZTUwOWMyN2QxNzVjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf103e87-cbf8-4037-bd6a-768001130ab1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "5265ab9d-80c5-4d7b-9fc4-357988cbdac6" + ], + "x-ms-request-id": [ + "4c670505-30f8-4112-aaa4-1105fe8bd80c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101444Z:5265ab9d-80c5-4d7b-9fc4-357988cbdac6" + ], + "Date": [ + "Thu, 24 Nov 2022 10:14:43 GMT" + ], + "Content-Length": [ + "125" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"42aacef1-abc5-9141-88f7-e509c27d175c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:12:12.217187Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/f1ceaa42-c5ab-4191-88f7-e509c27d175c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjFjZWFhNDItYzVhYi00MTkxLTg4ZjctZTUwOWMyN2QxNzVjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf103e87-cbf8-4037-bd6a-768001130ab1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "237c0011-d0dd-419b-b743-ef91d921fb42" + ], + "x-ms-request-id": [ + "79b1b3ee-7344-4883-9a5b-dd64f3f48556" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101514Z:237c0011-d0dd-419b-b743-ef91d921fb42" + ], + "Date": [ + "Thu, 24 Nov 2022 10:15:14 GMT" + ], + "Content-Length": [ + "125" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"42aacef1-abc5-9141-88f7-e509c27d175c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:12:12.217187Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/f1ceaa42-c5ab-4191-88f7-e509c27d175c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjFjZWFhNDItYzVhYi00MTkxLTg4ZjctZTUwOWMyN2QxNzVjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf103e87-cbf8-4037-bd6a-768001130ab1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "05c5bf1d-cf0c-47c9-a9bd-e92c9d43996b" + ], + "x-ms-request-id": [ + "4edc02a3-8ae4-4753-a13e-998bd955850d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101545Z:05c5bf1d-cf0c-47c9-a9bd-e92c9d43996b" + ], + "Date": [ + "Thu, 24 Nov 2022 10:15:45 GMT" + ], + "Content-Length": [ + "125" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"42aacef1-abc5-9141-88f7-e509c27d175c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:12:12.217187Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/f1ceaa42-c5ab-4191-88f7-e509c27d175c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjFjZWFhNDItYzVhYi00MTkxLTg4ZjctZTUwOWMyN2QxNzVjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf103e87-cbf8-4037-bd6a-768001130ab1" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "690b47d2-8ba8-4732-bf18-fd13afe808d3" + ], + "x-ms-request-id": [ + "964a54c5-52b9-496f-83fa-d9e7d0328afc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101615Z:690b47d2-8ba8-4732-bf18-fd13afe808d3" + ], + "Date": [ + "Thu, 24 Nov 2022 10:16:14 GMT" + ], + "Content-Length": [ + "169" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"42aacef1-abc5-9141-88f7-e509c27d175c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-11-24T10:12:12.217187Z\",\r\n \"endTime\": \"2022-11-24T10:15:45.6570254Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/70034cfb-5d8e-48a5-85ec-b0d89f511674?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzAwMzRjZmItNWQ4ZS00OGE1LTg1ZWMtYjBkODlmNTExNjc0P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e19c42ad-5b12-40f3-8327-afefcd62e24c" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "03363cec-560a-46fb-a21f-d8e5395dbea6" + ], + "x-ms-request-id": [ + "14256910-7f1b-4bb0-8af3-b92d5b0ee961" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101700Z:03363cec-560a-46fb-a21f-d8e5395dbea6" + ], + "Date": [ + "Thu, 24 Nov 2022 10:17:00 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"fb4c0370-8e5d-a548-85ec-b0d89f511674\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:16:25.9049471Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/70034cfb-5d8e-48a5-85ec-b0d89f511674?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzAwMzRjZmItNWQ4ZS00OGE1LTg1ZWMtYjBkODlmNTExNjc0P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e19c42ad-5b12-40f3-8327-afefcd62e24c" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "121a4bd1-bdf1-4468-b824-38e41ad1ea68" + ], + "x-ms-request-id": [ + "835d370d-3a5f-425a-9dab-7977e3650aad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101730Z:121a4bd1-bdf1-4468-b824-38e41ad1ea68" + ], + "Date": [ + "Thu, 24 Nov 2022 10:17:29 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"fb4c0370-8e5d-a548-85ec-b0d89f511674\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:16:25.9049471Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/70034cfb-5d8e-48a5-85ec-b0d89f511674?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzAwMzRjZmItNWQ4ZS00OGE1LTg1ZWMtYjBkODlmNTExNjc0P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e19c42ad-5b12-40f3-8327-afefcd62e24c" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "ff98eb1f-0ef1-4a5c-96c8-9a77d763d9b0" + ], + "x-ms-request-id": [ + "719f4e18-fa74-4ca1-a67a-273c12824347" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101801Z:ff98eb1f-0ef1-4a5c-96c8-9a77d763d9b0" + ], + "Date": [ + "Thu, 24 Nov 2022 10:18:00 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"fb4c0370-8e5d-a548-85ec-b0d89f511674\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:16:25.9049471Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/70034cfb-5d8e-48a5-85ec-b0d89f511674?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzAwMzRjZmItNWQ4ZS00OGE1LTg1ZWMtYjBkODlmNTExNjc0P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e19c42ad-5b12-40f3-8327-afefcd62e24c" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "c03cdd06-b25e-4dd8-99a5-95f019e02bf7" + ], + "x-ms-request-id": [ + "ab8cc476-3690-46fc-87bc-3af1b9e150ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101831Z:c03cdd06-b25e-4dd8-99a5-95f019e02bf7" + ], + "Date": [ + "Thu, 24 Nov 2022 10:18:30 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"fb4c0370-8e5d-a548-85ec-b0d89f511674\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-11-24T10:16:25.9049471Z\",\r\n \"endTime\": \"2022-11-24T10:18:07.9568212Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/default?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MC9hZ2VudFBvb2xzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84208497-75cc-4364-b2a6-fba955ce8b9a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "bc461d38-ed17-4c44-bcfa-dc316c13bb68" + ], + "x-ms-request-id": [ + "92150fd6-9431-40a6-a34c-d988af4752eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101838Z:bc461d38-ed17-4c44-bcfa-dc316c13bb68" + ], + "Date": [ + "Thu, 24 Nov 2022 10:18:38 GMT" + ], + "Content-Length": [ + "938" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"costcenter\": \"8888\",\r\n \"dept\": \"Finance\"\r\n },\r\n \"nodeLabels\": {\r\n \"app\": \"test\",\r\n \"environment\": \"dev\",\r\n \"someId\": \"124\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/default?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MC9hZ2VudFBvb2xzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84208497-75cc-4364-b2a6-fba955ce8b9a" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "ac002063-8124-430a-aa9b-21f83627855c" + ], + "x-ms-request-id": [ + "3ab39a83-40f2-4698-9832-6b9407ee0b6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101912Z:ac002063-8124-430a-aa9b-21f83627855c" + ], + "Date": [ + "Thu, 24 Nov 2022 10:19:11 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Cindy\",\r\n \"costcenter\": \"7777\",\r\n \"dept\": \"MM\"\r\n },\r\n \"nodeLabels\": {\r\n \"environment\": \"qa\",\r\n \"someId\": \"127\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/default?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MC9hZ2VudFBvb2xzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84208497-75cc-4364-b2a6-fba955ce8b9a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "617" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"mode\": \"System\",\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"tags\": {\r\n \"dept\": \"MM\",\r\n \"Admin\": \"Cindy\",\r\n \"costcenter\": \"7777\"\r\n },\r\n \"nodeLabels\": {\r\n \"tier\": \"frontend\",\r\n \"someId\": \"127\",\r\n \"environment\": \"qa\"\r\n },\r\n \"enableFIPS\": false\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "azure-asyncoperation": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/87e96a06-5cd6-4968-82b4-ecb54be9e039?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "d5117d3c-9d20-413e-8586-69ccbdd6bbb0" + ], + "x-ms-request-id": [ + "87e96a06-5cd6-4968-82b4-ecb54be9e039" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101841Z:d5117d3c-9d20-413e-8586-69ccbdd6bbb0" + ], + "Date": [ + "Thu, 24 Nov 2022 10:18:40 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270/agentPools/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\r\n \"properties\": {\r\n \"count\": 1,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"osDiskSizeGB\": 128,\r\n \"osDiskType\": \"Managed\",\r\n \"kubeletDiskType\": \"OS\",\r\n \"maxPods\": 30,\r\n \"type\": \"VirtualMachineScaleSets\",\r\n \"provisioningState\": \"Updating\",\r\n \"powerState\": {\r\n \"code\": \"Running\"\r\n },\r\n \"orchestratorVersion\": \"1.23.12\",\r\n \"currentOrchestratorVersion\": \"1.23.12\",\r\n \"tags\": {\r\n \"Admin\": \"Cindy\",\r\n \"costcenter\": \"7777\",\r\n \"dept\": \"MM\"\r\n },\r\n \"nodeLabels\": {\r\n \"environment\": \"qa\",\r\n \"someId\": \"127\",\r\n \"tier\": \"frontend\"\r\n },\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.11.02\",\r\n \"enableFIPS\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/87e96a06-5cd6-4968-82b4-ecb54be9e039?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOTZhMDYtNWNkNi00OTY4LTgyYjQtZWNiNTRiZTllMDM5P2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84208497-75cc-4364-b2a6-fba955ce8b9a" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ef4061fd-e711-4e0a-b66a-cba0486d7565" + ], + "x-ms-request-id": [ + "acee4d07-3fc1-4eed-af05-24c32648de08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101911Z:ef4061fd-e711-4e0a-b66a-cba0486d7565" + ], + "Date": [ + "Thu, 24 Nov 2022 10:19:10 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"066ae987-d65c-6849-82b4-ecb54be9e039\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-11-24T10:18:41.1081387Z\",\r\n \"endTime\": \"2022-11-24T10:18:51.1661241Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4941/providers/Microsoft.ContainerService/managedClusters/kubeps4270?api-version=2022-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0OTQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNDI3MD9hcGktdmVyc2lvbj0yMDIyLTA5LTAx", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b9b3a34-4463-4ca4-a7d6-f2f848121c27" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operationresults/34b42d5d-b38c-49cf-9740-8d6ada8405ed?api-version=2017-08-31" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "azure-asyncoperation": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/34b42d5d-b38c-49cf-9740-8d6ada8405ed?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "39306c60-e3f7-4683-a030-b093d8be7012" + ], + "x-ms-request-id": [ + "34b42d5d-b38c-49cf-9740-8d6ada8405ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101918Z:39306c60-e3f7-4683-a030-b093d8be7012" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 10:19:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/34b42d5d-b38c-49cf-9740-8d6ada8405ed?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzRiNDJkNWQtYjM4Yy00OWNmLTk3NDAtOGQ2YWRhODQwNWVkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b9b3a34-4463-4ca4-a7d6-f2f848121c27" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "274af90e-d75b-4073-b789-27b2af465964" + ], + "x-ms-request-id": [ + "0e4c677c-05d0-4747-83d9-1ed94c6a346b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T101949Z:274af90e-d75b-4073-b789-27b2af465964" + ], + "Date": [ + "Thu, 24 Nov 2022 10:19:48 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5d2db434-8cb3-cf49-9740-8d6ada8405ed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:19:18.4518879Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/34b42d5d-b38c-49cf-9740-8d6ada8405ed?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzRiNDJkNWQtYjM4Yy00OWNmLTk3NDAtOGQ2YWRhODQwNWVkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b9b3a34-4463-4ca4-a7d6-f2f848121c27" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "c9733126-3c9c-408e-b6e0-0b3fe914695c" + ], + "x-ms-request-id": [ + "2b2b5bb3-188d-4ca7-b2bb-eb336189c45d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102019Z:c9733126-3c9c-408e-b6e0-0b3fe914695c" + ], + "Date": [ + "Thu, 24 Nov 2022 10:20:18 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5d2db434-8cb3-cf49-9740-8d6ada8405ed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:19:18.4518879Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/34b42d5d-b38c-49cf-9740-8d6ada8405ed?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzRiNDJkNWQtYjM4Yy00OWNmLTk3NDAtOGQ2YWRhODQwNWVkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b9b3a34-4463-4ca4-a7d6-f2f848121c27" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "e0f9b9e2-8780-4b2c-bcd7-bbc1245eb8ac" + ], + "x-ms-request-id": [ + "6fdbb363-7224-41ba-a857-0920e74c4dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102049Z:e0f9b9e2-8780-4b2c-bcd7-bbc1245eb8ac" + ], + "Date": [ + "Thu, 24 Nov 2022 10:20:48 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5d2db434-8cb3-cf49-9740-8d6ada8405ed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:19:18.4518879Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/34b42d5d-b38c-49cf-9740-8d6ada8405ed?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzRiNDJkNWQtYjM4Yy00OWNmLTk3NDAtOGQ2YWRhODQwNWVkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b9b3a34-4463-4ca4-a7d6-f2f848121c27" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "944b6e6d-5bcf-4f04-97c8-c16067abb63d" + ], + "x-ms-request-id": [ + "f12b85c3-76ea-425e-bd0c-cdedaaad1bf5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102120Z:944b6e6d-5bcf-4f04-97c8-c16067abb63d" + ], + "Date": [ + "Thu, 24 Nov 2022 10:21:19 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5d2db434-8cb3-cf49-9740-8d6ada8405ed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:19:18.4518879Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/34b42d5d-b38c-49cf-9740-8d6ada8405ed?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzRiNDJkNWQtYjM4Yy00OWNmLTk3NDAtOGQ2YWRhODQwNWVkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b9b3a34-4463-4ca4-a7d6-f2f848121c27" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "3df14996-2e19-4da8-ad90-531cbeeebefa" + ], + "x-ms-request-id": [ + "0177ec8f-78e8-47e2-8b0f-9a01a76cbaa1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102150Z:3df14996-2e19-4da8-ad90-531cbeeebefa" + ], + "Date": [ + "Thu, 24 Nov 2022 10:21:49 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5d2db434-8cb3-cf49-9740-8d6ada8405ed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:19:18.4518879Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/34b42d5d-b38c-49cf-9740-8d6ada8405ed?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzRiNDJkNWQtYjM4Yy00OWNmLTk3NDAtOGQ2YWRhODQwNWVkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b9b3a34-4463-4ca4-a7d6-f2f848121c27" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "a4b4823b-f199-4c81-8e4c-0b0b463b9d9f" + ], + "x-ms-request-id": [ + "4f654432-dcaa-4952-b291-fd890e7dcd1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102221Z:a4b4823b-f199-4c81-8e4c-0b0b463b9d9f" + ], + "Date": [ + "Thu, 24 Nov 2022 10:22:20 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5d2db434-8cb3-cf49-9740-8d6ada8405ed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:19:18.4518879Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/34b42d5d-b38c-49cf-9740-8d6ada8405ed?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzRiNDJkNWQtYjM4Yy00OWNmLTk3NDAtOGQ2YWRhODQwNWVkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b9b3a34-4463-4ca4-a7d6-f2f848121c27" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "26cfc8d7-ae6c-416e-80f9-d9ae47440d6c" + ], + "x-ms-request-id": [ + "cbb5c124-26a5-413e-a72c-c8717421c6db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102251Z:26cfc8d7-ae6c-416e-80f9-d9ae47440d6c" + ], + "Date": [ + "Thu, 24 Nov 2022 10:22:51 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5d2db434-8cb3-cf49-9740-8d6ada8405ed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:19:18.4518879Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/34b42d5d-b38c-49cf-9740-8d6ada8405ed?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzRiNDJkNWQtYjM4Yy00OWNmLTk3NDAtOGQ2YWRhODQwNWVkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b9b3a34-4463-4ca4-a7d6-f2f848121c27" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "a022da29-8f82-4557-b47d-0420ee5ead07" + ], + "x-ms-request-id": [ + "cca44ac3-b6e8-4aaa-b15c-57122ded3ce6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102321Z:a022da29-8f82-4557-b47d-0420ee5ead07" + ], + "Date": [ + "Thu, 24 Nov 2022 10:23:21 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5d2db434-8cb3-cf49-9740-8d6ada8405ed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-11-24T10:19:18.4518879Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/34b42d5d-b38c-49cf-9740-8d6ada8405ed?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzRiNDJkNWQtYjM4Yy00OWNmLTk3NDAtOGQ2YWRhODQwNWVkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b9b3a34-4463-4ca4-a7d6-f2f848121c27" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "bdb48400-cbfa-4a09-a657-d287b99ff9b9" + ], + "x-ms-request-id": [ + "39880c02-0a6d-44be-a474-d0f72ec5bbde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102352Z:bdb48400-cbfa-4a09-a657-d287b99ff9b9" + ], + "Date": [ + "Thu, 24 Nov 2022 10:23:51 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5d2db434-8cb3-cf49-9740-8d6ada8405ed\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-11-24T10:19:18.4518879Z\",\r\n \"endTime\": \"2022-11-24T10:23:35.4631098Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operationresults/34b42d5d-b38c-49cf-9740-8d6ada8405ed?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnJlc3VsdHMvMzRiNDJkNWQtYjM4Yy00OWNmLTk3NDAtOGQ2YWRhODQwNWVkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b9b3a34-4463-4ca4-a7d6-f2f848121c27" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operationresults/34b42d5d-b38c-49cf-9740-8d6ada8405ed?api-version=2017-08-31" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "5a5b119a-2c1d-4e08-a32a-ae359ae1fe8e" + ], + "x-ms-request-id": [ + "4c0a5c4b-473e-46c8-98db-f0302f753659" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102352Z:5a5b119a-2c1d-4e08-a32a-ae359ae1fe8e" + ], + "Date": [ + "Thu, 24 Nov 2022 10:23:51 GMT" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4941?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JncHM0OTQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfa9eb0c-bcb7-4ad0-ab96-fe106e92e5a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDk0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "b1bd46dd-964b-4be5-856a-3ee1fceb2356" + ], + "x-ms-correlation-request-id": [ + "b1bd46dd-964b-4be5-856a-3ee1fceb2356" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102359Z:b1bd46dd-964b-4be5-856a-3ee1fceb2356" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 10:23:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDk0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EazBNUzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDk0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "7aa92331-0c6b-4108-925d-f780e9fe126f" + ], + "x-ms-correlation-request-id": [ + "7aa92331-0c6b-4108-925d-f780e9fe126f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102414Z:7aa92331-0c6b-4108-925d-f780e9fe126f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 10:24:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDk0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EazBNUzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDk0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "bef8cb96-6662-4918-a4d9-892fa4cd52d7" + ], + "x-ms-correlation-request-id": [ + "bef8cb96-6662-4918-a4d9-892fa4cd52d7" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102430Z:bef8cb96-6662-4918-a4d9-892fa4cd52d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 10:24:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDk0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EazBNUzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDk0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "e225c884-0dcf-46f4-9762-a5f210ce01d2" + ], + "x-ms-correlation-request-id": [ + "e225c884-0dcf-46f4-9762-a5f210ce01d2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102445Z:e225c884-0dcf-46f4-9762-a5f210ce01d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 10:24:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDk0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EazBNUzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDk0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "e9c6bacf-c2eb-41de-b74d-f69663d3df22" + ], + "x-ms-correlation-request-id": [ + "e9c6bacf-c2eb-41de-b74d-f69663d3df22" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102501Z:e9c6bacf-c2eb-41de-b74d-f69663d3df22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 10:25:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDk0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EazBNUzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "9be393d8-0708-48b8-9f1b-ff06e9446fe0" + ], + "x-ms-correlation-request-id": [ + "9be393d8-0708-48b8-9f1b-ff06e9446fe0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102516Z:9be393d8-0708-48b8-9f1b-ff06e9446fe0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 10:25:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDk0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EazBNUzFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.51102", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.64" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "e6389dfc-8c8b-47f4-8cd6-734e1efc1ab4" + ], + "x-ms-correlation-request-id": [ + "e6389dfc-8c8b-47f4-8cd6-734e1efc1ab4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20221124T102517Z:e6389dfc-8c8b-47f4-8cd6-734e1efc1ab4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Nov 2022 10:25:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-NodeLabels-Tags": [ + "ps4941", + "ps4270" + ] + }, + "Variables": { + "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + } +} \ No newline at end of file diff --git a/src/Aks/Aks/ChangeLog.md b/src/Aks/Aks/ChangeLog.md index fc5bf2ebc07a..147affb1141f 100644 --- a/src/Aks/Aks/ChangeLog.md +++ b/src/Aks/Aks/ChangeLog.md @@ -19,9 +19,11 @@ --> ## Upcoming Release * Bumped API version to 2022-09-01 -* Added parameter `NodeOsSKU` for `New-AzAksCluster` and parameter `OsSKU` for `New-AzAksNodePool` -* Added parameter `Mode` for `New-AzAksNodePool` and `Update-AzAksNodePool` -* Added property `NodeImageVersion` for the output of `Get-AzAksNodePool`[#19893] +* Added parameter `-NodeOsSKU` for `New-AzAksCluster` and parameter `-OsSKU` for `New-AzAksNodePool` +* Added parameter `-Mode` for `New-AzAksNodePool` and `Update-AzAksNodePool` +* Added property `-NodeImageVersion` for the output of `Get-AzAksNodePool`[#19893] +* Added parameter `-NodePoolLabel` for `Set-AzAksCluster`, `-NodeLabel` for `New-AzAksNodePool` and `Update-AzAksNodePool` +* Added parameter `-NodePoolTag` for `New-AzAksCluster` and `Set-AzAksCluster`, `-Tag` for `New-AzAksNodePool` and `Update-AzAksNodePool` ## Version 5.0.1 * Upgraded AutoMapper to Microsoft.Azure.PowerShell.AutoMapper 6.2.2 with fix [#18721] diff --git a/src/Aks/Aks/Commands/CreateOrUpdateKubeBase.cs b/src/Aks/Aks/Commands/CreateOrUpdateKubeBase.cs index 9be591db57f6..b73dbe8b631d 100644 --- a/src/Aks/Aks/Commands/CreateOrUpdateKubeBase.cs +++ b/src/Aks/Aks/Commands/CreateOrUpdateKubeBase.cs @@ -24,7 +24,6 @@ using Microsoft.Azure.Management.ContainerService.Models; using Microsoft.Azure.Commands.Aks.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Commands.ResourceManager.Common.Tags; using Microsoft.Azure.Management.Authorization.Version2015_07_01; using Microsoft.Azure.Management.Authorization.Version2015_07_01.Models; using Microsoft.Azure.Management.Internal.Resources; @@ -35,7 +34,6 @@ using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.Rest.Azure.OData; using Microsoft.Azure.Management.Internal.Resources.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Microsoft.Azure.Commands.Common.Exceptions; using Microsoft.Azure.Commands.Common.MSGraph.Version1_0.Applications.Models; using Microsoft.Azure.Commands.Common.MSGraph.Version1_0.Applications; @@ -111,6 +109,12 @@ public abstract class CreateOrUpdateKubeBase : KubeCmdletBase [Parameter(Mandatory = false, HelpMessage = "The size of the Virtual Machine. Default value is Standard_D2_v2")] public string NodeVmSize { get; set; } = "Standard_D2_v2"; + [Parameter(Mandatory = false, HelpMessage = "Node pool labels used for building Kubernetes network.")] + public Hashtable NodePoolLabel { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The tags to be persisted on the agent pool virtual machine scale set.")] + public Hashtable NodePoolTag { get; set; } + [Parameter( Mandatory = false, HelpMessage = "SSH key file value or key file path. Defaults to {HOME}/.ssh/id_rsa.pub.")] diff --git a/src/Aks/Aks/Commands/NewAzureRmAks.cs b/src/Aks/Aks/Commands/NewAzureRmAks.cs index e8334079b5e1..33a9d5d65238 100644 --- a/src/Aks/Aks/Commands/NewAzureRmAks.cs +++ b/src/Aks/Aks/Commands/NewAzureRmAks.cs @@ -113,10 +113,6 @@ public class NewAzureRmAks : CreateOrUpdateKubeBase [Parameter(Mandatory = false, HelpMessage = "Docker bridge cidr used for building Kubernetes network.")] public string DockerBridgeCidr { get; set; } - [Parameter(Mandatory = false, HelpMessage = "Node pool labels used for building Kubernetes network.")] - - public Hashtable NodePoolLabel { get; set; } - [Parameter(Mandatory = false, HelpMessage = "Aks custom headers used for building Kubernetes network.")] public Hashtable AksCustomHeader { get; set; } @@ -500,6 +496,14 @@ private ManagedClusterAgentPoolProfile GetAgentPoolProfile() defaultAgentPoolProfile.NodeLabels.Add(key.ToString(), NodePoolLabel[key].ToString()); } } + if (this.IsParameterBound(c => c.NodePoolTag)) + { + defaultAgentPoolProfile.Tags = new Dictionary(); + foreach (var key in NodePoolTag.Keys) + { + defaultAgentPoolProfile.Tags.Add(key.ToString(), NodePoolTag[key].ToString()); + } + } if (this.IsParameterBound(c => c.AvailabilityZone)) { defaultAgentPoolProfile.AvailabilityZones = AvailabilityZone; diff --git a/src/Aks/Aks/Commands/NewAzureRmAksNodePool.cs b/src/Aks/Aks/Commands/NewAzureRmAksNodePool.cs index 9359cc2a9558..cee975c326df 100644 --- a/src/Aks/Aks/Commands/NewAzureRmAksNodePool.cs +++ b/src/Aks/Aks/Commands/NewAzureRmAksNodePool.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using System; +using System.Collections.Generic; using System.Management.Automation; using Microsoft.Azure.Commands.Aks.Models; @@ -194,6 +195,22 @@ private AgentPool GetAgentPool() { agentPool.AvailabilityZones = AvailabilityZone; } + if (this.IsParameterBound(c => c.NodeLabel)) + { + agentPool.NodeLabels = new Dictionary(); + foreach (var key in NodeLabel.Keys) + { + agentPool.NodeLabels.Add(key.ToString(), NodeLabel[key].ToString()); + } + } + if (this.IsParameterBound(c => c.Tag)) + { + agentPool.Tags = new Dictionary(); + foreach (var key in Tag.Keys) + { + agentPool.Tags.Add(key.ToString(), Tag[key].ToString()); + } + } return agentPool; } diff --git a/src/Aks/Aks/Commands/NewOrUpdateAgentPoolBase.cs b/src/Aks/Aks/Commands/NewOrUpdateAgentPoolBase.cs index fcffbaf6e246..5eac76ae56a4 100644 --- a/src/Aks/Aks/Commands/NewOrUpdateAgentPoolBase.cs +++ b/src/Aks/Aks/Commands/NewOrUpdateAgentPoolBase.cs @@ -13,6 +13,9 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Newtonsoft.Json; +using System.Collections; +using System.Collections.Generic; using System.Management.Automation; namespace Microsoft.Azure.Commands.Aks @@ -38,5 +41,11 @@ public class NewOrUpdateAgentPoolBase : KubeCmdletBase [Parameter(Mandatory = false, HelpMessage = "The pool mode")] [PSArgumentCompleter("System", "User")] public string Mode { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Node pool labels used for building Kubernetes network.")] + public Hashtable NodeLabel { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The tags to be persisted on the agent pool virtual machine scale set.")] + public Hashtable Tag { get; set; } } } diff --git a/src/Aks/Aks/Commands/SetAzureRmAks.cs b/src/Aks/Aks/Commands/SetAzureRmAks.cs index c25c4a9b090b..1e385bedf22f 100644 --- a/src/Aks/Aks/Commands/SetAzureRmAks.cs +++ b/src/Aks/Aks/Commands/SetAzureRmAks.cs @@ -269,6 +269,23 @@ public override void ExecuteCmdlet() WriteVerbose(Resources.UpdatingNodePoolMode); defaultAgentPoolProfile.Mode = NodePoolMode; } + if (this.IsParameterBound(c => c.NodePoolLabel)) + { + WriteVerbose(Resources.UpdatingNodePoolLabels); + defaultAgentPoolProfile.NodeLabels = new Dictionary(); + foreach (var key in NodePoolLabel.Keys) + { + defaultAgentPoolProfile.NodeLabels.Add(key.ToString(), NodePoolLabel[key].ToString()); + } + } + if (this.IsParameterBound(c => c.NodePoolTag)) + { + defaultAgentPoolProfile.Tags = new Dictionary(); + foreach (var key in NodePoolTag.Keys) + { + defaultAgentPoolProfile.Tags.Add(key.ToString(), NodePoolTag[key].ToString()); + } + } } if (this.IsParameterBound(c => c.KubernetesVersion) && this.IsParameterBound(c => c.NodeImageOnly)) @@ -441,7 +458,8 @@ private bool NeedUpdateNodeAgentPool() return this.IsParameterBound(c => c.NodeCount) || this.IsParameterBound(c => c.NodeOsDiskSize) || this.IsParameterBound(c => c.NodeVmSize) || this.IsParameterBound(c => c.EnableNodeAutoScaling) || this.IsParameterBound(c => c.NodeMinCount) || this.IsParameterBound(c => c.NodeMaxCount) || - this.IsParameterBound(c => c.NodePoolMode); + this.IsParameterBound(c => c.NodePoolMode) || this.IsParameterBound(c => c.NodePoolLabel) || + this.IsParameterBound(c => c.NodePoolTag); } } } diff --git a/src/Aks/Aks/Commands/UpdateAzureRmAksNodePool.cs b/src/Aks/Aks/Commands/UpdateAzureRmAksNodePool.cs index 9abb491e3a69..e69c26b17e3c 100644 --- a/src/Aks/Aks/Commands/UpdateAzureRmAksNodePool.cs +++ b/src/Aks/Aks/Commands/UpdateAzureRmAksNodePool.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using System; +using System.Collections.Generic; using System.Management.Automation; using Microsoft.Azure.Commands.Aks.Models; using Microsoft.Azure.Commands.Aks.Properties; @@ -163,6 +164,22 @@ public override void ExecuteCmdlet() WriteObject(PSMapper.Instance.Map(upgradedPool)); return; } + if (this.IsParameterBound(c => c.NodeLabel)) + { + pool.NodeLabels = new Dictionary(); + foreach (var key in NodeLabel.Keys) + { + pool.NodeLabels.Add(key.ToString(), NodeLabel[key].ToString()); + } + } + if (this.IsParameterBound(c => c.Tag)) + { + pool.Tags = new Dictionary(); + foreach (var key in Tag.Keys) + { + pool.Tags.Add(key.ToString(), Tag[key].ToString()); + } + } var updatedPool = Client.AgentPools.CreateOrUpdate(ResourceGroupName, ClusterName, Name, pool); WriteObject(PSMapper.Instance.Map(updatedPool)); diff --git a/src/Aks/Aks/Models/PSNodePool.cs b/src/Aks/Aks/Models/PSNodePool.cs index 23cd974cbbe9..945dc812df05 100644 --- a/src/Aks/Aks/Models/PSNodePool.cs +++ b/src/Aks/Aks/Models/PSNodePool.cs @@ -12,6 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Management.ContainerService.Models; using System.Collections.Generic; namespace Microsoft.Azure.Commands.Aks.Models @@ -95,12 +96,38 @@ public partial class PSNodePool : PSSubResource /// public int? OsDiskSizeGB { get; set; } + /// + /// Gets or sets possible values include: 'Managed', 'Ephemeral' + /// + public string OsDiskType { get; set; } + + /// + /// Gets or sets possible values include: 'OS', 'Temporary' + /// + public string KubeletDiskType { get; set; } + + /// + /// Gets or sets possible values include: 'OCIContainer', 'WasmWasi' + /// + public string WorkloadRuntime { get; set; } + /// /// Gets or sets vNet SubnetID specifies the VNet's subnet identifier. /// public string VnetSubnetID { get; set; } + /// + /// Gets or sets the ID of the subnet which pods will join when + /// launched. + /// + /// + /// If omitted, pod IPs are statically assigned on the node subnet (see + /// vnetSubnetID for more details). This is of the form: + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName} + /// + public string PodSubnetID { get; set; } + /// /// Gets or sets maximum number of pods that can run on a node. /// @@ -139,6 +166,18 @@ public partial class PSNodePool : PSSubResource public bool? EnableAutoScaling { get; set; } + /// + /// Gets or sets the scale down mode to use when scaling the Agent + /// Pool. + /// + /// + /// This also effects the cluster autoscaler behavior. If not + /// specified, it defaults to Delete. Possible values include: + /// 'Delete', 'Deallocate' + /// + public string ScaleDownMode { get; set; } + + /// /// Gets or sets mode for agent pool System or User /// @@ -159,11 +198,27 @@ public partial class PSNodePool : PSSubResource public string OrchestratorVersion { get; set; } + /// + /// Gets the version of Kubernetes the Agent Pool is running. + /// + /// + /// If orchestratorVersion is a fully specified version + /// (major.minor.patch), this field will be exactly equal to it. If + /// orchestratorVersion is (major.minor), this field will contain the + /// full (major.minor.patch) version being used. + /// + public string CurrentOrchestratorVersion { get; private set; } + /// /// Gets the version of node image /// public string NodeImageVersion { get; private set; } + /// + /// Gets or sets settings for upgrading the agentpool + /// + public AgentPoolUpgradeSettings UpgradeSettings { get; set; } + /// /// Gets the current deployment or provisioning state, which only /// appears in the response. @@ -171,6 +226,18 @@ public partial class PSNodePool : PSSubResource public string ProvisioningState { get; private set; } + /// + /// Gets or sets whether the Agent Pool is running or stopped. + /// + /// + /// When an Agent Pool is first created it is initially Running. The + /// Agent Pool can be stopped by setting this field to Stopped. A + /// stopped Agent Pool stops all of its VMs and does not accrue billing + /// charges. An Agent Pool can only be stopped if it is Running and + /// provisioning state is Succeeded + /// + public PowerState PowerState { get; set; } + /// /// Gets or sets (PREVIEW) Availability zones for nodes. Must use /// VirtualMachineScaleSets AgentPoolType. @@ -184,6 +251,16 @@ public partial class PSNodePool : PSSubResource public bool? EnableNodePublicIP { get; set; } + /// + /// Gets or sets the public IP prefix ID which VM nodes should use IPs + /// from. + /// + /// + /// This is of the form: + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName} + /// + public string NodePublicIPPrefixID { get; set; } + /// /// Gets or sets scaleSetPriority to be used to specify virtual machine /// scale set priority. Default to regular. Possible values include: @@ -200,6 +277,32 @@ public partial class PSNodePool : PSSubResource public string ScaleSetEvictionPolicy { get; set; } + /// + /// Gets or sets the max price (in US Dollars) you are willing to pay + /// for spot instances. Possible values are any decimal value greater + /// than zero or -1 which indicates default price to be up-to + /// on-demand. + /// + /// + /// Possible values are any decimal value greater than zero or -1 which + /// indicates the willingness to pay any on-demand price. For more + /// details on spot pricing, see [spot VMs + /// pricing](https://docs.microsoft.com/azure/virtual-machines/spot-vms#pricing) + /// + public double? SpotMaxPrice { get; set; } + + /// + /// Gets or sets the tags to be persisted on the agent pool virtual + /// machine scale set. + /// + public IDictionary Tags { get; set; } + + /// + /// Gets or sets the node labels to be persisted across all nodes in + /// agent pool. + /// + public IDictionary NodeLabels { get; set; } + /// /// Gets or sets taints added to new nodes during node pool create and /// scale. For example, key=value:NoSchedule. @@ -207,5 +310,72 @@ public partial class PSNodePool : PSSubResource public IList NodeTaints { get; set; } + /// + /// Gets or sets the ID for Proximity Placement Group. + /// + public string ProximityPlacementGroupID { get; set; } + + /// + /// Gets or sets the Kubelet configuration on the agent pool nodes. + /// + public KubeletConfig KubeletConfig { get; set; } + + /// + /// Gets or sets the OS configuration of Linux agent nodes. + /// + public LinuxOSConfig LinuxOSConfig { get; set; } + + /// + /// Gets or sets whether to enable host based OS and data drive + /// encryption. + /// + /// + /// This is only supported on certain VM sizes and in certain Azure + /// regions. For more information, see: + /// https://docs.microsoft.com/azure/aks/enable-host-encryption + /// + public bool? EnableEncryptionAtHost { get; set; } + + /// + /// Gets or sets whether to enable UltraSSD + /// + public bool? EnableUltraSSD { get; set; } + + /// + /// Gets or sets whether to use a FIPS-enabled OS. + /// + /// + /// See [Add a FIPS-enabled node + /// pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#add-a-fips-enabled-node-pool-preview) + /// for more details. + /// + public bool? EnableFIPS { get; set; } + + /// + /// Gets or sets gPUInstanceProfile to be used to specify GPU MIG + /// instance profile for supported GPU VM SKU. Possible values include: + /// 'MIG1g', 'MIG2g', 'MIG3g', 'MIG4g', 'MIG7g' + /// + public string GpuInstanceProfile { get; set; } + + /// + /// Gets or sets creationData to be used to specify the source Snapshot + /// ID if the node pool will be created/upgraded using a snapshot. + /// + public CreationData CreationData { get; set; } + + /// + /// Gets or sets the fully qualified resource ID of the Dedicated Host + /// Group to provision virtual machines from, used only in creation + /// scenario and not allowed to changed once set. + /// + /// + /// This is of the form: + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. + /// For more information see [Azure dedicated + /// hosts](https://docs.microsoft.com/azure/virtual-machines/dedicated-hosts). + /// + public string HostGroupID { get; set; } + } } diff --git a/src/Aks/Aks/Properties/Resources.Designer.cs b/src/Aks/Aks/Properties/Resources.Designer.cs index c7b1bfe61f54..1d697b862c74 100644 --- a/src/Aks/Aks/Properties/Resources.Designer.cs +++ b/src/Aks/Aks/Properties/Resources.Designer.cs @@ -942,6 +942,15 @@ internal static string UpdatingNodeOsDiskSize { } } + /// + /// Looks up a localized string similar to Updating node pool labels. + /// + internal static string UpdatingNodePoolLabels { + get { + return ResourceManager.GetString("UpdatingNodePoolLabels", resourceCulture); + } + } + /// /// Looks up a localized string similar to Updating NodePoolMode.. /// diff --git a/src/Aks/Aks/Properties/Resources.resx b/src/Aks/Aks/Properties/Resources.resx index 3a2b833d27c2..a070658425da 100644 --- a/src/Aks/Aks/Properties/Resources.resx +++ b/src/Aks/Aks/Properties/Resources.resx @@ -456,4 +456,7 @@ Please set '-EnableManagedIdentity' first if you want to set 'AssignIdentity'. + + Updating node pool labels + \ No newline at end of file diff --git a/src/Aks/Aks/help/New-AzAksCluster.md b/src/Aks/Aks/help/New-AzAksCluster.md index 0eb9e24431cf..a93ac15d787f 100644 --- a/src/Aks/Aks/help/New-AzAksCluster.md +++ b/src/Aks/Aks/help/New-AzAksCluster.md @@ -23,20 +23,20 @@ New-AzAksCluster [-NodeVmSetType ] [-NodeVnetSubnetID ] [-NodeMa [-SubnetName ] [-EnableRbac] [-WindowsProfileAdminUserName ] [-WindowsProfileAdminUserPassword ] [-NetworkPlugin ] [-NetworkPolicy ] [-PodCidr ] [-ServiceCidr ] [-DnsServiceIP ] [-DockerBridgeCidr ] - [-NodePoolLabel ] [-AksCustomHeader ] [-LoadBalancerSku ] [-Force] - [-GenerateSshKey] [-EnableNodePublicIp] [-NodePublicIPPrefixID ] [-AvailabilityZone ] - [-NodeResourceGroup ] [-ResourceGroupName] [-Name] - [[-ServicePrincipalIdAndSecret] ] [-Location ] [-LinuxProfileAdminUserName ] - [-DnsNamePrefix ] [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] - [-NodeMaxCount ] [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] - [-NodeVmSize ] [-SshKeyValue ] [-AcrNameToAttach ] [-AsJob] [-Tag ] - [-LoadBalancerAllocatedOutboundPort ] [-LoadBalancerManagedOutboundIpCount ] - [-LoadBalancerOutboundIp ] [-LoadBalancerOutboundIpPrefix ] - [-LoadBalancerIdleTimeoutInMinute ] [-ApiServerAccessAuthorizedIpRange ] - [-EnableApiServerAccessPrivateCluster] [-ApiServerAccessPrivateDnsZone ] - [-EnableApiServerAccessPrivateClusterPublicFQDN] [-FqdnSubdomain ] [-EnableManagedIdentity] - [-AssignIdentity ] [-AutoUpgradeChannel ] [-DiskEncryptionSetID ] - [-DisableLocalAccount] [-HttpProxy ] [-HttpsProxy ] + [-AksCustomHeader ] [-LoadBalancerSku ] [-Force] [-GenerateSshKey] [-EnableNodePublicIp] + [-NodePublicIPPrefixID ] [-AvailabilityZone ] [-NodeResourceGroup ] + [-ResourceGroupName] [-Name] [[-ServicePrincipalIdAndSecret] ] + [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] + [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] + [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ] + [-NodePoolLabel ] [-NodePoolTag ] [-SshKeyValue ] [-AcrNameToAttach ] + [-AsJob] [-Tag ] [-LoadBalancerAllocatedOutboundPort ] + [-LoadBalancerManagedOutboundIpCount ] [-LoadBalancerOutboundIp ] + [-LoadBalancerOutboundIpPrefix ] [-LoadBalancerIdleTimeoutInMinute ] + [-ApiServerAccessAuthorizedIpRange ] [-EnableApiServerAccessPrivateCluster] + [-ApiServerAccessPrivateDnsZone ] [-EnableApiServerAccessPrivateClusterPublicFQDN] + [-FqdnSubdomain ] [-EnableManagedIdentity] [-AssignIdentity ] [-AutoUpgradeChannel ] + [-DiskEncryptionSetID ] [-DisableLocalAccount] [-HttpProxy ] [-HttpsProxy ] [-HttpProxyConfigNoProxyEndpoint ] [-HttpProxyConfigTrustedCa ] [-DefaultProfile ] [-WhatIf] [-Confirm] [-SubscriptionId ] [] @@ -802,6 +802,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -NodePoolTag +The tags to be persisted on the agent pool virtual machine scale set. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -NodePublicIPPrefixID The resource Id of public IP prefix for node pool. diff --git a/src/Aks/Aks/help/New-AzAksNodePool.md b/src/Aks/Aks/help/New-AzAksNodePool.md index 4693017c900e..2423cb1e52d3 100644 --- a/src/Aks/Aks/help/New-AzAksNodePool.md +++ b/src/Aks/Aks/help/New-AzAksNodePool.md @@ -19,8 +19,8 @@ New-AzAksNodePool -ResourceGroupName -ClusterName -Name ] [-EnableNodePublicIp] [-NodePublicIPPrefixID ] [-ScaleSetPriority ] [-ScaleSetEvictionPolicy ] [-VmSetType ] [-AvailabilityZone ] [-Force] [-KubernetesVersion ] [-MinCount ] [-MaxCount ] [-EnableAutoScaling] [-Mode ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [-SubscriptionId ] - [] + [-NodeLabel ] [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [-SubscriptionId ] [] ``` ### ParentObjectParameterSet @@ -30,8 +30,8 @@ New-AzAksNodePool -Name -ClusterObject [-Count ] [-ScaleSetPriority ] [-ScaleSetEvictionPolicy ] [-VmSetType ] [-AvailabilityZone ] [-Force] [-KubernetesVersion ] [-MinCount ] [-MaxCount ] [-EnableAutoScaling] [-Mode ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [-SubscriptionId ] - [] + [-NodeLabel ] [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [-SubscriptionId ] [] ``` ## DESCRIPTION @@ -263,6 +263,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -NodeLabel +Node pool labels used for building Kubernetes network. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -NodePublicIPPrefixID The resource Id of public IP prefix for node pool. @@ -389,6 +404,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Tag +The tags to be persisted on the agent pool virtual machine scale set. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -VmSetType Represents types of an node pool. Possible values include: 'VirtualMachineScaleSets', 'AvailabilitySet' diff --git a/src/Aks/Aks/help/Set-AzAksCluster.md b/src/Aks/Aks/help/Set-AzAksCluster.md index 915e46eff7c2..aa8015b0cdf8 100644 --- a/src/Aks/Aks/help/Set-AzAksCluster.md +++ b/src/Aks/Aks/help/Set-AzAksCluster.md @@ -19,14 +19,14 @@ Set-AzAksCluster [-NodePoolMode ] [-AcrNameToDetach ] [-NodeImag [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ] - [-SshKeyValue ] [-AcrNameToAttach ] [-AsJob] [-Tag ] - [-LoadBalancerAllocatedOutboundPort ] [-LoadBalancerManagedOutboundIpCount ] - [-LoadBalancerOutboundIp ] [-LoadBalancerOutboundIpPrefix ] - [-LoadBalancerIdleTimeoutInMinute ] [-ApiServerAccessAuthorizedIpRange ] - [-EnableApiServerAccessPrivateCluster] [-ApiServerAccessPrivateDnsZone ] - [-EnableApiServerAccessPrivateClusterPublicFQDN] [-FqdnSubdomain ] [-EnableManagedIdentity] - [-AssignIdentity ] [-AutoUpgradeChannel ] [-DiskEncryptionSetID ] - [-DisableLocalAccount] [-HttpProxy ] [-HttpsProxy ] + [-NodePoolLabel ] [-NodePoolTag ] [-SshKeyValue ] [-AcrNameToAttach ] + [-AsJob] [-Tag ] [-LoadBalancerAllocatedOutboundPort ] + [-LoadBalancerManagedOutboundIpCount ] [-LoadBalancerOutboundIp ] + [-LoadBalancerOutboundIpPrefix ] [-LoadBalancerIdleTimeoutInMinute ] + [-ApiServerAccessAuthorizedIpRange ] [-EnableApiServerAccessPrivateCluster] + [-ApiServerAccessPrivateDnsZone ] [-EnableApiServerAccessPrivateClusterPublicFQDN] + [-FqdnSubdomain ] [-EnableManagedIdentity] [-AssignIdentity ] [-AutoUpgradeChannel ] + [-DiskEncryptionSetID ] [-DisableLocalAccount] [-HttpProxy ] [-HttpsProxy ] [-HttpProxyConfigNoProxyEndpoint ] [-HttpProxyConfigTrustedCa ] [-DefaultProfile ] [-WhatIf] [-Confirm] [-SubscriptionId ] [] @@ -38,14 +38,14 @@ Set-AzAksCluster -InputObject [-NodePoolMode ] [-A [-NodeImageOnly] [-ControlPlaneOnly] [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] - [-NodeVmSize ] [-SshKeyValue ] [-AcrNameToAttach ] [-AsJob] [-Tag ] - [-LoadBalancerAllocatedOutboundPort ] [-LoadBalancerManagedOutboundIpCount ] - [-LoadBalancerOutboundIp ] [-LoadBalancerOutboundIpPrefix ] - [-LoadBalancerIdleTimeoutInMinute ] [-ApiServerAccessAuthorizedIpRange ] - [-EnableApiServerAccessPrivateCluster] [-ApiServerAccessPrivateDnsZone ] - [-EnableApiServerAccessPrivateClusterPublicFQDN] [-FqdnSubdomain ] [-EnableManagedIdentity] - [-AssignIdentity ] [-AutoUpgradeChannel ] [-DiskEncryptionSetID ] - [-DisableLocalAccount] [-HttpProxy ] [-HttpsProxy ] + [-NodeVmSize ] [-NodePoolLabel ] [-NodePoolTag ] [-SshKeyValue ] + [-AcrNameToAttach ] [-AsJob] [-Tag ] [-LoadBalancerAllocatedOutboundPort ] + [-LoadBalancerManagedOutboundIpCount ] [-LoadBalancerOutboundIp ] + [-LoadBalancerOutboundIpPrefix ] [-LoadBalancerIdleTimeoutInMinute ] + [-ApiServerAccessAuthorizedIpRange ] [-EnableApiServerAccessPrivateCluster] + [-ApiServerAccessPrivateDnsZone ] [-EnableApiServerAccessPrivateClusterPublicFQDN] + [-FqdnSubdomain ] [-EnableManagedIdentity] [-AssignIdentity ] [-AutoUpgradeChannel ] + [-DiskEncryptionSetID ] [-DisableLocalAccount] [-HttpProxy ] [-HttpsProxy ] [-HttpProxyConfigNoProxyEndpoint ] [-HttpProxyConfigTrustedCa ] [-DefaultProfile ] [-WhatIf] [-Confirm] [-SubscriptionId ] [] @@ -57,14 +57,14 @@ Set-AzAksCluster [-NodePoolMode ] [-AcrNameToDetach ] [-NodeImag [-Id] [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ] - [-SshKeyValue ] [-AcrNameToAttach ] [-AsJob] [-Tag ] - [-LoadBalancerAllocatedOutboundPort ] [-LoadBalancerManagedOutboundIpCount ] - [-LoadBalancerOutboundIp ] [-LoadBalancerOutboundIpPrefix ] - [-LoadBalancerIdleTimeoutInMinute ] [-ApiServerAccessAuthorizedIpRange ] - [-EnableApiServerAccessPrivateCluster] [-ApiServerAccessPrivateDnsZone ] - [-EnableApiServerAccessPrivateClusterPublicFQDN] [-FqdnSubdomain ] [-EnableManagedIdentity] - [-AssignIdentity ] [-AutoUpgradeChannel ] [-DiskEncryptionSetID ] - [-DisableLocalAccount] [-HttpProxy ] [-HttpsProxy ] + [-NodePoolLabel ] [-NodePoolTag ] [-SshKeyValue ] [-AcrNameToAttach ] + [-AsJob] [-Tag ] [-LoadBalancerAllocatedOutboundPort ] + [-LoadBalancerManagedOutboundIpCount ] [-LoadBalancerOutboundIp ] + [-LoadBalancerOutboundIpPrefix ] [-LoadBalancerIdleTimeoutInMinute ] + [-ApiServerAccessAuthorizedIpRange ] [-EnableApiServerAccessPrivateCluster] + [-ApiServerAccessPrivateDnsZone ] [-EnableApiServerAccessPrivateClusterPublicFQDN] + [-FqdnSubdomain ] [-EnableManagedIdentity] [-AssignIdentity ] [-AutoUpgradeChannel ] + [-DiskEncryptionSetID ] [-DisableLocalAccount] [-HttpProxy ] [-HttpsProxy ] [-HttpProxyConfigNoProxyEndpoint ] [-HttpProxyConfigTrustedCa ] [-DefaultProfile ] [-WhatIf] [-Confirm] [-SubscriptionId ] [] @@ -655,6 +655,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -NodePoolLabel +Node pool labels used for building Kubernetes network. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -NodePoolMode NodePoolMode represents mode of an node pool. @@ -670,6 +685,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -NodePoolTag +The tags to be persisted on the agent pool virtual machine scale set. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -NodeVmSize The size of the Virtual Machine. diff --git a/src/Aks/Aks/help/Update-AzAksNodePool.md b/src/Aks/Aks/help/Update-AzAksNodePool.md index 3d852d500f00..251d5c1984d0 100644 --- a/src/Aks/Aks/help/Update-AzAksNodePool.md +++ b/src/Aks/Aks/help/Update-AzAksNodePool.md @@ -16,32 +16,33 @@ Update node pool in a managed cluster. ``` Update-AzAksNodePool -ResourceGroupName -ClusterName -Name [-NodeCount ] [-NodeImageOnly] [-AsJob] [-Force] [-KubernetesVersion ] [-MinCount ] [-MaxCount ] - [-EnableAutoScaling] [-Mode ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [-SubscriptionId ] [] + [-EnableAutoScaling] [-Mode ] [-NodeLabel ] [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [-SubscriptionId ] + [] ``` ### ParentObjectParameterSet ``` Update-AzAksNodePool -Name -ClusterObject [-NodeCount ] [-NodeImageOnly] [-AsJob] [-Force] [-KubernetesVersion ] [-MinCount ] [-MaxCount ] [-EnableAutoScaling] - [-Mode ] [-DefaultProfile ] [-WhatIf] [-Confirm] [-SubscriptionId ] - [] + [-Mode ] [-NodeLabel ] [-Tag ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [-SubscriptionId ] [] ``` ### InputObjectParameterSet ``` Update-AzAksNodePool -InputObject [-NodeCount ] [-NodeImageOnly] [-AsJob] [-Force] [-KubernetesVersion ] [-MinCount ] [-MaxCount ] [-EnableAutoScaling] [-Mode ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [-SubscriptionId ] - [] + [-NodeLabel ] [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [-SubscriptionId ] [] ``` ### IdParameterSet ``` Update-AzAksNodePool -Id [-NodeCount ] [-NodeImageOnly] [-AsJob] [-Force] [-KubernetesVersion ] [-MinCount ] [-MaxCount ] [-EnableAutoScaling] [-Mode ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [-SubscriptionId ] - [] + [-NodeLabel ] [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [-SubscriptionId ] [] ``` ## DESCRIPTION @@ -281,6 +282,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -NodeLabel +Node pool labels used for building Kubernetes network. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group. @@ -313,6 +329,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Tag +The tags to be persisted on the agent pool virtual machine scale set. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet.