diff --git a/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.cs b/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.cs index 6b4be2a2d72f..244a2409ca14 100644 --- a/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.cs +++ b/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.cs @@ -198,5 +198,12 @@ public void TestPodSubnetID() { TestRunner.RunTestScript("Test-PodSubnetID"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestEnableOidcIssuer() + { + TestRunner.RunTestScript("Test-EnableOidcIssuer"); + } } } \ 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 6fb25ccfd13c..5fb55c01f073 100644 --- a/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.ps1 +++ b/src/Aks/Aks.Test/ScenarioTests/KubernetesTests.ps1 @@ -1161,4 +1161,36 @@ function Test-PodSubnetID { finally { Remove-AzResourceGroup -Name $resourceGroupName -Force } +} + +function Test-EnableOidcIssuer { + # Setup + $resourceGroupName = Get-RandomResourceGroupName + $kubeClusterName1 = Get-RandomClusterName + $kubeClusterName2 = Get-RandomClusterName + $location = 'eastus' + $nodeVmSize = "Standard_D2_v2" + + try { + New-AzResourceGroup -Name $resourceGroupName -Location $location + + New-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName1 -NodeVmSize $nodeVmSize -NodeCount 1 -EnableOidcIssuer + $cluster1 = Get-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName1 + Assert-True {$cluster1.OidcIssuerProfile.Enabled} + Assert-True {$cluster1.OidcIssuerProfile.IssuerURL.StartsWith("https://eastus.oic.prod-aks.azure.com")} + + New-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName2 -NodeCount 1 + $cluster2 = Get-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName2 + Assert-False {$cluster2.OidcIssuerProfile.Enabled} + Assert-Null $cluster2.OidcIssuerProfile.IssuerURL + + Set-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName2 -EnableOidcIssuer + $cluster2 = Get-AzAksCluster -ResourceGroupName $resourceGroupName -Name $kubeClusterName2 + Assert-True {$cluster2.OidcIssuerProfile.Enabled} + Assert-True {$cluster2.OidcIssuerProfile.IssuerURL.StartsWith("https://eastus.oic.prod-aks.azure.com")} + + } + 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/TestEnableOidcIssuer.json b/src/Aks/Aks.Test/SessionRecords/Commands.Aks.Test.ScenarioTests.KubernetesTests/TestEnableOidcIssuer.json new file mode 100644 index 000000000000..066fc0e635c6 --- /dev/null +++ b/src/Aks/Aks.Test/SessionRecords/Commands.Aks.Test.ScenarioTests.KubernetesTests/TestEnableOidcIssuer.json @@ -0,0 +1,4499 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JncHM0NTMzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5006533-f771-4ff9-a2bc-5b217308fb4e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ], + "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": [ + "3408a528-dd05-42f2-8607-6d0013de9260" + ], + "x-ms-correlation-request-id": [ + "3408a528-dd05-42f2-8607-6d0013de9260" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023420Z:3408a528-dd05-42f2-8607-6d0013de9260" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:34:20 GMT" + ], + "Content-Length": [ + "169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533\",\r\n \"name\": \"rgps4533\",\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/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNzkwMD9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a0a1ba-490d-46a0-9b90-46da38ebf66d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "05bdef2a-9bf1-4dc6-99a9-741a56775830" + ], + "x-ms-correlation-request-id": [ + "05bdef2a-9bf1-4dc6-99a9-741a56775830" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023420Z:05bdef2a-9bf1-4dc6-99a9-741a56775830" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:34:20 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/kubeps7900' under resource group 'rgps4533' 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/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNzkwMD9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a0a1ba-490d-46a0-9b90-46da38ebf66d" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023806Z:620226b0-7390-4eff-96a5-60952100d6dc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "620226b0-7390-4eff-96a5-60952100d6dc" + ], + "x-ms-request-id": [ + "acab0430-3780-4a46-ad02-b69fd56c3b6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:38:05 GMT" + ], + "Content-Length": [ + "3555" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps7900\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-mpx6xbol.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-mpx6xbol.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps7900_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps7900_eastus/providers/Microsoft.Network/publicIPAddresses/7206a86f-38ea-47d8-a53a-3e6702d8cf72\"\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\": true,\r\n \"issuerURL\": \"https://eastus.oic.prod-aks.azure.com/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/cd84eca5-bead-4f0e-a9a2-fb8458c1c505/\"\r\n },\r\n \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNzkwMD9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "379b2da6-be98-4763-b237-87ca08de98dc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023808Z:849702d0-fd73-4b3e-ab21-21744f974f4f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "849702d0-fd73-4b3e-ab21-21744f974f4f" + ], + "x-ms-request-id": [ + "fa5f7f83-f5dc-4482-b010-6b1d8080a4ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:38:08 GMT" + ], + "Content-Length": [ + "3555" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps7900\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-mpx6xbol.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-mpx6xbol.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps7900_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps7900_eastus/providers/Microsoft.Network/publicIPAddresses/7206a86f-38ea-47d8-a53a-3e6702d8cf72\"\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\": true,\r\n \"issuerURL\": \"https://eastus.oic.prod-aks.azure.com/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/cd84eca5-bead-4f0e-a9a2-fb8458c1c505/\"\r\n },\r\n \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNzkwMD9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "849c1541-ee22-408f-a38b-5e9bbaff6154" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023810Z:8c10ed22-7595-4836-ac03-b017a2fcc5d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "8c10ed22-7595-4836-ac03-b017a2fcc5d1" + ], + "x-ms-request-id": [ + "61bd70c1-2d7b-4bed-8054-0915a2c45ee1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:38:09 GMT" + ], + "Content-Length": [ + "3555" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps7900\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-mpx6xbol.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-mpx6xbol.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps7900_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps7900_eastus/providers/Microsoft.Network/publicIPAddresses/7206a86f-38ea-47d8-a53a-3e6702d8cf72\"\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\": true,\r\n \"issuerURL\": \"https://eastus.oic.prod-aks.azure.com/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/cd84eca5-bead-4f0e-a9a2-fb8458c1c505/\"\r\n },\r\n \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNzkwMD9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "849c1541-ee22-408f-a38b-5e9bbaff6154" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023810Z:9d0a03a7-76e5-4f24-b1e6-224fb27396a5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "9d0a03a7-76e5-4f24-b1e6-224fb27396a5" + ], + "x-ms-request-id": [ + "93b7359e-56b3-4c6f-991b-9ee5f8d215de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:38:10 GMT" + ], + "Content-Length": [ + "3555" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps7900\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-mpx6xbol.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-mpx6xbol.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps7900_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps7900_eastus/providers/Microsoft.Network/publicIPAddresses/7206a86f-38ea-47d8-a53a-3e6702d8cf72\"\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\": true,\r\n \"issuerURL\": \"https://eastus.oic.prod-aks.azure.com/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/cd84eca5-bead-4f0e-a9a2-fb8458c1c505/\"\r\n },\r\n \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNzkwMD9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "849c1541-ee22-408f-a38b-5e9bbaff6154" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024020Z:233c1e6e-eb13-40d1-b730-44ae0278e785" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "233c1e6e-eb13-40d1-b730-44ae0278e785" + ], + "x-ms-request-id": [ + "a575be2b-bf30-4f1a-a156-f066a5158480" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:40:20 GMT" + ], + "Content-Length": [ + "3555" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps7900\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-mpx6xbol.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-mpx6xbol.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps7900_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps7900_eastus/providers/Microsoft.Network/publicIPAddresses/7206a86f-38ea-47d8-a53a-3e6702d8cf72\"\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\": true,\r\n \"issuerURL\": \"https://eastus.oic.prod-aks.azure.com/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/cd84eca5-bead-4f0e-a9a2-fb8458c1c505/\"\r\n },\r\n \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNzkwMD9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "acb66763-9839-4738-98ff-2ba306c42b93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024022Z:ac3ade40-1d77-4e26-9fbe-b73e40fc66c8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "ac3ade40-1d77-4e26-9fbe-b73e40fc66c8" + ], + "x-ms-request-id": [ + "55e74b78-40c7-490d-a3f0-d638c805f44a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:40:21 GMT" + ], + "Content-Length": [ + "3555" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps7900\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-mpx6xbol.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-mpx6xbol.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps7900_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps7900_eastus/providers/Microsoft.Network/publicIPAddresses/7206a86f-38ea-47d8-a53a-3e6702d8cf72\"\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\": true,\r\n \"issuerURL\": \"https://eastus.oic.prod-aks.azure.com/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/cd84eca5-bead-4f0e-a9a2-fb8458c1c505/\"\r\n },\r\n \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JncHM0NTMzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a0a1ba-490d-46a0-9b90-46da38ebf66d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1b82f32f-e130-4980-a4be-42bd9d740860" + ], + "x-ms-correlation-request-id": [ + "1b82f32f-e130-4980-a4be-42bd9d740860" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023421Z:1b82f32f-e130-4980-a4be-42bd9d740860" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:34:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "169" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533\",\r\n \"name\": \"rgps4533\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JncHM0NTMzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f01fffd4-ed38-4833-9db7-689dc84b54da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "aeaf3876-2e98-430f-b7fb-b2ca8f9788b5" + ], + "x-ms-correlation-request-id": [ + "aeaf3876-2e98-430f-b7fb-b2ca8f9788b5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024023Z:aeaf3876-2e98-430f-b7fb-b2ca8f9788b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:40:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "169" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533\",\r\n \"name\": \"rgps4533\",\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": [ + "45a0a1ba-490d-46a0-9b90-46da38ebf66d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "77ac4831-b0b1-4c4d-b5d1-b393a26dee25" + ], + "x-ms-correlation-request-id": [ + "77ac4831-b0b1-4c4d-b5d1-b393a26dee25" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023421Z:77ac4831-b0b1-4c4d-b5d1-b393a26dee25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:34:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "16896" + ] + }, + "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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-01-02-preview\",\r\n \"2022-11-02-preview\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 India\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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 \"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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 India\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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 \"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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-01-02-preview\",\r\n \"2022-11-02-preview\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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/providers/Microsoft.ContainerService?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f01fffd4-ed38-4833-9db7-689dc84b54da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "e616b74f-9a83-4bca-bef5-b1aa7a2ad909" + ], + "x-ms-correlation-request-id": [ + "e616b74f-9a83-4bca-bef5-b1aa7a2ad909" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024023Z:e616b74f-9a83-4bca-bef5-b1aa7a2ad909" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:40:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "16896" + ] + }, + "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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-01-02-preview\",\r\n \"2022-11-02-preview\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 India\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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 \"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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 India\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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 \"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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-01-02-preview\",\r\n \"2022-11-02-preview\",\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 \"Poland Central\",\r\n \"Qatar Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\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 \"2023-02-02-preview\",\r\n \"2023-02-01\",\r\n \"2023-01-02-preview\",\r\n \"2023-01-01\",\r\n \"2022-11-02-preview\",\r\n \"2022-11-01\",\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/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNzkwMD9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a0a1ba-490d-46a0-9b90-46da38ebf66d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1562" + ] + }, + "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 }\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 \"oidcIssuerProfile\": {\r\n \"enabled\": true\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:20230404T023430Z:9a9843fe-7392-45ec-a884-4194826b7bcf" + ], + "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/ee2648ed-9c3f-4a55-8db7-33d98d78fe8e?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "9a9843fe-7392-45ec-a884-4194826b7bcf" + ], + "x-ms-request-id": [ + "ee2648ed-9c3f-4a55-8db7-33d98d78fe8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:34:30 GMT" + ], + "Content-Length": [ + "3303" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps7900\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-mpx6xbol.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-mpx6xbol.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps7900_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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\": true,\r\n \"issuerURL\": \"https://eastus.oic.prod-aks.azure.com/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/cd84eca5-bead-4f0e-a9a2-fb8458c1c505/\"\r\n },\r\n \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzNzkwMD9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "849c1541-ee22-408f-a38b-5e9bbaff6154" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3003" + ] + }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"kubernetesVersion\": \"1.24.9\",\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 \"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\": true\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4533_kubeps7900_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps7900_eastus/providers/Microsoft.Network/publicIPAddresses/7206a86f-38ea-47d8-a53a-3e6702d8cf72\"\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 \"workloadAutoScalerProfile\": {}\r\n },\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023817Z:676036a4-4747-4645-a3e5-020027cecc43" + ], + "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/23d31403-ed79-4d2b-a223-2e062be4e8c1?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "676036a4-4747-4645-a3e5-020027cecc43" + ], + "x-ms-request-id": [ + "23d31403-ed79-4d2b-a223-2e062be4e8c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:38:17 GMT" + ], + "Content-Length": [ + "3553" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps7900\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps7900\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-mpx6xbol.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-mpx6xbol.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps7900_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps7900_eastus/providers/Microsoft.Network/publicIPAddresses/7206a86f-38ea-47d8-a53a-3e6702d8cf72\"\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\": true,\r\n \"issuerURL\": \"https://eastus.oic.prod-aks.azure.com/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/cd84eca5-bead-4f0e-a9a2-fb8458c1c505/\"\r\n },\r\n \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ee2648ed-9c3f-4a55-8db7-33d98d78fe8e?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWUyNjQ4ZWQtOWMzZi00YTU1LThkYjctMzNkOThkNzhmZThlP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a0a1ba-490d-46a0-9b90-46da38ebf66d" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "e8720380-dabb-44f9-8e29-e238624c7786" + ], + "x-ms-request-id": [ + "e2f4e244-c1bc-499f-807a-75c4de2ea543" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023502Z:e8720380-dabb-44f9-8e29-e238624c7786" + ], + "Date": [ + "Tue, 04 Apr 2023 02:35:01 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ed4826ee-3f9c-554a-8db7-33d98d78fe8e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:34:29.4743266Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ee2648ed-9c3f-4a55-8db7-33d98d78fe8e?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWUyNjQ4ZWQtOWMzZi00YTU1LThkYjctMzNkOThkNzhmZThlP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a0a1ba-490d-46a0-9b90-46da38ebf66d" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "e6cec09b-a7e1-414e-ac69-6af181684f4a" + ], + "x-ms-request-id": [ + "6421903f-945f-4153-bae3-1904c25d87ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023532Z:e6cec09b-a7e1-414e-ac69-6af181684f4a" + ], + "Date": [ + "Tue, 04 Apr 2023 02:35:32 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ed4826ee-3f9c-554a-8db7-33d98d78fe8e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:34:29.4743266Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ee2648ed-9c3f-4a55-8db7-33d98d78fe8e?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWUyNjQ4ZWQtOWMzZi00YTU1LThkYjctMzNkOThkNzhmZThlP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a0a1ba-490d-46a0-9b90-46da38ebf66d" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "ee8b7072-7943-4e4c-89ba-44c9941dc7f8" + ], + "x-ms-request-id": [ + "773213b0-fed1-466d-884a-7cfb66e65c79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023603Z:ee8b7072-7943-4e4c-89ba-44c9941dc7f8" + ], + "Date": [ + "Tue, 04 Apr 2023 02:36:02 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ed4826ee-3f9c-554a-8db7-33d98d78fe8e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:34:29.4743266Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ee2648ed-9c3f-4a55-8db7-33d98d78fe8e?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWUyNjQ4ZWQtOWMzZi00YTU1LThkYjctMzNkOThkNzhmZThlP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a0a1ba-490d-46a0-9b90-46da38ebf66d" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "ef5b1270-c25c-4bc2-b79e-ad307f6686ca" + ], + "x-ms-request-id": [ + "8dd87d7a-8485-4609-a79c-b309b12058bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023633Z:ef5b1270-c25c-4bc2-b79e-ad307f6686ca" + ], + "Date": [ + "Tue, 04 Apr 2023 02:36:32 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ed4826ee-3f9c-554a-8db7-33d98d78fe8e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:34:29.4743266Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ee2648ed-9c3f-4a55-8db7-33d98d78fe8e?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWUyNjQ4ZWQtOWMzZi00YTU1LThkYjctMzNkOThkNzhmZThlP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a0a1ba-490d-46a0-9b90-46da38ebf66d" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "40453901-8beb-4a42-906f-4560f78788ef" + ], + "x-ms-request-id": [ + "f661e634-0928-407d-9c6a-c0cfe74f69f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023703Z:40453901-8beb-4a42-906f-4560f78788ef" + ], + "Date": [ + "Tue, 04 Apr 2023 02:37:03 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ed4826ee-3f9c-554a-8db7-33d98d78fe8e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:34:29.4743266Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ee2648ed-9c3f-4a55-8db7-33d98d78fe8e?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWUyNjQ4ZWQtOWMzZi00YTU1LThkYjctMzNkOThkNzhmZThlP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a0a1ba-490d-46a0-9b90-46da38ebf66d" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "96563425-f47e-4dcb-9990-00a07ced9cad" + ], + "x-ms-request-id": [ + "fbc38775-e644-47ea-8eef-8bbbf25d4f51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023734Z:96563425-f47e-4dcb-9990-00a07ced9cad" + ], + "Date": [ + "Tue, 04 Apr 2023 02:37:34 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ed4826ee-3f9c-554a-8db7-33d98d78fe8e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:34:29.4743266Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/ee2648ed-9c3f-4a55-8db7-33d98d78fe8e?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWUyNjQ4ZWQtOWMzZi00YTU1LThkYjctMzNkOThkNzhmZThlP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a0a1ba-490d-46a0-9b90-46da38ebf66d" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "819cc56d-ffd4-4de0-bd7c-95d9e81830c5" + ], + "x-ms-request-id": [ + "dabb2a5e-f669-4e9b-8f39-c7f2eaa5bf56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023804Z:819cc56d-ffd4-4de0-bd7c-95d9e81830c5" + ], + "Date": [ + "Tue, 04 Apr 2023 02:38:04 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ed4826ee-3f9c-554a-8db7-33d98d78fe8e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-04-04T02:34:29.4743266Z\",\r\n \"endTime\": \"2023-04-04T02:37:53.2505909Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/23d31403-ed79-4d2b-a223-2e062be4e8c1?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjNkMzE0MDMtZWQ3OS00ZDJiLWEyMjMtMmUwNjJiZTRlOGMxP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "849c1541-ee22-408f-a38b-5e9bbaff6154" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "9d6f7af7-9e24-4045-b32a-93840b1da28f" + ], + "x-ms-request-id": [ + "dbcef679-1d76-4b24-a8c8-26953227f25f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023848Z:9d6f7af7-9e24-4045-b32a-93840b1da28f" + ], + "Date": [ + "Tue, 04 Apr 2023 02:38:47 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"0314d323-79ed-2b4d-a223-2e062be4e8c1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:38:15.0683051Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/23d31403-ed79-4d2b-a223-2e062be4e8c1?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjNkMzE0MDMtZWQ3OS00ZDJiLWEyMjMtMmUwNjJiZTRlOGMxP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "849c1541-ee22-408f-a38b-5e9bbaff6154" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "52f2b960-1292-478e-adec-810d4183720e" + ], + "x-ms-request-id": [ + "e4793362-3db3-455c-a8dd-b765b72ca55b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023918Z:52f2b960-1292-478e-adec-810d4183720e" + ], + "Date": [ + "Tue, 04 Apr 2023 02:39:18 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"0314d323-79ed-2b4d-a223-2e062be4e8c1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:38:15.0683051Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/23d31403-ed79-4d2b-a223-2e062be4e8c1?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjNkMzE0MDMtZWQ3OS00ZDJiLWEyMjMtMmUwNjJiZTRlOGMxP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "849c1541-ee22-408f-a38b-5e9bbaff6154" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "434258cc-31b7-4a79-80ca-5caaacc81e0f" + ], + "x-ms-request-id": [ + "9aeae984-b1f1-41d0-b777-d1d1e580508a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T023949Z:434258cc-31b7-4a79-80ca-5caaacc81e0f" + ], + "Date": [ + "Tue, 04 Apr 2023 02:39:48 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"0314d323-79ed-2b4d-a223-2e062be4e8c1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:38:15.0683051Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/23d31403-ed79-4d2b-a223-2e062be4e8c1?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjNkMzE0MDMtZWQ3OS00ZDJiLWEyMjMtMmUwNjJiZTRlOGMxP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "849c1541-ee22-408f-a38b-5e9bbaff6154" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "0adeb877-8ca2-4954-bfb5-f54a80170ef6" + ], + "x-ms-request-id": [ + "62faa001-b5d4-4ca5-be04-a50dd32a67d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024019Z:0adeb877-8ca2-4954-bfb5-f54a80170ef6" + ], + "Date": [ + "Tue, 04 Apr 2023 02:40:18 GMT" + ], + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"0314d323-79ed-2b4d-a223-2e062be4e8c1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-04-04T02:38:15.0683051Z\",\r\n \"endTime\": \"2023-04-04T02:40:13.66779Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzMzc5Mz9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f01fffd4-ed38-4833-9db7-689dc84b54da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "47550d42-70c0-4c91-9dda-3017827d595a" + ], + "x-ms-correlation-request-id": [ + "47550d42-70c0-4c91-9dda-3017827d595a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024023Z:47550d42-70c0-4c91-9dda-3017827d595a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:40:22 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/kubeps3793' under resource group 'rgps4533' 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/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzMzc5Mz9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f01fffd4-ed38-4833-9db7-689dc84b54da" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024335Z:d59caea2-8755-43cc-a599-2f439dff5aae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "d59caea2-8755-43cc-a599-2f439dff5aae" + ], + "x-ms-request-id": [ + "d749888d-e64f-4bad-a447-6d218a3ab384" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:43:35 GMT" + ], + "Content-Length": [ + "3423" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps3793\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-h42iq47k.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-h42iq47k.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps3793_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps3793_eastus/providers/Microsoft.Network/publicIPAddresses/e633bd91-2264-4c49-a793-390748e9c70a\"\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 \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzMzc5Mz9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37d6e624-bc44-40f3-9c54-f749af37b381" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024337Z:3dfd2e64-736d-43f1-a736-d1f8ff23e953" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "3dfd2e64-736d-43f1-a736-d1f8ff23e953" + ], + "x-ms-request-id": [ + "7b9040c6-c1d9-44d0-877a-8c75e10bae9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:43:36 GMT" + ], + "Content-Length": [ + "3423" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps3793\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-h42iq47k.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-h42iq47k.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps3793_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps3793_eastus/providers/Microsoft.Network/publicIPAddresses/e633bd91-2264-4c49-a793-390748e9c70a\"\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 \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzMzc5Mz9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "add57d6f-6720-4a5d-bb8c-85cc45a7ed13" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024340Z:99df1ffd-3ef9-48cb-9456-0b9349538767" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "99df1ffd-3ef9-48cb-9456-0b9349538767" + ], + "x-ms-request-id": [ + "46e63166-a000-4a85-94e0-0e925008f16b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:43:40 GMT" + ], + "Content-Length": [ + "3423" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps3793\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-h42iq47k.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-h42iq47k.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps3793_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps3793_eastus/providers/Microsoft.Network/publicIPAddresses/e633bd91-2264-4c49-a793-390748e9c70a\"\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 \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzMzc5Mz9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "add57d6f-6720-4a5d-bb8c-85cc45a7ed13" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024341Z:557ce82b-978d-4680-8ee4-4d8f06736438" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "557ce82b-978d-4680-8ee4-4d8f06736438" + ], + "x-ms-request-id": [ + "7ec09559-1ec5-4089-90ad-89a288dfaed9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:43:41 GMT" + ], + "Content-Length": [ + "3423" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps3793\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-h42iq47k.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-h42iq47k.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps3793_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps3793_eastus/providers/Microsoft.Network/publicIPAddresses/e633bd91-2264-4c49-a793-390748e9c70a\"\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 \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzMzc5Mz9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "add57d6f-6720-4a5d-bb8c-85cc45a7ed13" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024621Z:a1ddf6e7-f734-420e-bac7-de264f48e18a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "a1ddf6e7-f734-420e-bac7-de264f48e18a" + ], + "x-ms-request-id": [ + "2c6dd13b-58bc-4604-a0a6-b8c249b9331e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:46:21 GMT" + ], + "Content-Length": [ + "3555" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps3793\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-h42iq47k.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-h42iq47k.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps3793_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps3793_eastus/providers/Microsoft.Network/publicIPAddresses/e633bd91-2264-4c49-a793-390748e9c70a\"\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\": true,\r\n \"issuerURL\": \"https://eastus.oic.prod-aks.azure.com/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/93de08f1-471d-4c61-a34a-dab3f6837db3/\"\r\n },\r\n \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzMzc5Mz9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee6317b8-88ae-4ea3-bb70-98f7b1db671a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024623Z:8cb6af19-c4e7-4c2c-8288-b856eda5d4e5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "8cb6af19-c4e7-4c2c-8288-b856eda5d4e5" + ], + "x-ms-request-id": [ + "d0f8c4b5-14bd-478b-8224-a6fbb0775afd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:46:22 GMT" + ], + "Content-Length": [ + "3555" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps3793\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-h42iq47k.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-h42iq47k.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps3793_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps3793_eastus/providers/Microsoft.Network/publicIPAddresses/e633bd91-2264-4c49-a793-390748e9c70a\"\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\": true,\r\n \"issuerURL\": \"https://eastus.oic.prod-aks.azure.com/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/93de08f1-471d-4c61-a34a-dab3f6837db3/\"\r\n },\r\n \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzMzc5Mz9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f01fffd4-ed38-4833-9db7-689dc84b54da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1503" + ] + }, + "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 }\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:20230404T024032Z:00fb0242-31b1-4edf-a01e-c5d151db3eb4" + ], + "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/6e546882-e4ae-4825-a87d-71650ad2ce3c?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "00fb0242-31b1-4edf-a01e-c5d151db3eb4" + ], + "x-ms-request-id": [ + "6e546882-e4ae-4825-a87d-71650ad2ce3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:40:31 GMT" + ], + "Content-Length": [ + "3171" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps3793\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-h42iq47k.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-h42iq47k.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps3793_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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 \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JncHM0NTMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9tYW5hZ2VkQ2x1c3RlcnMva3ViZXBzMzc5Mz9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "add57d6f-6720-4a5d-bb8c-85cc45a7ed13" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3003" + ] + }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"kubernetesVersion\": \"1.24.9\",\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 \"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\": true\r\n },\r\n \"nodeResourceGroup\": \"MC_rgps4533_kubeps3793_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps3793_eastus/providers/Microsoft.Network/publicIPAddresses/e633bd91-2264-4c49-a793-390748e9c70a\"\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 \"workloadAutoScalerProfile\": {}\r\n },\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024348Z:49fb2a24-e41a-45e8-a34d-f05f554e4dcd" + ], + "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/c4148235-0c6b-491e-bfab-e05e711ac94d?api-version=2017-08-31" + ], + "x-ms-correlation-request-id": [ + "49fb2a24-e41a-45e8-a34d-f05f554e4dcd" + ], + "x-ms-request-id": [ + "c4148235-0c6b-491e-bfab-e05e711ac94d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Tue, 04 Apr 2023 02:43:48 GMT" + ], + "Content-Length": [ + "3553" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533/providers/Microsoft.ContainerService/managedClusters/kubeps3793\",\r\n \"location\": \"eastus\",\r\n \"name\": \"kubeps3793\",\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.24.9\",\r\n \"currentKubernetesVersion\": \"1.24.9\",\r\n \"dnsPrefix\": \"kubep0b1f\",\r\n \"fqdn\": \"kubep0b1f-h42iq47k.hcp.eastus.azmk8s.io\",\r\n \"azurePortalFQDN\": \"kubep0b1f-h42iq47k.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.24.9\",\r\n \"currentOrchestratorVersion\": \"1.24.9\",\r\n \"mode\": \"System\",\r\n \"osType\": \"Linux\",\r\n \"osSKU\": \"Ubuntu\",\r\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-202303.13.0\",\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_rgps4533_kubeps3793_eastus\",\r\n \"enableRBAC\": true,\r\n \"networkProfile\": {\r\n \"networkPlugin\": \"azure\",\r\n \"networkDataplane\": \"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_rgps4533_kubeps3793_eastus/providers/Microsoft.Network/publicIPAddresses/e633bd91-2264-4c49-a793-390748e9c70a\"\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\": true,\r\n \"issuerURL\": \"https://eastus.oic.prod-aks.azure.com/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/93de08f1-471d-4c61-a34a-dab3f6837db3/\"\r\n },\r\n \"workloadAutoScalerProfile\": {}\r\n },\r\n \"sku\": {\r\n \"name\": \"Base\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/6e546882-e4ae-4825-a87d-71650ad2ce3c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmU1NDY4ODItZTRhZS00ODI1LWE4N2QtNzE2NTBhZDJjZTNjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f01fffd4-ed38-4833-9db7-689dc84b54da" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "2ffabd00-edb7-4e26-a6cd-975454fb067b" + ], + "x-ms-request-id": [ + "12659c65-42a6-4762-a8e4-f0cf4a0b533c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024103Z:2ffabd00-edb7-4e26-a6cd-975454fb067b" + ], + "Date": [ + "Tue, 04 Apr 2023 02:41:02 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8268546e-aee4-2548-a87d-71650ad2ce3c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:40:30.8666164Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/6e546882-e4ae-4825-a87d-71650ad2ce3c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmU1NDY4ODItZTRhZS00ODI1LWE4N2QtNzE2NTBhZDJjZTNjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f01fffd4-ed38-4833-9db7-689dc84b54da" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "06bb89ee-390b-4b23-9f54-491f2d0d5a73" + ], + "x-ms-request-id": [ + "26e56719-8638-40d9-aa60-d30b9e1a820c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024133Z:06bb89ee-390b-4b23-9f54-491f2d0d5a73" + ], + "Date": [ + "Tue, 04 Apr 2023 02:41:32 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8268546e-aee4-2548-a87d-71650ad2ce3c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:40:30.8666164Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/6e546882-e4ae-4825-a87d-71650ad2ce3c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmU1NDY4ODItZTRhZS00ODI1LWE4N2QtNzE2NTBhZDJjZTNjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f01fffd4-ed38-4833-9db7-689dc84b54da" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "2df2a8ed-6237-4189-ab43-f8c1e59239b8" + ], + "x-ms-request-id": [ + "66d8f3bd-1a12-4394-9810-476469d5c14c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024203Z:2df2a8ed-6237-4189-ab43-f8c1e59239b8" + ], + "Date": [ + "Tue, 04 Apr 2023 02:42:03 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8268546e-aee4-2548-a87d-71650ad2ce3c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:40:30.8666164Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/6e546882-e4ae-4825-a87d-71650ad2ce3c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmU1NDY4ODItZTRhZS00ODI1LWE4N2QtNzE2NTBhZDJjZTNjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f01fffd4-ed38-4833-9db7-689dc84b54da" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "3b1478fe-a1b0-442e-878c-2b37966a6ef0" + ], + "x-ms-request-id": [ + "02bcc5fc-30d7-4295-83ef-5bb2f3f724c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024234Z:3b1478fe-a1b0-442e-878c-2b37966a6ef0" + ], + "Date": [ + "Tue, 04 Apr 2023 02:42:33 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8268546e-aee4-2548-a87d-71650ad2ce3c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:40:30.8666164Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/6e546882-e4ae-4825-a87d-71650ad2ce3c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmU1NDY4ODItZTRhZS00ODI1LWE4N2QtNzE2NTBhZDJjZTNjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f01fffd4-ed38-4833-9db7-689dc84b54da" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "dc21981f-d58d-4885-a61a-6d7140ceabf9" + ], + "x-ms-request-id": [ + "82fd07f9-0b3f-4216-901f-591e05cb6f14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024304Z:dc21981f-d58d-4885-a61a-6d7140ceabf9" + ], + "Date": [ + "Tue, 04 Apr 2023 02:43:03 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8268546e-aee4-2548-a87d-71650ad2ce3c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:40:30.8666164Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/6e546882-e4ae-4825-a87d-71650ad2ce3c?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmU1NDY4ODItZTRhZS00ODI1LWE4N2QtNzE2NTBhZDJjZTNjP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f01fffd4-ed38-4833-9db7-689dc84b54da" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "46c5862e-3b6a-4846-abf5-25e0f75fd95f" + ], + "x-ms-request-id": [ + "da60837d-54f1-4bff-9ff3-b05a3783411d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024334Z:46c5862e-3b6a-4846-abf5-25e0f75fd95f" + ], + "Date": [ + "Tue, 04 Apr 2023 02:43:34 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8268546e-aee4-2548-a87d-71650ad2ce3c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-04-04T02:40:30.8666164Z\",\r\n \"endTime\": \"2023-04-04T02:43:21.2036513Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/c4148235-0c6b-491e-bfab-e05e711ac94d?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzQxNDgyMzUtMGM2Yi00OTFlLWJmYWItZTA1ZTcxMWFjOTRkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "add57d6f-6720-4a5d-bb8c-85cc45a7ed13" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "bd3e402d-9331-499f-8323-822855348e02" + ], + "x-ms-request-id": [ + "7a155aea-31bc-4ed7-9233-3274f722dc41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024418Z:bd3e402d-9331-499f-8323-822855348e02" + ], + "Date": [ + "Tue, 04 Apr 2023 02:44:18 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"358214c4-6b0c-1e49-bfab-e05e711ac94d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:43:45.4304603Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/c4148235-0c6b-491e-bfab-e05e711ac94d?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzQxNDgyMzUtMGM2Yi00OTFlLWJmYWItZTA1ZTcxMWFjOTRkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "add57d6f-6720-4a5d-bb8c-85cc45a7ed13" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "ec821d30-1280-4ca3-adbf-d0d349efba17" + ], + "x-ms-request-id": [ + "f34022e3-4f3d-4eb2-8963-f9a9849d4caf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024449Z:ec821d30-1280-4ca3-adbf-d0d349efba17" + ], + "Date": [ + "Tue, 04 Apr 2023 02:44:49 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"358214c4-6b0c-1e49-bfab-e05e711ac94d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:43:45.4304603Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/c4148235-0c6b-491e-bfab-e05e711ac94d?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzQxNDgyMzUtMGM2Yi00OTFlLWJmYWItZTA1ZTcxMWFjOTRkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "add57d6f-6720-4a5d-bb8c-85cc45a7ed13" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "5b0e31ab-d5d4-401a-9955-62dc55c9a99a" + ], + "x-ms-request-id": [ + "4ca37eb9-2bbd-4f0f-b3bf-f2273fee94ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024519Z:5b0e31ab-d5d4-401a-9955-62dc55c9a99a" + ], + "Date": [ + "Tue, 04 Apr 2023 02:45:19 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"358214c4-6b0c-1e49-bfab-e05e711ac94d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:43:45.4304603Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/c4148235-0c6b-491e-bfab-e05e711ac94d?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzQxNDgyMzUtMGM2Yi00OTFlLWJmYWItZTA1ZTcxMWFjOTRkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "add57d6f-6720-4a5d-bb8c-85cc45a7ed13" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "4e303e5c-b395-4eb6-bf11-18f54976f52d" + ], + "x-ms-request-id": [ + "67a7a574-d8bb-4b24-ada1-dd1e5fb7ea21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024549Z:4e303e5c-b395-4eb6-bf11-18f54976f52d" + ], + "Date": [ + "Tue, 04 Apr 2023 02:45:49 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"358214c4-6b0c-1e49-bfab-e05e711ac94d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2023-04-04T02:43:45.4304603Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerService/locations/eastus/operations/c4148235-0c6b-491e-bfab-e05e711ac94d?api-version=2017-08-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyU2VydmljZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzQxNDgyMzUtMGM2Yi00OTFlLWJmYWItZTA1ZTcxMWFjOTRkP2FwaS12ZXJzaW9uPTIwMTctMDgtMzE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "add57d6f-6720-4a5d-bb8c-85cc45a7ed13" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ContainerService.ContainerServiceClient/5.3.2" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "5af28c7d-5fb4-40da-bf01-c58f17c31b81" + ], + "x-ms-request-id": [ + "ec17cbd5-a8bd-41ad-b72b-959968851b7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "nginx" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024620Z:5af28c7d-5fb4-40da-bf01-c58f17c31b81" + ], + "Date": [ + "Tue, 04 Apr 2023 02:46:20 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"358214c4-6b0c-1e49-bfab-e05e711ac94d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2023-04-04T02:43:45.4304603Z\",\r\n \"endTime\": \"2023-04-04T02:45:59.3455508Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgps4533?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JncHM0NTMzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5ddfcd7-0fa9-4e8f-a4fe-23a4e106ede8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "5d51548d-8f1b-4841-840a-629e2b07a25c" + ], + "x-ms-correlation-request-id": [ + "5d51548d-8f1b-4841-840a-629e2b07a25c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024628Z:5d51548d-8f1b-4841-840a-629e2b07a25c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:46:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "61d38e09-078f-42e3-bd5b-572bae5e0d41" + ], + "x-ms-correlation-request-id": [ + "61d38e09-078f-42e3-bd5b-572bae5e0d41" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024643Z:61d38e09-078f-42e3-bd5b-572bae5e0d41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:46:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "90815309-7486-4698-846c-c06dbf15f899" + ], + "x-ms-correlation-request-id": [ + "90815309-7486-4698-846c-c06dbf15f899" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024659Z:90815309-7486-4698-846c-c06dbf15f899" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:46:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "438181c0-11f3-46f8-b5e8-e3e5ae2188a4" + ], + "x-ms-correlation-request-id": [ + "438181c0-11f3-46f8-b5e8-e3e5ae2188a4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024714Z:438181c0-11f3-46f8-b5e8-e3e5ae2188a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:47:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "3e32381d-902f-49c1-870d-8c2433f88b60" + ], + "x-ms-correlation-request-id": [ + "3e32381d-902f-49c1-870d-8c2433f88b60" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024730Z:3e32381d-902f-49c1-870d-8c2433f88b60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:47:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "a5d97e5b-f463-4f6a-997c-d7b421b4f2c1" + ], + "x-ms-correlation-request-id": [ + "a5d97e5b-f463-4f6a-997c-d7b421b4f2c1" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024746Z:a5d97e5b-f463-4f6a-997c-d7b421b4f2c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:47:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "ca792ddc-2c81-4a5a-a2a9-77ad551b81b3" + ], + "x-ms-correlation-request-id": [ + "ca792ddc-2c81-4a5a-a2a9-77ad551b81b3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024801Z:ca792ddc-2c81-4a5a-a2a9-77ad551b81b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:48:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "ca42323b-ac9c-43fe-922c-38a81b848792" + ], + "x-ms-correlation-request-id": [ + "ca42323b-ac9c-43fe-922c-38a81b848792" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024817Z:ca42323b-ac9c-43fe-922c-38a81b848792" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:48:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "f95564ab-2299-4c3d-aaab-07960cc82de4" + ], + "x-ms-correlation-request-id": [ + "f95564ab-2299-4c3d-aaab-07960cc82de4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024832Z:f95564ab-2299-4c3d-aaab-07960cc82de4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:48:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "d9b59a2d-95d2-4c2d-b30f-01505eb86420" + ], + "x-ms-correlation-request-id": [ + "d9b59a2d-95d2-4c2d-b30f-01505eb86420" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024848Z:d9b59a2d-95d2-4c2d-b30f-01505eb86420" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:48:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "c2da7235-3317-4682-8a23-2288b23926f7" + ], + "x-ms-correlation-request-id": [ + "c2da7235-3317-4682-8a23-2288b23926f7" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024903Z:c2da7235-3317-4682-8a23-2288b23926f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:49:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "638bfd66-7f64-4f19-9556-47314b97f0d2" + ], + "x-ms-correlation-request-id": [ + "638bfd66-7f64-4f19-9556-47314b97f0d2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024919Z:638bfd66-7f64-4f19-9556-47314b97f0d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:49:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "eb299767-6a53-4185-a2cf-c22a4fcb409e" + ], + "x-ms-correlation-request-id": [ + "eb299767-6a53-4185-a2cf-c22a4fcb409e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024934Z:eb299767-6a53-4185-a2cf-c22a4fcb409e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:49:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "86fb25ba-8987-4b4a-8b4d-6f6c320ff8b2" + ], + "x-ms-correlation-request-id": [ + "86fb25ba-8987-4b4a-8b4d-6f6c320ff8b2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T024950Z:86fb25ba-8987-4b4a-8b4d-6f6c320ff8b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:49:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "48303a6b-753e-4aa3-881d-5a534b7a66b5" + ], + "x-ms-correlation-request-id": [ + "48303a6b-753e-4aa3-881d-5a534b7a66b5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025006Z:48303a6b-753e-4aa3-881d-5a534b7a66b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:50:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "50c4e71f-6aa9-448c-8bb0-4cc0828d52f1" + ], + "x-ms-correlation-request-id": [ + "50c4e71f-6aa9-448c-8bb0-4cc0828d52f1" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025021Z:50c4e71f-6aa9-448c-8bb0-4cc0828d52f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:50:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "2008a96d-3921-4651-b8e4-511a6dc5668c" + ], + "x-ms-correlation-request-id": [ + "2008a96d-3921-4651-b8e4-511a6dc5668c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025037Z:2008a96d-3921-4651-b8e4-511a6dc5668c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:50:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "bbd6ca5e-c78b-4025-ab1f-b755b5466b9d" + ], + "x-ms-correlation-request-id": [ + "bbd6ca5e-c78b-4025-ab1f-b755b5466b9d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025053Z:bbd6ca5e-c78b-4025-ab1f-b755b5466b9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:50:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "9e4b23c5-2e4c-4af3-a533-9f9a3d972558" + ], + "x-ms-correlation-request-id": [ + "9e4b23c5-2e4c-4af3-a533-9f9a3d972558" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025108Z:9e4b23c5-2e4c-4af3-a533-9f9a3d972558" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:51:08 GMT" + ], + "Connection": [ + "close" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "71077514-2dd5-42a7-80b1-0710d36ccf50" + ], + "x-ms-correlation-request-id": [ + "71077514-2dd5-42a7-80b1-0710d36ccf50" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025125Z:71077514-2dd5-42a7-80b1-0710d36ccf50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:51:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "52d2e72e-8c35-4719-90e2-eb7c210dbab9" + ], + "x-ms-correlation-request-id": [ + "52d2e72e-8c35-4719-90e2-eb7c210dbab9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025140Z:52d2e72e-8c35-4719-90e2-eb7c210dbab9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:51:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "3d460195-8626-403d-9fcd-0141a4f94197" + ], + "x-ms-correlation-request-id": [ + "3d460195-8626-403d-9fcd-0141a4f94197" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025156Z:3d460195-8626-403d-9fcd-0141a4f94197" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:51:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "9a414c71-1051-45ef-b29c-1f561eeb44be" + ], + "x-ms-correlation-request-id": [ + "9a414c71-1051-45ef-b29c-1f561eeb44be" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025212Z:9a414c71-1051-45ef-b29c-1f561eeb44be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:52:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "faf51445-6dfe-4682-892d-e91aaebdb8e9" + ], + "x-ms-correlation-request-id": [ + "faf51445-6dfe-4682-892d-e91aaebdb8e9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025227Z:faf51445-6dfe-4682-892d-e91aaebdb8e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:52:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "132d6387-7164-4f06-98ca-b6ccc9384809" + ], + "x-ms-correlation-request-id": [ + "132d6387-7164-4f06-98ca-b6ccc9384809" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025243Z:132d6387-7164-4f06-98ca-b6ccc9384809" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:52:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "ddb5833c-7690-49d2-afdf-87b082c25019" + ], + "x-ms-correlation-request-id": [ + "ddb5833c-7690-49d2-afdf-87b082c25019" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025258Z:ddb5833c-7690-49d2-afdf-87b082c25019" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:52:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "835eeb96-45ca-42e7-a54b-bc90c2b26c88" + ], + "x-ms-correlation-request-id": [ + "835eeb96-45ca-42e7-a54b-bc90c2b26c88" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025314Z:835eeb96-45ca-42e7-a54b-bc90c2b26c88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:53:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "b012ab59-7336-408a-9f7b-8a7ae54ae215" + ], + "x-ms-correlation-request-id": [ + "b012ab59-7336-408a-9f7b-8a7ae54ae215" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025329Z:b012ab59-7336-408a-9f7b-8a7ae54ae215" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:53:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "3d4f7ff2-b27b-4a26-b4af-c6dc6ab0a1a9" + ], + "x-ms-correlation-request-id": [ + "3d4f7ff2-b27b-4a26-b4af-c6dc6ab0a1a9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025345Z:3d4f7ff2-b27b-4a26-b4af-c6dc6ab0a1a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:53:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1BTNDUzMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjFCVE5EVXpNeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "5e9d8ea8-08cb-449f-b83a-b12bb8274151" + ], + "x-ms-correlation-request-id": [ + "5e9d8ea8-08cb-449f-b83a-b12bb8274151" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20230404T025345Z:5e9d8ea8-08cb-449f-b83a-b12bb8274151" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 04 Apr 2023 02:53:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-EnableOidcIssuer": [ + "ps4533", + "ps7900", + "ps3793" + ] + }, + "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 3aff9f0fadb2..4f1d2db6e2e2 100644 --- a/src/Aks/Aks/ChangeLog.md +++ b/src/Aks/Aks/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Added parameter `-EnableOidcIssuer` for `New-AzAksCluster` and `Set-AzAksCluster` * Added parameter `-NodePodSubnetID` for `New-AzAksCluster`, `-PodSubnetID` for `New-AzAksNodePool` ## Version 5.3.2 diff --git a/src/Aks/Aks/Commands/NewAzureRmAks.cs b/src/Aks/Aks/Commands/NewAzureRmAks.cs index f19f93d9976d..99364926a2e7 100644 --- a/src/Aks/Aks/Commands/NewAzureRmAks.cs +++ b/src/Aks/Aks/Commands/NewAzureRmAks.cs @@ -179,6 +179,9 @@ public class NewAzureRmAks : CreateOrUpdateKubeBase [Parameter(Mandatory = false, HelpMessage = "The ID of the subnet which pods will join when launched.")] public string NodePodSubnetID { get; set; } + [Parameter(Mandatory = false, HelpMessage = "Whether to enalbe OIDC issuer feature.")] + public SwitchParameter EnableOidcIssuer { get; set; } + private AcsServicePrincipal acsServicePrincipal; public override void ExecuteCmdlet() @@ -429,6 +432,11 @@ private ManagedCluster BuildNewCluster() managedCluster.ExtendedLocation = new ExtendedLocation(name: EdgeZone, type: "EdgeZone"); } + if (EnableOidcIssuer.IsPresent) + { + managedCluster.OidcIssuerProfile = new ManagedClusterOIDCIssuerProfile(enabled: true); + } + return managedCluster; } diff --git a/src/Aks/Aks/Commands/SetAzureRmAks.cs b/src/Aks/Aks/Commands/SetAzureRmAks.cs index 527469122bc3..3a7cec13cd72 100644 --- a/src/Aks/Aks/Commands/SetAzureRmAks.cs +++ b/src/Aks/Aks/Commands/SetAzureRmAks.cs @@ -80,6 +80,9 @@ public class SetAzureRmAks : CreateOrUpdateKubeBase [Parameter(Mandatory = false, HelpMessage = "Whether to use use Uptime SLA.")] public SwitchParameter EnableUptimeSLA { get; set; } + [Parameter(Mandatory = false, HelpMessage = "Whether to enalbe OIDC issuer feature.")] + public SwitchParameter EnableOidcIssuer { get; set; } + private ManagedCluster BuildNewCluster() { BeforeBuildNewCluster(); @@ -420,6 +423,10 @@ public override void ExecuteCmdlet() { cluster.AadProfile = AadProfile; } + if (EnableOidcIssuer.IsPresent) + { + cluster.OidcIssuerProfile = new ManagedClusterOIDCIssuerProfile(enabled: true); + } SetIdentity(cluster); var kubeCluster = this.CreateOrUpdate(ResourceGroupName, Name, cluster); diff --git a/src/Aks/Aks/help/New-AzAksCluster.md b/src/Aks/Aks/help/New-AzAksCluster.md index 8eaec40bacdb..1d2eb925c14a 100644 --- a/src/Aks/Aks/help/New-AzAksCluster.md +++ b/src/Aks/Aks/help/New-AzAksCluster.md @@ -28,7 +28,7 @@ New-AzAksCluster [-NodeVmSetType ] [-NodeVnetSubnetID ] [-NodeMa [-NodeLinuxOSConfig ] [-NodeKubeletConfig ] [-NodeMaxSurge ] [-PPG ] [-EnableFIPS] [-AutoScalerProfile ] [-GpuInstanceProfile ] [-EnableUptimeSLA] [-EdgeZone ] [-NodeHostGroupID ] - [-NodePodSubnetID ] [-ResourceGroupName] [-Name] + [-NodePodSubnetID ] [-EnableOidcIssuer] [-ResourceGroupName] [-Name] [[-ServicePrincipalIdAndSecret] ] [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] @@ -501,6 +501,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableOidcIssuer +Whether to enalbe OIDC issuer feature. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -EnableRbac Whether to enable Kubernetes Role-Based Access diff --git a/src/Aks/Aks/help/Set-AzAksCluster.md b/src/Aks/Aks/help/Set-AzAksCluster.md index 93302017e141..7c58f87723f5 100644 --- a/src/Aks/Aks/help/Set-AzAksCluster.md +++ b/src/Aks/Aks/help/Set-AzAksCluster.md @@ -15,7 +15,7 @@ Update or create a managed Kubernetes cluster. ### defaultParameterSet (Default) ``` Set-AzAksCluster [-NodePoolMode ] [-AcrNameToDetach ] [-NodeImageOnly] [-ControlPlaneOnly] - [-AutoScalerProfile ] [-EnableUptimeSLA] + [-AutoScalerProfile ] [-EnableUptimeSLA] [-EnableOidcIssuer] [-ResourceGroupName] [-Name] [[-ServicePrincipalIdAndSecret] ] [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] @@ -38,11 +38,11 @@ Set-AzAksCluster [-NodePoolMode ] [-AcrNameToDetach ] [-NodeImag ``` Set-AzAksCluster -InputObject [-NodePoolMode ] [-AcrNameToDetach ] [-NodeImageOnly] [-ControlPlaneOnly] [-AutoScalerProfile ] - [-EnableUptimeSLA] [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] - [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] - [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ] - [-NodePoolLabel ] [-NodePoolTag ] [-SshKeyValue ] [-AcrNameToAttach ] - [-AsJob] [-Tag ] [-LoadBalancerAllocatedOutboundPort ] + [-EnableUptimeSLA] [-EnableOidcIssuer] [-Location ] [-LinuxProfileAdminUserName ] + [-DnsNamePrefix ] [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] + [-NodeMaxCount ] [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] + [-NodeVmSize ] [-NodePoolLabel ] [-NodePoolTag ] [-SshKeyValue ] + [-AcrNameToAttach ] [-AsJob] [-Tag ] [-LoadBalancerAllocatedOutboundPort ] [-LoadBalancerManagedOutboundIpCount ] [-LoadBalancerOutboundIp ] [-LoadBalancerOutboundIpPrefix ] [-LoadBalancerIdleTimeoutInMinute ] [-ApiServerAccessAuthorizedIpRange ] [-EnableApiServerAccessPrivateCluster] @@ -59,7 +59,7 @@ Set-AzAksCluster -InputObject [-NodePoolMode ] [-A ``` Set-AzAksCluster [-NodePoolMode ] [-AcrNameToDetach ] [-NodeImageOnly] [-ControlPlaneOnly] [-Id] [-AutoScalerProfile ] [-EnableUptimeSLA] - [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] + [-EnableOidcIssuer] [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ] [-NodePoolLabel ] [-NodePoolTag ] [-SshKeyValue ] [-AcrNameToAttach ] @@ -403,6 +403,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableOidcIssuer +Whether to enalbe OIDC issuer feature. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -EnableUptimeSLA Whether to use use Uptime SLA.