From 5375cebf9ad3a252ff562de4157ee28b15e23837 Mon Sep 17 00:00:00 2001 From: xiaofeicao Date: Mon, 25 Jul 2022 11:45:03 +0800 Subject: [PATCH 1/7] codegen --- sdk/resourcemanager/api-specs.json | 2 +- .../fluent/AgentPoolsClient.java | 52 ++- .../fluent/ContainerServicesClient.java | 20 +- .../fluent/ManagedClustersClient.java | 193 ++++++--- .../OpenShiftManagedClustersClient.java | 137 +++++-- .../PrivateEndpointConnectionsClient.java | 32 +- .../fluent/PrivateLinkResourcesClient.java | 16 +- .../fluent/models/AgentPoolInner.java | 228 +++++++---- .../models/MaintenanceConfigurationInner.java | 19 +- .../MaintenanceConfigurationProperties.java | 18 +- ...agedClusterAgentPoolProfileProperties.java | 365 +++++++++++------- .../fluent/models/ManagedClusterInner.java | 127 +++--- .../models/ManagedClusterProperties.java | 194 ++++++---- .../implementation/AgentPoolsClientImpl.java | 98 +++-- .../ContainerServicesClientImpl.java | 24 +- .../MaintenanceConfigurationsClientImpl.java | 16 +- .../ManagedClustersClientImpl.java | 358 +++++++++++------ .../OpenShiftManagedClustersClientImpl.java | 210 +++++++--- .../implementation/OperationsClientImpl.java | 4 +- .../PrivateEndpointConnectionsClientImpl.java | 56 ++- .../PrivateLinkResourcesClientImpl.java | 24 +- ...esolvePrivateLinkServiceIdsClientImpl.java | 4 +- .../implementation/SnapshotsClientImpl.java | 24 +- .../models/AgentPoolUpgradeSettings.java | 30 +- .../models/AzureKeyVaultKms.java | 153 ++++++++ .../ContainerServiceNetworkProfile.java | 115 +++--- .../models/KeyVaultNetworkAccessTypes.java | 38 ++ .../models/KubeletConfig.java | 104 +++-- .../models/LinuxOSConfig.java | 44 ++- .../models/ManagedClusterAadProfile.java | 5 +- .../ManagedClusterAgentPoolProfile.java | 20 +- .../ManagedClusterApiServerAccessProfile.java | 59 +-- .../ManagedClusterAutoUpgradeProfile.java | 15 +- .../models/ManagedClusterIdentity.java | 17 +- .../ManagedClusterPodIdentityException.java | 7 +- .../ManagedClusterPodIdentityProfile.java | 27 +- ...gedClusterPropertiesAutoScalerProfile.java | 254 +++++++----- .../models/ManagedClusterSecurityProfile.java | 59 ++- ...edClusterSecurityProfileAzureDefender.java | 80 ---- ...ManagedClusterSecurityProfileDefender.java | 87 +++++ ...rityProfileDefenderSecurityMonitoring.java | 46 +++ .../models/ManagedClusterSku.java | 17 +- .../models/ManagedClusterWindowsProfile.java | 16 +- .../models/NetworkPlugin.java | 3 + .../containerservice/models/TimeInWeek.java | 23 +- .../containerservice/models/TimeSpan.java | 6 +- .../models/WindowsGmsaProfile.java | 15 +- .../AgentPoolsCreateOrUpdateSamples.java | 58 ++- .../generated/AgentPoolsDeleteSamples.java | 2 +- ...sGetAvailableAgentPoolVersionsSamples.java | 2 +- .../generated/AgentPoolsGetSamples.java | 2 +- .../AgentPoolsGetUpgradeProfileSamples.java | 2 +- .../generated/AgentPoolsListSamples.java | 2 +- ...ntPoolsUpgradeNodeImageVersionSamples.java | 2 +- ...ceConfigurationsCreateOrUpdateSamples.java | 2 +- ...aintenanceConfigurationsDeleteSamples.java | 2 +- .../MaintenanceConfigurationsGetSamples.java | 2 +- ...igurationsListByManagedClusterSamples.java | 2 +- .../ManagedClustersCreateOrUpdateSamples.java | 127 ++++-- .../ManagedClustersDeleteSamples.java | 2 +- ...anagedClustersGetAccessProfileSamples.java | 2 +- ...agedClustersGetByResourceGroupSamples.java | 2 +- ...anagedClustersGetCommandResultSamples.java | 4 +- .../ManagedClustersGetOSOptionsSamples.java | 2 +- ...nagedClustersGetUpgradeProfileSamples.java | 2 +- ...gedClustersListByResourceGroupSamples.java | 2 +- ...ersListClusterAdminCredentialsSamples.java | 2 +- ...usterMonitoringUserCredentialsSamples.java | 2 +- ...tersListClusterUserCredentialsSamples.java | 2 +- ...ndNetworkDependenciesEndpointsSamples.java | 2 +- .../generated/ManagedClustersListSamples.java | 2 +- ...ManagedClustersResetAadProfileSamples.java | 2 +- ...rsResetServicePrincipalProfileSamples.java | 2 +- ...stersRotateClusterCertificatesSamples.java | 2 +- .../ManagedClustersRunCommandSamples.java | 2 +- .../ManagedClustersStartSamples.java | 2 +- .../generated/ManagedClustersStopSamples.java | 2 +- .../ManagedClustersUpdateTagsSamples.java | 2 +- .../generated/OperationsListSamples.java | 2 +- ...ivateEndpointConnectionsDeleteSamples.java | 2 +- .../PrivateEndpointConnectionsGetSamples.java | 2 +- ...PrivateEndpointConnectionsListSamples.java | 2 +- ...ivateEndpointConnectionsUpdateSamples.java | 2 +- .../PrivateLinkResourcesListSamples.java | 2 +- ...esolvePrivateLinkServiceIdPostSamples.java | 2 +- .../SnapshotsCreateOrUpdateSamples.java | 2 +- .../generated/SnapshotsDeleteSamples.java | 2 +- .../SnapshotsGetByResourceGroupSamples.java | 2 +- .../SnapshotsListByResourceGroupSamples.java | 2 +- .../generated/SnapshotsListSamples.java | 2 +- .../generated/SnapshotsUpdateTagsSamples.java | 2 +- 91 files changed, 2539 insertions(+), 1193 deletions(-) create mode 100644 sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/AzureKeyVaultKms.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/KeyVaultNetworkAccessTypes.java delete mode 100644 sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfileAzureDefender.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfileDefender.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfileDefenderSecurityMonitoring.java diff --git a/sdk/resourcemanager/api-specs.json b/sdk/resourcemanager/api-specs.json index b7148b720b36..d264a4b0d970 100644 --- a/sdk/resourcemanager/api-specs.json +++ b/sdk/resourcemanager/api-specs.json @@ -71,7 +71,7 @@ "dir": "azure-resourcemanager-containerservice", "source": "specification/containerservice/resource-manager/readme.md", "package": "com.azure.resourcemanager.containerservice", - "args": "--tag=package-2022-04 --preserve-model=ContainerServiceVMSizeTypes --rename-model=Ossku:OSSku" + "args": "--tag=package-2022-06 --preserve-model=ContainerServiceVMSizeTypes --rename-model=Ossku:OSSku" }, "containerservice-hybrid": { "dir": "../resourcemanagerhybrid/azure-resourcemanager-containerservice", diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/AgentPoolsClient.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/AgentPoolsClient.java index 0a8aa5135ea1..b663b7b9c762 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/AgentPoolsClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/AgentPoolsClient.java @@ -407,8 +407,10 @@ Response getUpgradeProfileWithResponse( String resourceGroupName, String resourceName, String agentPoolName, Context context); /** - * See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for more - * details about the version lifecycle. + * Gets a list of supported Kubernetes versions for the specified agent pool. + * + *

See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for + * more details about the version lifecycle. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -423,8 +425,10 @@ Mono> getAvailableAgentPoolVersionsWit String resourceGroupName, String resourceName); /** - * See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for more - * details about the version lifecycle. + * Gets a list of supported Kubernetes versions for the specified agent pool. + * + *

See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for + * more details about the version lifecycle. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -438,8 +442,10 @@ Mono getAvailableAgentPoolVersionsAsync( String resourceGroupName, String resourceName); /** - * See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for more - * details about the version lifecycle. + * Gets a list of supported Kubernetes versions for the specified agent pool. + * + *

See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for + * more details about the version lifecycle. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -452,8 +458,10 @@ Mono getAvailableAgentPoolVersionsAsync( AgentPoolAvailableVersionsInner getAvailableAgentPoolVersions(String resourceGroupName, String resourceName); /** - * See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for more - * details about the version lifecycle. + * Gets a list of supported Kubernetes versions for the specified agent pool. + * + *

See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for + * more details about the version lifecycle. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -468,7 +476,9 @@ Response getAvailableAgentPoolVersionsWithRespo String resourceGroupName, String resourceName, Context context); /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -485,7 +495,9 @@ Mono>> upgradeNodeImageVersionWithResponseAsync( String resourceGroupName, String resourceName, String agentPoolName); /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -502,7 +514,9 @@ PollerFlux, AgentPoolInner> beginUpgradeNodeImageVers String resourceGroupName, String resourceName, String agentPoolName); /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -519,7 +533,9 @@ SyncPoller, AgentPoolInner> beginUpgradeNodeImageVers String resourceGroupName, String resourceName, String agentPoolName); /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -537,7 +553,9 @@ SyncPoller, AgentPoolInner> beginUpgradeNodeImageVers String resourceGroupName, String resourceName, String agentPoolName, Context context); /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -554,7 +572,9 @@ Mono upgradeNodeImageVersionAsync( String resourceGroupName, String resourceName, String agentPoolName); /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -570,7 +590,9 @@ Mono upgradeNodeImageVersionAsync( AgentPoolInner upgradeNodeImageVersion(String resourceGroupName, String resourceName, String agentPoolName); /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/ContainerServicesClient.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/ContainerServicesClient.java index 945c240f270c..4ece5e25a576 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/ContainerServicesClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/ContainerServicesClient.java @@ -14,7 +14,9 @@ /** An instance of this class provides access to all the operations defined in ContainerServicesClient. */ public interface ContainerServicesClient { /** - * Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each + * Gets a list of supported orchestrators in the specified subscription. + * + *

Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each * orchestrator including version, available upgrades and whether that version or upgrades are in preview. * * @param location The name of a supported Azure region. @@ -30,7 +32,9 @@ Mono> listOrchestratorsWithR String location, String resourceType); /** - * Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each + * Gets a list of supported orchestrators in the specified subscription. + * + *

Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each * orchestrator including version, available upgrades and whether that version or upgrades are in preview. * * @param location The name of a supported Azure region. @@ -44,7 +48,9 @@ Mono> listOrchestratorsWithR Mono listOrchestratorsAsync(String location, String resourceType); /** - * Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each + * Gets a list of supported orchestrators in the specified subscription. + * + *

Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each * orchestrator including version, available upgrades and whether that version or upgrades are in preview. * * @param location The name of a supported Azure region. @@ -57,7 +63,9 @@ Mono> listOrchestratorsWithR Mono listOrchestratorsAsync(String location); /** - * Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each + * Gets a list of supported orchestrators in the specified subscription. + * + *

Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each * orchestrator including version, available upgrades and whether that version or upgrades are in preview. * * @param location The name of a supported Azure region. @@ -70,7 +78,9 @@ Mono> listOrchestratorsWithR OrchestratorVersionProfileListResultInner listOrchestrators(String location); /** - * Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each + * Gets a list of supported orchestrators in the specified subscription. + * + *

Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each * orchestrator including version, available upgrades and whether that version or upgrades are in preview. * * @param location The name of a supported Azure region. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/ManagedClustersClient.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/ManagedClustersClient.java index 7eed4921aa9b..65e0266c78ef 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/ManagedClustersClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/ManagedClustersClient.java @@ -230,7 +230,9 @@ Response getUpgradeProfileWithResponse( String resourceGroupName, String resourceName, Context context); /** - * **WARNING**: This API will be deprecated. Instead use + * Gets an access profile of a managed cluster. + * + *

**WARNING**: This API will be deprecated. Instead use * [ListClusterUserCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusterusercredentials) * or * [ListClusterAdminCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusteradmincredentials) @@ -249,7 +251,9 @@ Mono> getAccessProfileWithResponseAsy String resourceGroupName, String resourceName, String roleName); /** - * **WARNING**: This API will be deprecated. Instead use + * Gets an access profile of a managed cluster. + * + *

**WARNING**: This API will be deprecated. Instead use * [ListClusterUserCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusterusercredentials) * or * [ListClusterAdminCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusteradmincredentials) @@ -268,7 +272,9 @@ Mono getAccessProfileAsync( String resourceGroupName, String resourceName, String roleName); /** - * **WARNING**: This API will be deprecated. Instead use + * Gets an access profile of a managed cluster. + * + *

**WARNING**: This API will be deprecated. Instead use * [ListClusterUserCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusterusercredentials) * or * [ListClusterAdminCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusteradmincredentials) @@ -286,7 +292,9 @@ Mono getAccessProfileAsync( ManagedClusterAccessProfileInner getAccessProfile(String resourceGroupName, String resourceName, String roleName); /** - * **WARNING**: This API will be deprecated. Instead use + * Gets an access profile of a managed cluster. + * + *

**WARNING**: This API will be deprecated. Instead use * [ListClusterUserCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusterusercredentials) * or * [ListClusterAdminCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusteradmincredentials) @@ -889,7 +897,9 @@ ManagedClusterInner updateTags( void delete(String resourceGroupName, String resourceName, Context context); /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -904,7 +914,9 @@ Mono>> resetServicePrincipalProfileWithResponseAsync( String resourceGroupName, String resourceName, ManagedClusterServicePrincipalProfile parameters); /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -919,7 +931,9 @@ PollerFlux, Void> beginResetServicePrincipalProfileAsync( String resourceGroupName, String resourceName, ManagedClusterServicePrincipalProfile parameters); /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -934,7 +948,9 @@ SyncPoller, Void> beginResetServicePrincipalProfile( String resourceGroupName, String resourceName, ManagedClusterServicePrincipalProfile parameters); /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -953,7 +969,9 @@ SyncPoller, Void> beginResetServicePrincipalProfile( Context context); /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -968,7 +986,9 @@ Mono resetServicePrincipalProfileAsync( String resourceGroupName, String resourceName, ManagedClusterServicePrincipalProfile parameters); /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -982,7 +1002,9 @@ void resetServicePrincipalProfile( String resourceGroupName, String resourceName, ManagedClusterServicePrincipalProfile parameters); /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1103,7 +1125,9 @@ void resetAadProfile( String resourceGroupName, String resourceName, ManagedClusterAadProfile parameters, Context context); /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -1118,7 +1142,9 @@ Mono>> rotateClusterCertificatesWithResponseAsync( String resourceGroupName, String resourceName); /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -1133,7 +1159,9 @@ PollerFlux, Void> beginRotateClusterCertificatesAsync( String resourceGroupName, String resourceName); /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -1147,7 +1175,9 @@ PollerFlux, Void> beginRotateClusterCertificatesAsync( SyncPoller, Void> beginRotateClusterCertificates(String resourceGroupName, String resourceName); /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -1163,7 +1193,9 @@ SyncPoller, Void> beginRotateClusterCertificates( String resourceGroupName, String resourceName, Context context); /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -1177,7 +1209,9 @@ SyncPoller, Void> beginRotateClusterCertificates( Mono rotateClusterCertificatesAsync(String resourceGroupName, String resourceName); /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -1190,7 +1224,9 @@ SyncPoller, Void> beginRotateClusterCertificates( void rotateClusterCertificates(String resourceGroupName, String resourceName); /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -1204,7 +1240,9 @@ SyncPoller, Void> beginRotateClusterCertificates( void rotateClusterCertificates(String resourceGroupName, String resourceName, Context context); /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -1220,7 +1258,9 @@ SyncPoller, Void> beginRotateClusterCertificates( Mono>> stopWithResponseAsync(String resourceGroupName, String resourceName); /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -1236,7 +1276,9 @@ SyncPoller, Void> beginRotateClusterCertificates( PollerFlux, Void> beginStopAsync(String resourceGroupName, String resourceName); /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -1252,7 +1294,9 @@ SyncPoller, Void> beginRotateClusterCertificates( SyncPoller, Void> beginStop(String resourceGroupName, String resourceName); /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -1269,7 +1313,9 @@ SyncPoller, Void> beginRotateClusterCertificates( SyncPoller, Void> beginStop(String resourceGroupName, String resourceName, Context context); /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -1285,7 +1331,9 @@ SyncPoller, Void> beginRotateClusterCertificates( Mono stopAsync(String resourceGroupName, String resourceName); /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -1300,7 +1348,9 @@ SyncPoller, Void> beginRotateClusterCertificates( void stop(String resourceGroupName, String resourceName); /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -1316,8 +1366,10 @@ SyncPoller, Void> beginRotateClusterCertificates( void stop(String resourceGroupName, String resourceName, Context context); /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1330,8 +1382,10 @@ SyncPoller, Void> beginRotateClusterCertificates( Mono>> startWithResponseAsync(String resourceGroupName, String resourceName); /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1344,8 +1398,10 @@ SyncPoller, Void> beginRotateClusterCertificates( PollerFlux, Void> beginStartAsync(String resourceGroupName, String resourceName); /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1358,8 +1414,10 @@ SyncPoller, Void> beginRotateClusterCertificates( SyncPoller, Void> beginStart(String resourceGroupName, String resourceName); /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1373,8 +1431,10 @@ SyncPoller, Void> beginRotateClusterCertificates( SyncPoller, Void> beginStart(String resourceGroupName, String resourceName, Context context); /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1387,8 +1447,10 @@ SyncPoller, Void> beginRotateClusterCertificates( Mono startAsync(String resourceGroupName, String resourceName); /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1400,8 +1462,10 @@ SyncPoller, Void> beginRotateClusterCertificates( void start(String resourceGroupName, String resourceName); /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1414,8 +1478,10 @@ SyncPoller, Void> beginRotateClusterCertificates( void start(String resourceGroupName, String resourceName, Context context); /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1430,8 +1496,10 @@ Mono>> runCommandWithResponseAsync( String resourceGroupName, String resourceName, RunCommandRequest requestPayload); /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1446,8 +1514,10 @@ PollerFlux, RunCommandResultInner> beginRunCom String resourceGroupName, String resourceName, RunCommandRequest requestPayload); /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1462,8 +1532,10 @@ SyncPoller, RunCommandResultInner> beginRunCom String resourceGroupName, String resourceName, RunCommandRequest requestPayload); /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1479,8 +1551,10 @@ SyncPoller, RunCommandResultInner> beginRunCom String resourceGroupName, String resourceName, RunCommandRequest requestPayload, Context context); /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1495,8 +1569,10 @@ Mono runCommandAsync( String resourceGroupName, String resourceName, RunCommandRequest requestPayload); /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1510,8 +1586,10 @@ Mono runCommandAsync( RunCommandResultInner runCommand(String resourceGroupName, String resourceName, RunCommandRequest requestPayload); /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1589,6 +1667,9 @@ Response getCommandResultWithResponse( /** * Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed + * cluster. + * + *

Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed * cluster. The operation returns properties of each egress endpoint. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -1605,6 +1686,9 @@ PagedFlux listOutboundNetworkDependenciesEndpo /** * Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed + * cluster. + * + *

Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed * cluster. The operation returns properties of each egress endpoint. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -1621,6 +1705,9 @@ PagedIterable listOutboundNetworkDependenciesE /** * Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed + * cluster. + * + *

Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed * cluster. The operation returns properties of each egress endpoint. * * @param resourceGroupName The name of the resource group. The name is case insensitive. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/OpenShiftManagedClustersClient.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/OpenShiftManagedClustersClient.java index 712e488815f3..688422652cf6 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/OpenShiftManagedClustersClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/OpenShiftManagedClustersClient.java @@ -28,8 +28,10 @@ public interface OpenShiftManagedClustersClient InnerSupportsListing, InnerSupportsDelete { /** - * Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of each - * OpenShift managed cluster. + * Gets a list of OpenShift managed clusters in the specified subscription. + * + *

Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of + * each OpenShift managed cluster. * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -40,8 +42,10 @@ public interface OpenShiftManagedClustersClient PagedFlux listAsync(); /** - * Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of each - * OpenShift managed cluster. + * Gets a list of OpenShift managed clusters in the specified subscription. + * + *

Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of + * each OpenShift managed cluster. * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -52,8 +56,10 @@ public interface OpenShiftManagedClustersClient PagedIterable list(); /** - * Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of each - * OpenShift managed cluster. + * Gets a list of OpenShift managed clusters in the specified subscription. + * + *

Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of + * each OpenShift managed cluster. * * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -66,7 +72,9 @@ public interface OpenShiftManagedClustersClient PagedIterable list(Context context); /** - * Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns + * Lists OpenShift managed clusters in the specified subscription and resource group. + * + *

Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns * properties of each OpenShift managed cluster. * * @param resourceGroupName The name of the resource group. @@ -80,7 +88,9 @@ public interface OpenShiftManagedClustersClient PagedFlux listByResourceGroupAsync(String resourceGroupName); /** - * Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns + * Lists OpenShift managed clusters in the specified subscription and resource group. + * + *

Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns * properties of each OpenShift managed cluster. * * @param resourceGroupName The name of the resource group. @@ -94,7 +104,9 @@ public interface OpenShiftManagedClustersClient PagedIterable listByResourceGroup(String resourceGroupName); /** - * Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns + * Lists OpenShift managed clusters in the specified subscription and resource group. + * + *

Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns * properties of each OpenShift managed cluster. * * @param resourceGroupName The name of the resource group. @@ -109,7 +121,9 @@ public interface OpenShiftManagedClustersClient PagedIterable listByResourceGroup(String resourceGroupName, Context context); /** - * Gets the details of the managed OpenShift cluster with a specified resource group and name. + * Gets a OpenShift managed cluster. + * + *

Gets the details of the managed OpenShift cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -124,7 +138,9 @@ Mono> getByResourceGroupWithResponseAsync String resourceGroupName, String resourceName); /** - * Gets the details of the managed OpenShift cluster with a specified resource group and name. + * Gets a OpenShift managed cluster. + * + *

Gets the details of the managed OpenShift cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -138,7 +154,9 @@ Mono> getByResourceGroupWithResponseAsync Mono getByResourceGroupAsync(String resourceGroupName, String resourceName); /** - * Gets the details of the managed OpenShift cluster with a specified resource group and name. + * Gets a OpenShift managed cluster. + * + *

Gets the details of the managed OpenShift cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -151,7 +169,9 @@ Mono> getByResourceGroupWithResponseAsync OpenShiftManagedClusterInner getByResourceGroup(String resourceGroupName, String resourceName); /** - * Gets the details of the managed OpenShift cluster with a specified resource group and name. + * Gets a OpenShift managed cluster. + * + *

Gets the details of the managed OpenShift cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -167,7 +187,10 @@ Response getByResourceGroupWithResponse( String resourceGroupName, String resourceName, Context context); /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -182,7 +205,10 @@ Mono>> createOrUpdateWithResponseAsync( String resourceGroupName, String resourceName, OpenShiftManagedClusterInner parameters); /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -197,7 +223,10 @@ PollerFlux, OpenShiftManagedClusterInne String resourceGroupName, String resourceName, OpenShiftManagedClusterInner parameters); /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -212,7 +241,10 @@ SyncPoller, OpenShiftManagedClusterInne String resourceGroupName, String resourceName, OpenShiftManagedClusterInner parameters); /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -228,7 +260,10 @@ SyncPoller, OpenShiftManagedClusterInne String resourceGroupName, String resourceName, OpenShiftManagedClusterInner parameters, Context context); /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -243,7 +278,10 @@ Mono createOrUpdateAsync( String resourceGroupName, String resourceName, OpenShiftManagedClusterInner parameters); /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -258,7 +296,10 @@ OpenShiftManagedClusterInner createOrUpdate( String resourceGroupName, String resourceName, OpenShiftManagedClusterInner parameters); /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -274,7 +315,9 @@ OpenShiftManagedClusterInner createOrUpdate( String resourceGroupName, String resourceName, OpenShiftManagedClusterInner parameters, Context context); /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -289,7 +332,9 @@ Mono>> updateTagsWithResponseAsync( String resourceGroupName, String resourceName, TagsObject parameters); /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -304,7 +349,9 @@ PollerFlux, OpenShiftManagedClusterInne String resourceGroupName, String resourceName, TagsObject parameters); /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -319,7 +366,9 @@ SyncPoller, OpenShiftManagedClusterInne String resourceGroupName, String resourceName, TagsObject parameters); /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -335,7 +384,9 @@ SyncPoller, OpenShiftManagedClusterInne String resourceGroupName, String resourceName, TagsObject parameters, Context context); /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -350,7 +401,9 @@ Mono updateTagsAsync( String resourceGroupName, String resourceName, TagsObject parameters); /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -364,7 +417,9 @@ Mono updateTagsAsync( OpenShiftManagedClusterInner updateTags(String resourceGroupName, String resourceName, TagsObject parameters); /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -380,7 +435,9 @@ OpenShiftManagedClusterInner updateTags( String resourceGroupName, String resourceName, TagsObject parameters, Context context); /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -393,7 +450,9 @@ OpenShiftManagedClusterInner updateTags( Mono>> deleteWithResponseAsync(String resourceGroupName, String resourceName); /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -406,7 +465,9 @@ OpenShiftManagedClusterInner updateTags( PollerFlux, Void> beginDeleteAsync(String resourceGroupName, String resourceName); /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -419,7 +480,9 @@ OpenShiftManagedClusterInner updateTags( SyncPoller, Void> beginDelete(String resourceGroupName, String resourceName); /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -433,7 +496,9 @@ OpenShiftManagedClusterInner updateTags( SyncPoller, Void> beginDelete(String resourceGroupName, String resourceName, Context context); /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -446,7 +511,9 @@ OpenShiftManagedClusterInner updateTags( Mono deleteAsync(String resourceGroupName, String resourceName); /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -458,7 +525,9 @@ OpenShiftManagedClusterInner updateTags( void delete(String resourceGroupName, String resourceName); /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/PrivateEndpointConnectionsClient.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/PrivateEndpointConnectionsClient.java index 312f8dd07c38..2964ea4fb4d1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/PrivateEndpointConnectionsClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/PrivateEndpointConnectionsClient.java @@ -20,7 +20,9 @@ /** An instance of this class provides access to all the operations defined in PrivateEndpointConnectionsClient. */ public interface PrivateEndpointConnectionsClient { /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private endpoint connections in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -35,7 +37,9 @@ Mono> listWithResponseAsync( String resourceGroupName, String resourceName); /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private endpoint connections in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -48,7 +52,9 @@ Mono> listWithResponseAsync( Mono listAsync(String resourceGroupName, String resourceName); /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private endpoint connections in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -61,7 +67,9 @@ Mono> listWithResponseAsync( PrivateEndpointConnectionListResultInner list(String resourceGroupName, String resourceName); /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private endpoint connections in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -76,7 +84,9 @@ Response listWithResponse( String resourceGroupName, String resourceName, Context context); /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets the specified private endpoint connection. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -91,7 +101,9 @@ Mono> getWithResponseAsync( String resourceGroupName, String resourceName, String privateEndpointConnectionName); /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets the specified private endpoint connection. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -106,7 +118,9 @@ Mono getAsync( String resourceGroupName, String resourceName, String privateEndpointConnectionName); /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets the specified private endpoint connection. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -121,7 +135,9 @@ PrivateEndpointConnectionInner get( String resourceGroupName, String resourceName, String privateEndpointConnectionName); /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets the specified private endpoint connection. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/PrivateLinkResourcesClient.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/PrivateLinkResourcesClient.java index e01727ec65b9..ff70ee852bf2 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/PrivateLinkResourcesClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/PrivateLinkResourcesClient.java @@ -14,7 +14,9 @@ /** An instance of this class provides access to all the operations defined in PrivateLinkResourcesClient. */ public interface PrivateLinkResourcesClient { /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private link resources in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -28,7 +30,9 @@ Mono> listWithResponseAsync( String resourceGroupName, String resourceName); /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private link resources in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -41,7 +45,9 @@ Mono> listWithResponseAsync( Mono listAsync(String resourceGroupName, String resourceName); /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private link resources in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -54,7 +60,9 @@ Mono> listWithResponseAsync( PrivateLinkResourcesListResultInner list(String resourceGroupName, String resourceName); /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private link resources in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/AgentPoolInner.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/AgentPoolInner.java index 5befc914dad6..5319d4c29b33 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/AgentPoolInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/AgentPoolInner.java @@ -111,9 +111,11 @@ public AgentPoolInner withCount(Integer count) { } /** - * Get the vmSize property: The size of the agent pool VMs. VM size availability varies by region. If a node - * contains insufficient compute resources (memory, cpu, etc) pods might fail to run correctly. For more details on - * restricted VM sizes, see: https://docs.microsoft.com/azure/aks/quotas-skus-regions. + * Get the vmSize property: The size of the agent pool VMs. + * + *

VM size availability varies by region. If a node contains insufficient compute resources (memory, cpu, etc) + * pods might fail to run correctly. For more details on restricted VM sizes, see: + * https://docs.microsoft.com/azure/aks/quotas-skus-regions. * * @return the vmSize value. */ @@ -122,9 +124,11 @@ public String vmSize() { } /** - * Set the vmSize property: The size of the agent pool VMs. VM size availability varies by region. If a node - * contains insufficient compute resources (memory, cpu, etc) pods might fail to run correctly. For more details on - * restricted VM sizes, see: https://docs.microsoft.com/azure/aks/quotas-skus-regions. + * Set the vmSize property: The size of the agent pool VMs. + * + *

VM size availability varies by region. If a node contains insufficient compute resources (memory, cpu, etc) + * pods might fail to run correctly. For more details on restricted VM sizes, see: + * https://docs.microsoft.com/azure/aks/quotas-skus-regions. * * @param vmSize the vmSize value to set. * @return the AgentPoolInner object itself. @@ -163,9 +167,10 @@ public AgentPoolInner withOsDiskSizeGB(Integer osDiskSizeGB) { } /** - * Get the osDiskType property: The OS disk type to be used for machines in the agent pool. The default is - * 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. Otherwise, - * defaults to 'Managed'. May not be changed after creation. For more information see [Ephemeral + * Get the osDiskType property: The OS disk type to be used for machines in the agent pool. + * + *

The default is 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. + * Otherwise, defaults to 'Managed'. May not be changed after creation. For more information see [Ephemeral * OS](https://docs.microsoft.com/azure/aks/cluster-configuration#ephemeral-os). * * @return the osDiskType value. @@ -175,9 +180,10 @@ public OSDiskType osDiskType() { } /** - * Set the osDiskType property: The OS disk type to be used for machines in the agent pool. The default is - * 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. Otherwise, - * defaults to 'Managed'. May not be changed after creation. For more information see [Ephemeral + * Set the osDiskType property: The OS disk type to be used for machines in the agent pool. + * + *

The default is 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. + * Otherwise, defaults to 'Managed'. May not be changed after creation. For more information see [Ephemeral * OS](https://docs.microsoft.com/azure/aks/cluster-configuration#ephemeral-os). * * @param osDiskType the osDiskType value to set. @@ -241,8 +247,10 @@ public AgentPoolInner withWorkloadRuntime(WorkloadRuntime workloadRuntime) { /** * Get the vnetSubnetId property: The ID of the subnet which agent pool nodes and optionally pods will join on - * startup. If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, - * this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: + * startup. + * + *

If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this + * applies to nodes and pods, otherwise it applies to just nodes. This is of the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. * * @return the vnetSubnetId value. @@ -253,8 +261,10 @@ public String vnetSubnetId() { /** * Set the vnetSubnetId property: The ID of the subnet which agent pool nodes and optionally pods will join on - * startup. If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, - * this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: + * startup. + * + *

If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this + * applies to nodes and pods, otherwise it applies to just nodes. This is of the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. * * @param vnetSubnetId the vnetSubnetId value to set. @@ -269,8 +279,10 @@ public AgentPoolInner withVnetSubnetId(String vnetSubnetId) { } /** - * Get the podSubnetId property: The ID of the subnet which pods will join when launched. If omitted, pod IPs are - * statically assigned on the node subnet (see vnetSubnetID for more details). This is of the form: + * Get the podSubnetId property: The ID of the subnet which pods will join when launched. + * + *

If omitted, pod IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is of + * the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. * * @return the podSubnetId value. @@ -280,8 +292,10 @@ public String podSubnetId() { } /** - * Set the podSubnetId property: The ID of the subnet which pods will join when launched. If omitted, pod IPs are - * statically assigned on the node subnet (see vnetSubnetID for more details). This is of the form: + * Set the podSubnetId property: The ID of the subnet which pods will join when launched. + * + *

If omitted, pod IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is of + * the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. * * @param podSubnetId the podSubnetId value to set. @@ -482,9 +496,10 @@ public AgentPoolInner withTypePropertiesType(AgentPoolType type) { } /** - * Get the mode property: The mode of an agent pool. A cluster must have at least one 'System' Agent Pool at all - * times. For additional information on agent pool restrictions and best practices, see: - * https://docs.microsoft.com/azure/aks/use-system-pools. + * Get the mode property: The mode of an agent pool. + * + *

A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool + * restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. * * @return the mode value. */ @@ -493,9 +508,10 @@ public AgentPoolMode mode() { } /** - * Set the mode property: The mode of an agent pool. A cluster must have at least one 'System' Agent Pool at all - * times. For additional information on agent pool restrictions and best practices, see: - * https://docs.microsoft.com/azure/aks/use-system-pools. + * Set the mode property: The mode of an agent pool. + * + *

A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool + * restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. * * @param mode the mode value to set. * @return the AgentPoolInner object itself. @@ -509,14 +525,15 @@ public AgentPoolInner withMode(AgentPoolMode mode) { } /** - * Get the orchestratorVersion property: The version of Kubernetes specified by the user. Both patch version - * <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. When - * <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating the - * cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger an - * upgrade, even if a newer patch version is available. As a best practice, you should upgrade all node pools in an - * AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control - * plane. The node pool minor version must be within two minor versions of the control plane version. The node pool - * version cannot be greater than the control plane version. For more information see [upgrading a node + * Get the orchestratorVersion property: The version of Kubernetes specified by the user. + * + *

Both patch version <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. + * When <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating + * the cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger + * an upgrade, even if a newer patch version is available. As a best practice, you should upgrade all node pools in + * an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the + * control plane. The node pool minor version must be within two minor versions of the control plane version. The + * node pool version cannot be greater than the control plane version. For more information see [upgrading a node * pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#upgrade-a-node-pool). * * @return the orchestratorVersion value. @@ -526,14 +543,15 @@ public String orchestratorVersion() { } /** - * Set the orchestratorVersion property: The version of Kubernetes specified by the user. Both patch version - * <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. When - * <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating the - * cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger an - * upgrade, even if a newer patch version is available. As a best practice, you should upgrade all node pools in an - * AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control - * plane. The node pool minor version must be within two minor versions of the control plane version. The node pool - * version cannot be greater than the control plane version. For more information see [upgrading a node + * Set the orchestratorVersion property: The version of Kubernetes specified by the user. + * + *

Both patch version <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. + * When <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating + * the cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger + * an upgrade, even if a newer patch version is available. As a best practice, you should upgrade all node pools in + * an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the + * control plane. The node pool minor version must be within two minor versions of the control plane version. The + * node pool version cannot be greater than the control plane version. For more information see [upgrading a node * pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#upgrade-a-node-pool). * * @param orchestratorVersion the orchestratorVersion value to set. @@ -548,10 +566,11 @@ public AgentPoolInner withOrchestratorVersion(String orchestratorVersion) { } /** - * Get the currentOrchestratorVersion property: The version of Kubernetes the Agent Pool is running. If - * orchestratorVersion is a fully specified version <major.minor.patch>, this field will be exactly equal to - * it. If orchestratorVersion is <major.minor>, this field will contain the full <major.minor.patch> - * version being used. + * Get the currentOrchestratorVersion property: The version of Kubernetes the Agent Pool is running. + * + *

If orchestratorVersion is a fully specified version <major.minor.patch>, this field will be exactly + * equal to it. If orchestratorVersion is <major.minor>, this field will contain the full + * <major.minor.patch> version being used. * * @return the currentOrchestratorVersion value. */ @@ -653,10 +672,11 @@ public AgentPoolInner withAvailabilityZones(List availabilityZones) { } /** - * Get the enableNodePublicIp property: Whether each node is allocated its own public IP. Some scenarios may require - * nodes in a node pool to receive their own dedicated public IP addresses. A common scenario is for gaming - * workloads, where a console needs to make a direct connection to a cloud virtual machine to minimize hops. For - * more information see [assigning a public IP per + * Get the enableNodePublicIp property: Whether each node is allocated its own public IP. + * + *

Some scenarios may require nodes in a node pool to receive their own dedicated public IP addresses. A common + * scenario is for gaming workloads, where a console needs to make a direct connection to a cloud virtual machine to + * minimize hops. For more information see [assigning a public IP per * node](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#assign-a-public-ip-per-node-for-your-node-pools). * The default is false. * @@ -667,10 +687,11 @@ public Boolean enableNodePublicIp() { } /** - * Set the enableNodePublicIp property: Whether each node is allocated its own public IP. Some scenarios may require - * nodes in a node pool to receive their own dedicated public IP addresses. A common scenario is for gaming - * workloads, where a console needs to make a direct connection to a cloud virtual machine to minimize hops. For - * more information see [assigning a public IP per + * Set the enableNodePublicIp property: Whether each node is allocated its own public IP. + * + *

Some scenarios may require nodes in a node pool to receive their own dedicated public IP addresses. A common + * scenario is for gaming workloads, where a console needs to make a direct connection to a cloud virtual machine to + * minimize hops. For more information see [assigning a public IP per * node](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#assign-a-public-ip-per-node-for-your-node-pools). * The default is false. * @@ -686,8 +707,9 @@ public AgentPoolInner withEnableNodePublicIp(Boolean enableNodePublicIp) { } /** - * Get the nodePublicIpPrefixId property: The public IP prefix ID which VM nodes should use IPs from. This is of the - * form: + * Get the nodePublicIpPrefixId property: The public IP prefix ID which VM nodes should use IPs from. + * + *

This is of the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. * * @return the nodePublicIpPrefixId value. @@ -697,8 +719,9 @@ public String nodePublicIpPrefixId() { } /** - * Set the nodePublicIpPrefixId property: The public IP prefix ID which VM nodes should use IPs from. This is of the - * form: + * Set the nodePublicIpPrefixId property: The public IP prefix ID which VM nodes should use IPs from. + * + *

This is of the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. * * @param nodePublicIpPrefixId the nodePublicIpPrefixId value to set. @@ -738,8 +761,9 @@ public AgentPoolInner withScaleSetPriority(ScaleSetPriority scaleSetPriority) { } /** - * Get the scaleSetEvictionPolicy property: The Virtual Machine Scale Set eviction policy. This cannot be specified - * unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. + * Get the scaleSetEvictionPolicy property: The Virtual Machine Scale Set eviction policy. + * + *

This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. * * @return the scaleSetEvictionPolicy value. */ @@ -748,8 +772,9 @@ public ScaleSetEvictionPolicy scaleSetEvictionPolicy() { } /** - * Set the scaleSetEvictionPolicy property: The Virtual Machine Scale Set eviction policy. This cannot be specified - * unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. + * Set the scaleSetEvictionPolicy property: The Virtual Machine Scale Set eviction policy. + * + *

This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. * * @param scaleSetEvictionPolicy the scaleSetEvictionPolicy value to set. * @return the AgentPoolInner object itself. @@ -765,7 +790,8 @@ public AgentPoolInner withScaleSetEvictionPolicy(ScaleSetEvictionPolicy scaleSet /** * Get the spotMaxPrice property: The max price (in US Dollars) you are willing to pay for spot instances. Possible * values are any decimal value greater than zero or -1 which indicates default price to be up-to on-demand. - * Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any + * + *

Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any * on-demand price. For more details on spot pricing, see [spot VMs * pricing](https://docs.microsoft.com/azure/virtual-machines/spot-vms#pricing). * @@ -778,7 +804,8 @@ public Float spotMaxPrice() { /** * Set the spotMaxPrice property: The max price (in US Dollars) you are willing to pay for spot instances. Possible * values are any decimal value greater than zero or -1 which indicates default price to be up-to on-demand. - * Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any + * + *

Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any * on-demand price. For more details on spot pricing, see [spot VMs * pricing](https://docs.microsoft.com/azure/virtual-machines/spot-vms#pricing). * @@ -888,8 +915,9 @@ public AgentPoolInner withProximityPlacementGroupId(String proximityPlacementGro } /** - * Get the kubeletConfig property: Kubelet configurations of agent nodes. The Kubelet configuration on the agent - * pool nodes. + * Get the kubeletConfig property: Kubelet configurations of agent nodes. + * + *

The Kubelet configuration on the agent pool nodes. * * @return the kubeletConfig value. */ @@ -898,8 +926,9 @@ public KubeletConfig kubeletConfig() { } /** - * Set the kubeletConfig property: Kubelet configurations of agent nodes. The Kubelet configuration on the agent - * pool nodes. + * Set the kubeletConfig property: Kubelet configurations of agent nodes. + * + *

The Kubelet configuration on the agent pool nodes. * * @param kubeletConfig the kubeletConfig value to set. * @return the AgentPoolInner object itself. @@ -913,8 +942,9 @@ public AgentPoolInner withKubeletConfig(KubeletConfig kubeletConfig) { } /** - * Get the linuxOSConfig property: OS configurations of Linux agent nodes. The OS configuration of Linux agent - * nodes. + * Get the linuxOSConfig property: OS configurations of Linux agent nodes. + * + *

The OS configuration of Linux agent nodes. * * @return the linuxOSConfig value. */ @@ -923,8 +953,9 @@ public LinuxOSConfig linuxOSConfig() { } /** - * Set the linuxOSConfig property: OS configurations of Linux agent nodes. The OS configuration of Linux agent - * nodes. + * Set the linuxOSConfig property: OS configurations of Linux agent nodes. + * + *

The OS configuration of Linux agent nodes. * * @param linuxOSConfig the linuxOSConfig value to set. * @return the AgentPoolInner object itself. @@ -938,8 +969,9 @@ public AgentPoolInner withLinuxOSConfig(LinuxOSConfig linuxOSConfig) { } /** - * Get the enableEncryptionAtHost property: Whether to enable host based OS and data drive encryption. This is only - * supported on certain VM sizes and in certain Azure regions. For more information, see: + * Get the enableEncryptionAtHost property: Whether to enable host based OS and data drive encryption. + * + *

This is only supported on certain VM sizes and in certain Azure regions. For more information, see: * https://docs.microsoft.com/azure/aks/enable-host-encryption. * * @return the enableEncryptionAtHost value. @@ -949,8 +981,9 @@ public Boolean enableEncryptionAtHost() { } /** - * Set the enableEncryptionAtHost property: Whether to enable host based OS and data drive encryption. This is only - * supported on certain VM sizes and in certain Azure regions. For more information, see: + * Set the enableEncryptionAtHost property: Whether to enable host based OS and data drive encryption. + * + *

This is only supported on certain VM sizes and in certain Azure regions. For more information, see: * https://docs.microsoft.com/azure/aks/enable-host-encryption. * * @param enableEncryptionAtHost the enableEncryptionAtHost value to set. @@ -988,7 +1021,9 @@ public AgentPoolInner withEnableUltraSsd(Boolean enableUltraSsd) { } /** - * Get the enableFips property: Whether to use a FIPS-enabled OS. See [Add a FIPS-enabled node + * Get the enableFips property: Whether to use a FIPS-enabled OS. + * + *

See [Add a FIPS-enabled node * pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#add-a-fips-enabled-node-pool-preview) for more * details. * @@ -999,7 +1034,9 @@ public Boolean enableFips() { } /** - * Set the enableFips property: Whether to use a FIPS-enabled OS. See [Add a FIPS-enabled node + * Set the enableFips property: Whether to use a FIPS-enabled OS. + * + *

See [Add a FIPS-enabled node * pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#add-a-fips-enabled-node-pool-preview) for more * details. * @@ -1064,6 +1101,41 @@ public AgentPoolInner withCreationData(CreationData creationData) { return this; } + /** + * Get the hostGroupId property: The fully qualified resource ID of the Dedicated Host Group to provision virtual + * machines from, used only in creation scenario and not allowed to changed once set. + * + *

This is of the form: + * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. + * For more information see [Azure dedicated + * hosts](https://docs.microsoft.com/azure/virtual-machines/dedicated-hosts). + * + * @return the hostGroupId value. + */ + public String hostGroupId() { + return this.innerProperties() == null ? null : this.innerProperties().hostGroupId(); + } + + /** + * Set the hostGroupId property: The fully qualified resource ID of the Dedicated Host Group to provision virtual + * machines from, used only in creation scenario and not allowed to changed once set. + * + *

This is of the form: + * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. + * For more information see [Azure dedicated + * hosts](https://docs.microsoft.com/azure/virtual-machines/dedicated-hosts). + * + * @param hostGroupId the hostGroupId value to set. + * @return the AgentPoolInner object itself. + */ + public AgentPoolInner withHostGroupId(String hostGroupId) { + if (this.innerProperties() == null) { + this.innerProperties = new ManagedClusterAgentPoolProfileProperties(); + } + this.innerProperties().withHostGroupId(hostGroupId); + return this; + } + /** * Validates the instance. * diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/MaintenanceConfigurationInner.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/MaintenanceConfigurationInner.java index 803931bbe208..3bc9b0961fdc 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/MaintenanceConfigurationInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/MaintenanceConfigurationInner.java @@ -13,9 +13,10 @@ import java.util.List; /** - * Planned maintenance configuration, used to configure when updates can be deployed to a Managed Cluster. See [planned - * maintenance](https://docs.microsoft.com/azure/aks/planned-maintenance) for more information about planned - * maintenance. + * Planned maintenance configuration, used to configure when updates can be deployed to a Managed Cluster. + * + *

See [planned maintenance](https://docs.microsoft.com/azure/aks/planned-maintenance) for more information about + * planned maintenance. */ @Fluent public final class MaintenanceConfigurationInner extends SubResource { @@ -89,8 +90,10 @@ public MaintenanceConfigurationInner withId(String id) { } /** - * Get the timeInWeek property: Time slots during the week when planned maintenance is allowed to proceed. If two - * array entries specify the same day of the week, the applied configuration is the union of times in both entries. + * Get the timeInWeek property: Time slots during the week when planned maintenance is allowed to proceed. + * + *

If two array entries specify the same day of the week, the applied configuration is the union of times in both + * entries. * * @return the timeInWeek value. */ @@ -99,8 +102,10 @@ public List timeInWeek() { } /** - * Set the timeInWeek property: Time slots during the week when planned maintenance is allowed to proceed. If two - * array entries specify the same day of the week, the applied configuration is the union of times in both entries. + * Set the timeInWeek property: Time slots during the week when planned maintenance is allowed to proceed. + * + *

If two array entries specify the same day of the week, the applied configuration is the union of times in both + * entries. * * @param timeInWeek the timeInWeek value to set. * @return the MaintenanceConfigurationInner object itself. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/MaintenanceConfigurationProperties.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/MaintenanceConfigurationProperties.java index ccd4d0b3092c..913bec17acd1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/MaintenanceConfigurationProperties.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/MaintenanceConfigurationProperties.java @@ -15,8 +15,10 @@ public final class MaintenanceConfigurationProperties { /* * Time slots during the week when planned maintenance is allowed to - * proceed. If two array entries specify the same day of the week, the - * applied configuration is the union of times in both entries. + * proceed. + * + * If two array entries specify the same day of the week, the applied + * configuration is the union of times in both entries. */ @JsonProperty(value = "timeInWeek") private List timeInWeek; @@ -28,8 +30,10 @@ public final class MaintenanceConfigurationProperties { private List notAllowedTime; /** - * Get the timeInWeek property: Time slots during the week when planned maintenance is allowed to proceed. If two - * array entries specify the same day of the week, the applied configuration is the union of times in both entries. + * Get the timeInWeek property: Time slots during the week when planned maintenance is allowed to proceed. + * + *

If two array entries specify the same day of the week, the applied configuration is the union of times in both + * entries. * * @return the timeInWeek value. */ @@ -38,8 +42,10 @@ public List timeInWeek() { } /** - * Set the timeInWeek property: Time slots during the week when planned maintenance is allowed to proceed. If two - * array entries specify the same day of the week, the applied configuration is the union of times in both entries. + * Set the timeInWeek property: Time slots during the week when planned maintenance is allowed to proceed. + * + *

If two array entries specify the same day of the week, the applied configuration is the union of times in both + * entries. * * @param timeInWeek the timeInWeek value to set. * @return the MaintenanceConfigurationProperties object itself. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterAgentPoolProfileProperties.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterAgentPoolProfileProperties.java index 3fc34061fbb0..2105e994461d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterAgentPoolProfileProperties.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterAgentPoolProfileProperties.java @@ -38,10 +38,12 @@ public class ManagedClusterAgentPoolProfileProperties { private Integer count; /* - * The size of the agent pool VMs. VM size availability varies by region. - * If a node contains insufficient compute resources (memory, cpu, etc) - * pods might fail to run correctly. For more details on restricted VM - * sizes, see: https://docs.microsoft.com/azure/aks/quotas-skus-regions + * The size of the agent pool VMs. + * + * VM size availability varies by region. If a node contains insufficient + * compute resources (memory, cpu, etc) pods might fail to run correctly. + * For more details on restricted VM sizes, see: + * https://docs.microsoft.com/azure/aks/quotas-skus-regions */ @JsonProperty(value = "vmSize") private String vmSize; @@ -55,10 +57,12 @@ public class ManagedClusterAgentPoolProfileProperties { private Integer osDiskSizeGB; /* - * The OS disk type to be used for machines in the agent pool. The default - * is 'Ephemeral' if the VM supports it and has a cache disk larger than - * the requested OSDiskSizeGB. Otherwise, defaults to 'Managed'. May not be - * changed after creation. For more information see [Ephemeral + * The OS disk type to be used for machines in the agent pool. + * + * The default is 'Ephemeral' if the VM supports it and has a cache disk + * larger than the requested OSDiskSizeGB. Otherwise, defaults to + * 'Managed'. May not be changed after creation. For more information see + * [Ephemeral * OS](https://docs.microsoft.com/azure/aks/cluster-configuration#ephemeral-os). */ @JsonProperty(value = "osDiskType") @@ -79,18 +83,21 @@ public class ManagedClusterAgentPoolProfileProperties { /* * The ID of the subnet which agent pool nodes and optionally pods will - * join on startup. If this is not specified, a VNET and subnet will be - * generated and used. If no podSubnetID is specified, this applies to - * nodes and pods, otherwise it applies to just nodes. This is of the form: + * join on startup. + * + * If this is not specified, a VNET and subnet will be generated and used. + * If no podSubnetID is specified, this applies to nodes and pods, + * otherwise it applies to just nodes. This is of the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName} */ @JsonProperty(value = "vnetSubnetID") private String vnetSubnetId; /* - * The ID of the subnet which pods will join when launched. If omitted, pod - * IPs are statically assigned on the node subnet (see vnetSubnetID for - * more details). This is of the form: + * The ID of the subnet which pods will join when launched. + * + * If omitted, pod IPs are statically assigned on the node subnet (see + * vnetSubnetID for more details). This is of the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName} */ @JsonProperty(value = "podSubnetID") @@ -148,35 +155,38 @@ public class ManagedClusterAgentPoolProfileProperties { private AgentPoolType type; /* - * The mode of an agent pool. A cluster must have at least one 'System' - * Agent Pool at all times. For additional information on agent pool - * restrictions and best practices, see: - * https://docs.microsoft.com/azure/aks/use-system-pools + * The mode of an agent pool. + * + * A cluster must have at least one 'System' Agent Pool at all times. For + * additional information on agent pool restrictions and best practices, + * see: https://docs.microsoft.com/azure/aks/use-system-pools */ @JsonProperty(value = "mode") private AgentPoolMode mode; /* - * The version of Kubernetes specified by the user. Both patch version - * (e.g. 1.20.13) and (e.g. 1.20) are - * supported. When is specified, the latest supported GA - * patch version is chosen automatically. Updating the cluster with the - * same once it has been created (e.g. 1.14.x -> 1.14) will - * not trigger an upgrade, even if a newer patch version is available. As a - * best practice, you should upgrade all node pools in an AKS cluster to - * the same Kubernetes version. The node pool version must have the same - * major version as the control plane. The node pool minor version must be - * within two minor versions of the control plane version. The node pool - * version cannot be greater than the control plane version. For more - * information see [upgrading a node + * The version of Kubernetes specified by the user. + * + * Both patch version (e.g. 1.20.13) and + * (e.g. 1.20) are supported. When is specified, the latest + * supported GA patch version is chosen automatically. Updating the cluster + * with the same once it has been created (e.g. 1.14.x -> + * 1.14) will not trigger an upgrade, even if a newer patch version is + * available. As a best practice, you should upgrade all node pools in an + * AKS cluster to the same Kubernetes version. The node pool version must + * have the same major version as the control plane. The node pool minor + * version must be within two minor versions of the control plane version. + * The node pool version cannot be greater than the control plane version. + * For more information see [upgrading a node * pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#upgrade-a-node-pool). */ @JsonProperty(value = "orchestratorVersion") private String orchestratorVersion; /* - * The version of Kubernetes the Agent Pool is running. If - * orchestratorVersion is a fully specified version , + * The version of Kubernetes the Agent Pool is running. + * + * If orchestratorVersion is a fully specified version , * this field will be exactly equal to it. If orchestratorVersion is * , this field will contain the full * version being used. @@ -220,11 +230,13 @@ public class ManagedClusterAgentPoolProfileProperties { private List availabilityZones; /* - * Whether each node is allocated its own public IP. Some scenarios may - * require nodes in a node pool to receive their own dedicated public IP - * addresses. A common scenario is for gaming workloads, where a console - * needs to make a direct connection to a cloud virtual machine to minimize - * hops. For more information see [assigning a public IP per + * Whether each node is allocated its own public IP. + * + * Some scenarios may require nodes in a node pool to receive their own + * dedicated public IP addresses. A common scenario is for gaming + * workloads, where a console needs to make a direct connection to a cloud + * virtual machine to minimize hops. For more information see [assigning a + * public IP per * node](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#assign-a-public-ip-per-node-for-your-node-pools). * The default is false. */ @@ -232,8 +244,9 @@ public class ManagedClusterAgentPoolProfileProperties { private Boolean enableNodePublicIp; /* - * The public IP prefix ID which VM nodes should use IPs from. This is of - * the form: + * The public IP prefix ID which VM nodes should use IPs from. + * + * This is of the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName} */ @JsonProperty(value = "nodePublicIPPrefixID") @@ -247,9 +260,10 @@ public class ManagedClusterAgentPoolProfileProperties { private ScaleSetPriority scaleSetPriority; /* - * The Virtual Machine Scale Set eviction policy. This cannot be specified - * unless the scaleSetPriority is 'Spot'. If not specified, the default is - * 'Delete'. + * The Virtual Machine Scale Set eviction policy. + * + * This cannot be specified unless the scaleSetPriority is 'Spot'. If not + * specified, the default is 'Delete'. */ @JsonProperty(value = "scaleSetEvictionPolicy") private ScaleSetEvictionPolicy scaleSetEvictionPolicy; @@ -257,9 +271,11 @@ public class ManagedClusterAgentPoolProfileProperties { /* * The max price (in US Dollars) you are willing to pay for spot instances. * Possible values are any decimal value greater than zero or -1 which - * indicates default price to be up-to on-demand. Possible values are any - * decimal value greater than zero or -1 which indicates the willingness to - * pay any on-demand price. For more details on spot pricing, see [spot VMs + * indicates default price to be up-to on-demand. + * + * Possible values are any decimal value greater than zero or -1 which + * indicates the willingness to pay any on-demand price. For more details + * on spot pricing, see [spot VMs * pricing](https://docs.microsoft.com/azure/virtual-machines/spot-vms#pricing) */ @JsonProperty(value = "spotMaxPrice") @@ -293,23 +309,26 @@ public class ManagedClusterAgentPoolProfileProperties { private String proximityPlacementGroupId; /* - * Kubelet configurations of agent nodes. The Kubelet configuration on the - * agent pool nodes. + * Kubelet configurations of agent nodes. + * + * The Kubelet configuration on the agent pool nodes. */ @JsonProperty(value = "kubeletConfig") private KubeletConfig kubeletConfig; /* - * OS configurations of Linux agent nodes. The OS configuration of Linux - * agent nodes. + * OS configurations of Linux agent nodes. + * + * The OS configuration of Linux agent nodes. */ @JsonProperty(value = "linuxOSConfig") private LinuxOSConfig linuxOSConfig; /* - * Whether to enable host based OS and data drive encryption. This is only - * supported on certain VM sizes and in certain Azure regions. For more - * information, see: + * Whether to enable host based OS and data drive encryption. + * + * This is only supported on certain VM sizes and in certain Azure regions. + * For more information, see: * https://docs.microsoft.com/azure/aks/enable-host-encryption */ @JsonProperty(value = "enableEncryptionAtHost") @@ -322,7 +341,9 @@ public class ManagedClusterAgentPoolProfileProperties { private Boolean enableUltraSsd; /* - * Whether to use a FIPS-enabled OS. See [Add a FIPS-enabled node + * Whether to use a FIPS-enabled OS. + * + * See [Add a FIPS-enabled node * pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#add-a-fips-enabled-node-pool-preview) * for more details. */ @@ -343,6 +364,19 @@ public class ManagedClusterAgentPoolProfileProperties { @JsonProperty(value = "creationData") private CreationData creationData; + /* + * The fully qualified resource ID of the Dedicated Host Group to provision + * virtual machines from, used only in creation scenario and not allowed to + * changed once set. + * + * This is of the form: + * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. + * For more information see [Azure dedicated + * hosts](https://docs.microsoft.com/azure/virtual-machines/dedicated-hosts). + */ + @JsonProperty(value = "hostGroupID") + private String hostGroupId; + /** * Get the count property: Number of agents (VMs) to host docker containers. Allowed values must be in the range of * 0 to 1000 (inclusive) for user pools and in the range of 1 to 1000 (inclusive) for system pools. The default @@ -368,9 +402,11 @@ public ManagedClusterAgentPoolProfileProperties withCount(Integer count) { } /** - * Get the vmSize property: The size of the agent pool VMs. VM size availability varies by region. If a node - * contains insufficient compute resources (memory, cpu, etc) pods might fail to run correctly. For more details on - * restricted VM sizes, see: https://docs.microsoft.com/azure/aks/quotas-skus-regions. + * Get the vmSize property: The size of the agent pool VMs. + * + *

VM size availability varies by region. If a node contains insufficient compute resources (memory, cpu, etc) + * pods might fail to run correctly. For more details on restricted VM sizes, see: + * https://docs.microsoft.com/azure/aks/quotas-skus-regions. * * @return the vmSize value. */ @@ -379,9 +415,11 @@ public String vmSize() { } /** - * Set the vmSize property: The size of the agent pool VMs. VM size availability varies by region. If a node - * contains insufficient compute resources (memory, cpu, etc) pods might fail to run correctly. For more details on - * restricted VM sizes, see: https://docs.microsoft.com/azure/aks/quotas-skus-regions. + * Set the vmSize property: The size of the agent pool VMs. + * + *

VM size availability varies by region. If a node contains insufficient compute resources (memory, cpu, etc) + * pods might fail to run correctly. For more details on restricted VM sizes, see: + * https://docs.microsoft.com/azure/aks/quotas-skus-regions. * * @param vmSize the vmSize value to set. * @return the ManagedClusterAgentPoolProfileProperties object itself. @@ -414,9 +452,10 @@ public ManagedClusterAgentPoolProfileProperties withOsDiskSizeGB(Integer osDiskS } /** - * Get the osDiskType property: The OS disk type to be used for machines in the agent pool. The default is - * 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. Otherwise, - * defaults to 'Managed'. May not be changed after creation. For more information see [Ephemeral + * Get the osDiskType property: The OS disk type to be used for machines in the agent pool. + * + *

The default is 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. + * Otherwise, defaults to 'Managed'. May not be changed after creation. For more information see [Ephemeral * OS](https://docs.microsoft.com/azure/aks/cluster-configuration#ephemeral-os). * * @return the osDiskType value. @@ -426,9 +465,10 @@ public OSDiskType osDiskType() { } /** - * Set the osDiskType property: The OS disk type to be used for machines in the agent pool. The default is - * 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. Otherwise, - * defaults to 'Managed'. May not be changed after creation. For more information see [Ephemeral + * Set the osDiskType property: The OS disk type to be used for machines in the agent pool. + * + *

The default is 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. + * Otherwise, defaults to 'Managed'. May not be changed after creation. For more information see [Ephemeral * OS](https://docs.microsoft.com/azure/aks/cluster-configuration#ephemeral-os). * * @param osDiskType the osDiskType value to set. @@ -483,8 +523,10 @@ public ManagedClusterAgentPoolProfileProperties withWorkloadRuntime(WorkloadRunt /** * Get the vnetSubnetId property: The ID of the subnet which agent pool nodes and optionally pods will join on - * startup. If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, - * this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: + * startup. + * + *

If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this + * applies to nodes and pods, otherwise it applies to just nodes. This is of the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. * * @return the vnetSubnetId value. @@ -495,8 +537,10 @@ public String vnetSubnetId() { /** * Set the vnetSubnetId property: The ID of the subnet which agent pool nodes and optionally pods will join on - * startup. If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, - * this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: + * startup. + * + *

If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this + * applies to nodes and pods, otherwise it applies to just nodes. This is of the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. * * @param vnetSubnetId the vnetSubnetId value to set. @@ -508,8 +552,10 @@ public ManagedClusterAgentPoolProfileProperties withVnetSubnetId(String vnetSubn } /** - * Get the podSubnetId property: The ID of the subnet which pods will join when launched. If omitted, pod IPs are - * statically assigned on the node subnet (see vnetSubnetID for more details). This is of the form: + * Get the podSubnetId property: The ID of the subnet which pods will join when launched. + * + *

If omitted, pod IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is of + * the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. * * @return the podSubnetId value. @@ -519,8 +565,10 @@ public String podSubnetId() { } /** - * Set the podSubnetId property: The ID of the subnet which pods will join when launched. If omitted, pod IPs are - * statically assigned on the node subnet (see vnetSubnetID for more details). This is of the form: + * Set the podSubnetId property: The ID of the subnet which pods will join when launched. + * + *

If omitted, pod IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is of + * the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. * * @param podSubnetId the podSubnetId value to set. @@ -694,9 +742,10 @@ public ManagedClusterAgentPoolProfileProperties withType(AgentPoolType type) { } /** - * Get the mode property: The mode of an agent pool. A cluster must have at least one 'System' Agent Pool at all - * times. For additional information on agent pool restrictions and best practices, see: - * https://docs.microsoft.com/azure/aks/use-system-pools. + * Get the mode property: The mode of an agent pool. + * + *

A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool + * restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. * * @return the mode value. */ @@ -705,9 +754,10 @@ public AgentPoolMode mode() { } /** - * Set the mode property: The mode of an agent pool. A cluster must have at least one 'System' Agent Pool at all - * times. For additional information on agent pool restrictions and best practices, see: - * https://docs.microsoft.com/azure/aks/use-system-pools. + * Set the mode property: The mode of an agent pool. + * + *

A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool + * restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. * * @param mode the mode value to set. * @return the ManagedClusterAgentPoolProfileProperties object itself. @@ -718,14 +768,15 @@ public ManagedClusterAgentPoolProfileProperties withMode(AgentPoolMode mode) { } /** - * Get the orchestratorVersion property: The version of Kubernetes specified by the user. Both patch version - * <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. When - * <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating the - * cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger an - * upgrade, even if a newer patch version is available. As a best practice, you should upgrade all node pools in an - * AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control - * plane. The node pool minor version must be within two minor versions of the control plane version. The node pool - * version cannot be greater than the control plane version. For more information see [upgrading a node + * Get the orchestratorVersion property: The version of Kubernetes specified by the user. + * + *

Both patch version <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. + * When <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating + * the cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger + * an upgrade, even if a newer patch version is available. As a best practice, you should upgrade all node pools in + * an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the + * control plane. The node pool minor version must be within two minor versions of the control plane version. The + * node pool version cannot be greater than the control plane version. For more information see [upgrading a node * pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#upgrade-a-node-pool). * * @return the orchestratorVersion value. @@ -735,14 +786,15 @@ public String orchestratorVersion() { } /** - * Set the orchestratorVersion property: The version of Kubernetes specified by the user. Both patch version - * <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. When - * <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating the - * cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger an - * upgrade, even if a newer patch version is available. As a best practice, you should upgrade all node pools in an - * AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control - * plane. The node pool minor version must be within two minor versions of the control plane version. The node pool - * version cannot be greater than the control plane version. For more information see [upgrading a node + * Set the orchestratorVersion property: The version of Kubernetes specified by the user. + * + *

Both patch version <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. + * When <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating + * the cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger + * an upgrade, even if a newer patch version is available. As a best practice, you should upgrade all node pools in + * an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the + * control plane. The node pool minor version must be within two minor versions of the control plane version. The + * node pool version cannot be greater than the control plane version. For more information see [upgrading a node * pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#upgrade-a-node-pool). * * @param orchestratorVersion the orchestratorVersion value to set. @@ -754,10 +806,11 @@ public ManagedClusterAgentPoolProfileProperties withOrchestratorVersion(String o } /** - * Get the currentOrchestratorVersion property: The version of Kubernetes the Agent Pool is running. If - * orchestratorVersion is a fully specified version <major.minor.patch>, this field will be exactly equal to - * it. If orchestratorVersion is <major.minor>, this field will contain the full <major.minor.patch> - * version being used. + * Get the currentOrchestratorVersion property: The version of Kubernetes the Agent Pool is running. + * + *

If orchestratorVersion is a fully specified version <major.minor.patch>, this field will be exactly + * equal to it. If orchestratorVersion is <major.minor>, this field will contain the full + * <major.minor.patch> version being used. * * @return the currentOrchestratorVersion value. */ @@ -850,10 +903,11 @@ public ManagedClusterAgentPoolProfileProperties withAvailabilityZones(ListSome scenarios may require nodes in a node pool to receive their own dedicated public IP addresses. A common + * scenario is for gaming workloads, where a console needs to make a direct connection to a cloud virtual machine to + * minimize hops. For more information see [assigning a public IP per * node](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#assign-a-public-ip-per-node-for-your-node-pools). * The default is false. * @@ -864,10 +918,11 @@ public Boolean enableNodePublicIp() { } /** - * Set the enableNodePublicIp property: Whether each node is allocated its own public IP. Some scenarios may require - * nodes in a node pool to receive their own dedicated public IP addresses. A common scenario is for gaming - * workloads, where a console needs to make a direct connection to a cloud virtual machine to minimize hops. For - * more information see [assigning a public IP per + * Set the enableNodePublicIp property: Whether each node is allocated its own public IP. + * + *

Some scenarios may require nodes in a node pool to receive their own dedicated public IP addresses. A common + * scenario is for gaming workloads, where a console needs to make a direct connection to a cloud virtual machine to + * minimize hops. For more information see [assigning a public IP per * node](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#assign-a-public-ip-per-node-for-your-node-pools). * The default is false. * @@ -880,8 +935,9 @@ public ManagedClusterAgentPoolProfileProperties withEnableNodePublicIp(Boolean e } /** - * Get the nodePublicIpPrefixId property: The public IP prefix ID which VM nodes should use IPs from. This is of the - * form: + * Get the nodePublicIpPrefixId property: The public IP prefix ID which VM nodes should use IPs from. + * + *

This is of the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. * * @return the nodePublicIpPrefixId value. @@ -891,8 +947,9 @@ public String nodePublicIpPrefixId() { } /** - * Set the nodePublicIpPrefixId property: The public IP prefix ID which VM nodes should use IPs from. This is of the - * form: + * Set the nodePublicIpPrefixId property: The public IP prefix ID which VM nodes should use IPs from. + * + *

This is of the form: * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. * * @param nodePublicIpPrefixId the nodePublicIpPrefixId value to set. @@ -926,8 +983,9 @@ public ManagedClusterAgentPoolProfileProperties withScaleSetPriority(ScaleSetPri } /** - * Get the scaleSetEvictionPolicy property: The Virtual Machine Scale Set eviction policy. This cannot be specified - * unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. + * Get the scaleSetEvictionPolicy property: The Virtual Machine Scale Set eviction policy. + * + *

This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. * * @return the scaleSetEvictionPolicy value. */ @@ -936,8 +994,9 @@ public ScaleSetEvictionPolicy scaleSetEvictionPolicy() { } /** - * Set the scaleSetEvictionPolicy property: The Virtual Machine Scale Set eviction policy. This cannot be specified - * unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. + * Set the scaleSetEvictionPolicy property: The Virtual Machine Scale Set eviction policy. + * + *

This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. * * @param scaleSetEvictionPolicy the scaleSetEvictionPolicy value to set. * @return the ManagedClusterAgentPoolProfileProperties object itself. @@ -951,7 +1010,8 @@ public ManagedClusterAgentPoolProfileProperties withScaleSetEvictionPolicy( /** * Get the spotMaxPrice property: The max price (in US Dollars) you are willing to pay for spot instances. Possible * values are any decimal value greater than zero or -1 which indicates default price to be up-to on-demand. - * Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any + * + *

Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any * on-demand price. For more details on spot pricing, see [spot VMs * pricing](https://docs.microsoft.com/azure/virtual-machines/spot-vms#pricing). * @@ -964,7 +1024,8 @@ public Float spotMaxPrice() { /** * Set the spotMaxPrice property: The max price (in US Dollars) you are willing to pay for spot instances. Possible * values are any decimal value greater than zero or -1 which indicates default price to be up-to on-demand. - * Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any + * + *

Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any * on-demand price. For more details on spot pricing, see [spot VMs * pricing](https://docs.microsoft.com/azure/virtual-machines/spot-vms#pricing). * @@ -1059,8 +1120,9 @@ public ManagedClusterAgentPoolProfileProperties withProximityPlacementGroupId(St } /** - * Get the kubeletConfig property: Kubelet configurations of agent nodes. The Kubelet configuration on the agent - * pool nodes. + * Get the kubeletConfig property: Kubelet configurations of agent nodes. + * + *

The Kubelet configuration on the agent pool nodes. * * @return the kubeletConfig value. */ @@ -1069,8 +1131,9 @@ public KubeletConfig kubeletConfig() { } /** - * Set the kubeletConfig property: Kubelet configurations of agent nodes. The Kubelet configuration on the agent - * pool nodes. + * Set the kubeletConfig property: Kubelet configurations of agent nodes. + * + *

The Kubelet configuration on the agent pool nodes. * * @param kubeletConfig the kubeletConfig value to set. * @return the ManagedClusterAgentPoolProfileProperties object itself. @@ -1081,8 +1144,9 @@ public ManagedClusterAgentPoolProfileProperties withKubeletConfig(KubeletConfig } /** - * Get the linuxOSConfig property: OS configurations of Linux agent nodes. The OS configuration of Linux agent - * nodes. + * Get the linuxOSConfig property: OS configurations of Linux agent nodes. + * + *

The OS configuration of Linux agent nodes. * * @return the linuxOSConfig value. */ @@ -1091,8 +1155,9 @@ public LinuxOSConfig linuxOSConfig() { } /** - * Set the linuxOSConfig property: OS configurations of Linux agent nodes. The OS configuration of Linux agent - * nodes. + * Set the linuxOSConfig property: OS configurations of Linux agent nodes. + * + *

The OS configuration of Linux agent nodes. * * @param linuxOSConfig the linuxOSConfig value to set. * @return the ManagedClusterAgentPoolProfileProperties object itself. @@ -1103,8 +1168,9 @@ public ManagedClusterAgentPoolProfileProperties withLinuxOSConfig(LinuxOSConfig } /** - * Get the enableEncryptionAtHost property: Whether to enable host based OS and data drive encryption. This is only - * supported on certain VM sizes and in certain Azure regions. For more information, see: + * Get the enableEncryptionAtHost property: Whether to enable host based OS and data drive encryption. + * + *

This is only supported on certain VM sizes and in certain Azure regions. For more information, see: * https://docs.microsoft.com/azure/aks/enable-host-encryption. * * @return the enableEncryptionAtHost value. @@ -1114,8 +1180,9 @@ public Boolean enableEncryptionAtHost() { } /** - * Set the enableEncryptionAtHost property: Whether to enable host based OS and data drive encryption. This is only - * supported on certain VM sizes and in certain Azure regions. For more information, see: + * Set the enableEncryptionAtHost property: Whether to enable host based OS and data drive encryption. + * + *

This is only supported on certain VM sizes and in certain Azure regions. For more information, see: * https://docs.microsoft.com/azure/aks/enable-host-encryption. * * @param enableEncryptionAtHost the enableEncryptionAtHost value to set. @@ -1147,7 +1214,9 @@ public ManagedClusterAgentPoolProfileProperties withEnableUltraSsd(Boolean enabl } /** - * Get the enableFips property: Whether to use a FIPS-enabled OS. See [Add a FIPS-enabled node + * Get the enableFips property: Whether to use a FIPS-enabled OS. + * + *

See [Add a FIPS-enabled node * pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#add-a-fips-enabled-node-pool-preview) for more * details. * @@ -1158,7 +1227,9 @@ public Boolean enableFips() { } /** - * Set the enableFips property: Whether to use a FIPS-enabled OS. See [Add a FIPS-enabled node + * Set the enableFips property: Whether to use a FIPS-enabled OS. + * + *

See [Add a FIPS-enabled node * pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#add-a-fips-enabled-node-pool-preview) for more * details. * @@ -1214,6 +1285,38 @@ public ManagedClusterAgentPoolProfileProperties withCreationData(CreationData cr return this; } + /** + * Get the hostGroupId property: The fully qualified resource ID of the Dedicated Host Group to provision virtual + * machines from, used only in creation scenario and not allowed to changed once set. + * + *

This is of the form: + * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. + * For more information see [Azure dedicated + * hosts](https://docs.microsoft.com/azure/virtual-machines/dedicated-hosts). + * + * @return the hostGroupId value. + */ + public String hostGroupId() { + return this.hostGroupId; + } + + /** + * Set the hostGroupId property: The fully qualified resource ID of the Dedicated Host Group to provision virtual + * machines from, used only in creation scenario and not allowed to changed once set. + * + *

This is of the form: + * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. + * For more information see [Azure dedicated + * hosts](https://docs.microsoft.com/azure/virtual-machines/dedicated-hosts). + * + * @param hostGroupId the hostGroupId value to set. + * @return the ManagedClusterAgentPoolProfileProperties object itself. + */ + public ManagedClusterAgentPoolProfileProperties withHostGroupId(String hostGroupId) { + this.hostGroupId = hostGroupId; + return this; + } + /** * Validates the instance. * diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterInner.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterInner.java index 4c86327cff8c..128112004df3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterInner.java @@ -168,14 +168,16 @@ public Integer maxAgentPools() { } /** - * Get the kubernetesVersion property: The version of Kubernetes specified by the user. Both patch version - * <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. When - * <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating the - * cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger an - * upgrade, even if a newer patch version is available. When you upgrade a supported AKS cluster, Kubernetes minor - * versions cannot be skipped. All upgrades must be performed sequentially by major version number. For example, - * upgrades between 1.14.x -> 1.15.x or 1.15.x -> 1.16.x are allowed, however 1.14.x -> 1.16.x is not - * allowed. See [upgrading an AKS cluster](https://docs.microsoft.com/azure/aks/upgrade-cluster) for more details. + * Get the kubernetesVersion property: The version of Kubernetes specified by the user. + * + *

Both patch version <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. + * When <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating + * the cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger + * an upgrade, even if a newer patch version is available. When you upgrade a supported AKS cluster, Kubernetes + * minor versions cannot be skipped. All upgrades must be performed sequentially by major version number. For + * example, upgrades between 1.14.x -> 1.15.x or 1.15.x -> 1.16.x are allowed, however 1.14.x -> 1.16.x is + * not allowed. See [upgrading an AKS cluster](https://docs.microsoft.com/azure/aks/upgrade-cluster) for more + * details. * * @return the kubernetesVersion value. */ @@ -184,14 +186,16 @@ public String kubernetesVersion() { } /** - * Set the kubernetesVersion property: The version of Kubernetes specified by the user. Both patch version - * <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. When - * <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating the - * cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger an - * upgrade, even if a newer patch version is available. When you upgrade a supported AKS cluster, Kubernetes minor - * versions cannot be skipped. All upgrades must be performed sequentially by major version number. For example, - * upgrades between 1.14.x -> 1.15.x or 1.15.x -> 1.16.x are allowed, however 1.14.x -> 1.16.x is not - * allowed. See [upgrading an AKS cluster](https://docs.microsoft.com/azure/aks/upgrade-cluster) for more details. + * Set the kubernetesVersion property: The version of Kubernetes specified by the user. + * + *

Both patch version <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. + * When <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating + * the cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger + * an upgrade, even if a newer patch version is available. When you upgrade a supported AKS cluster, Kubernetes + * minor versions cannot be skipped. All upgrades must be performed sequentially by major version number. For + * example, upgrades between 1.14.x -> 1.15.x or 1.15.x -> 1.16.x are allowed, however 1.14.x -> 1.16.x is + * not allowed. See [upgrading an AKS cluster](https://docs.microsoft.com/azure/aks/upgrade-cluster) for more + * details. * * @param kubernetesVersion the kubernetesVersion value to set. * @return the ManagedClusterInner object itself. @@ -205,9 +209,10 @@ public ManagedClusterInner withKubernetesVersion(String kubernetesVersion) { } /** - * Get the currentKubernetesVersion property: The version of Kubernetes the Managed Cluster is running. If - * kubernetesVersion was a fully specified version <major.minor.patch>, this field will be exactly equal to - * it. If kubernetesVersion was <major.minor>, this field will contain the full <major.minor.patch> + * Get the currentKubernetesVersion property: The version of Kubernetes the Managed Cluster is running. + * + *

If kubernetesVersion was a fully specified version <major.minor.patch>, this field will be exactly equal + * to it. If kubernetesVersion was <major.minor>, this field will contain the full <major.minor.patch> * version being used. * * @return the currentKubernetesVersion value. @@ -217,8 +222,9 @@ public String currentKubernetesVersion() { } /** - * Get the dnsPrefix property: The DNS prefix of the Managed Cluster. This cannot be updated once the Managed - * Cluster has been created. + * Get the dnsPrefix property: The DNS prefix of the Managed Cluster. + * + *

This cannot be updated once the Managed Cluster has been created. * * @return the dnsPrefix value. */ @@ -227,8 +233,9 @@ public String dnsPrefix() { } /** - * Set the dnsPrefix property: The DNS prefix of the Managed Cluster. This cannot be updated once the Managed - * Cluster has been created. + * Set the dnsPrefix property: The DNS prefix of the Managed Cluster. + * + *

This cannot be updated once the Managed Cluster has been created. * * @param dnsPrefix the dnsPrefix value to set. * @return the ManagedClusterInner object itself. @@ -242,8 +249,9 @@ public ManagedClusterInner withDnsPrefix(String dnsPrefix) { } /** - * Get the fqdnSubdomain property: The FQDN subdomain of the private cluster with custom private dns zone. This - * cannot be updated once the Managed Cluster has been created. + * Get the fqdnSubdomain property: The FQDN subdomain of the private cluster with custom private dns zone. + * + *

This cannot be updated once the Managed Cluster has been created. * * @return the fqdnSubdomain value. */ @@ -252,8 +260,9 @@ public String fqdnSubdomain() { } /** - * Set the fqdnSubdomain property: The FQDN subdomain of the private cluster with custom private dns zone. This - * cannot be updated once the Managed Cluster has been created. + * Set the fqdnSubdomain property: The FQDN subdomain of the private cluster with custom private dns zone. + * + *

This cannot be updated once the Managed Cluster has been created. * * @param fqdnSubdomain the fqdnSubdomain value to set. * @return the ManagedClusterInner object itself. @@ -286,9 +295,11 @@ public String privateFqdn() { /** * Get the azurePortalFqdn property: The special FQDN used by the Azure Portal to access the Managed Cluster. This - * FQDN is for use only by the Azure Portal and should not be used by other clients. The Azure Portal requires - * certain Cross-Origin Resource Sharing (CORS) headers to be sent in some responses, which Kubernetes APIServer - * doesn't handle by default. This special FQDN supports CORS, allowing the Azure Portal to function properly. + * FQDN is for use only by the Azure Portal and should not be used by other clients. + * + *

The Azure Portal requires certain Cross-Origin Resource Sharing (CORS) headers to be sent in some responses, + * which Kubernetes APIServer doesn't handle by default. This special FQDN supports CORS, allowing the Azure Portal + * to function properly. * * @return the azurePortalFqdn value. */ @@ -415,9 +426,10 @@ public ManagedClusterInner withAddonProfiles(MapSee [use AAD pod identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity) for more details on + * AAD pod identity integration. * * @return the podIdentityProfile value. */ @@ -426,9 +438,10 @@ public ManagedClusterPodIdentityProfile podIdentityProfile() { } /** - * Set the podIdentityProfile property: The pod identity profile of the Managed Cluster. See [use AAD pod - * identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity) for more details on AAD pod identity - * integration. + * Set the podIdentityProfile property: The pod identity profile of the Managed Cluster. + * + *

See [use AAD pod identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity) for more details on + * AAD pod identity integration. * * @param podIdentityProfile the podIdentityProfile value to set. * @return the ManagedClusterInner object itself. @@ -536,8 +549,9 @@ public ManagedClusterInner withNetworkProfile(ContainerServiceNetworkProfile net } /** - * Get the aadProfile property: AADProfile specifies attributes for Azure Active Directory integration. The Azure - * Active Directory configuration. + * Get the aadProfile property: AADProfile specifies attributes for Azure Active Directory integration. + * + *

The Azure Active Directory configuration. * * @return the aadProfile value. */ @@ -546,8 +560,9 @@ public ManagedClusterAadProfile aadProfile() { } /** - * Set the aadProfile property: AADProfile specifies attributes for Azure Active Directory integration. The Azure - * Active Directory configuration. + * Set the aadProfile property: AADProfile specifies attributes for Azure Active Directory integration. + * + *

The Azure Active Directory configuration. * * @param aadProfile the aadProfile value to set. * @return the ManagedClusterInner object itself. @@ -631,7 +646,9 @@ public ManagedClusterInner withApiServerAccessProfile(ManagedClusterApiServerAcc /** * Get the diskEncryptionSetId property: The Resource ID of the disk encryption set to use for enabling encryption - * at rest. This is of the form: + * at rest. + * + *

This is of the form: * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{encryptionSetName}'. * * @return the diskEncryptionSetId value. @@ -642,7 +659,9 @@ public String diskEncryptionSetId() { /** * Set the diskEncryptionSetId property: The Resource ID of the disk encryption set to use for enabling encryption - * at rest. This is of the form: + * at rest. + * + *

This is of the form: * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{encryptionSetName}'. * * @param diskEncryptionSetId the diskEncryptionSetId value to set. @@ -703,9 +722,10 @@ public ManagedClusterInner withPrivateLinkResources(ListIf set to true, getting static credentials will be disabled for this cluster. This must only be used on + * Managed Clusters that are AAD enabled. For more details see [disable local * accounts](https://docs.microsoft.com/azure/aks/managed-aad#disable-local-accounts-preview). * * @return the disableLocalAccounts value. @@ -715,9 +735,10 @@ public Boolean disableLocalAccounts() { } /** - * Set the disableLocalAccounts property: If local accounts should be disabled on the Managed Cluster. If set to - * true, getting static credentials will be disabled for this cluster. This must only be used on Managed Clusters - * that are AAD enabled. For more details see [disable local + * Set the disableLocalAccounts property: If local accounts should be disabled on the Managed Cluster. + * + *

If set to true, getting static credentials will be disabled for this cluster. This must only be used on + * Managed Clusters that are AAD enabled. For more details see [disable local * accounts](https://docs.microsoft.com/azure/aks/managed-aad#disable-local-accounts-preview). * * @param disableLocalAccounts the disableLocalAccounts value to set. @@ -801,8 +822,9 @@ public ManagedClusterInner withStorageProfile(ManagedClusterStorageProfile stora } /** - * Get the publicNetworkAccess property: PublicNetworkAccess of the managedCluster Allow or deny public network - * access for AKS. + * Get the publicNetworkAccess property: PublicNetworkAccess of the managedCluster + * + *

Allow or deny public network access for AKS. * * @return the publicNetworkAccess value. */ @@ -811,8 +833,9 @@ public PublicNetworkAccess publicNetworkAccess() { } /** - * Set the publicNetworkAccess property: PublicNetworkAccess of the managedCluster Allow or deny public network - * access for AKS. + * Set the publicNetworkAccess property: PublicNetworkAccess of the managedCluster + * + *

Allow or deny public network access for AKS. * * @param publicNetworkAccess the publicNetworkAccess value to set. * @return the ManagedClusterInner object itself. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterProperties.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterProperties.java index 110803b79045..934925f697c1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterProperties.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterProperties.java @@ -49,17 +49,18 @@ public final class ManagedClusterProperties { private Integer maxAgentPools; /* - * The version of Kubernetes specified by the user. Both patch version - * (e.g. 1.20.13) and (e.g. 1.20) are - * supported. When is specified, the latest supported GA - * patch version is chosen automatically. Updating the cluster with the - * same once it has been created (e.g. 1.14.x -> 1.14) will - * not trigger an upgrade, even if a newer patch version is available. When - * you upgrade a supported AKS cluster, Kubernetes minor versions cannot be - * skipped. All upgrades must be performed sequentially by major version - * number. For example, upgrades between 1.14.x -> 1.15.x or 1.15.x -> - * 1.16.x are allowed, however 1.14.x -> 1.16.x is not allowed. See - * [upgrading an AKS + * The version of Kubernetes specified by the user. + * + * Both patch version (e.g. 1.20.13) and + * (e.g. 1.20) are supported. When is specified, the latest + * supported GA patch version is chosen automatically. Updating the cluster + * with the same once it has been created (e.g. 1.14.x -> + * 1.14) will not trigger an upgrade, even if a newer patch version is + * available. When you upgrade a supported AKS cluster, Kubernetes minor + * versions cannot be skipped. All upgrades must be performed sequentially + * by major version number. For example, upgrades between 1.14.x -> 1.15.x + * or 1.15.x -> 1.16.x are allowed, however 1.14.x -> 1.16.x is not + * allowed. See [upgrading an AKS * cluster](https://docs.microsoft.com/azure/aks/upgrade-cluster) for more * details. */ @@ -67,8 +68,9 @@ public final class ManagedClusterProperties { private String kubernetesVersion; /* - * The version of Kubernetes the Managed Cluster is running. If - * kubernetesVersion was a fully specified version , + * The version of Kubernetes the Managed Cluster is running. + * + * If kubernetesVersion was a fully specified version , * this field will be exactly equal to it. If kubernetesVersion was * , this field will contain the full * version being used. @@ -77,14 +79,16 @@ public final class ManagedClusterProperties { private String currentKubernetesVersion; /* - * The DNS prefix of the Managed Cluster. This cannot be updated once the - * Managed Cluster has been created. + * The DNS prefix of the Managed Cluster. + * + * This cannot be updated once the Managed Cluster has been created. */ @JsonProperty(value = "dnsPrefix") private String dnsPrefix; /* * The FQDN subdomain of the private cluster with custom private dns zone. + * * This cannot be updated once the Managed Cluster has been created. */ @JsonProperty(value = "fqdnSubdomain") @@ -105,10 +109,12 @@ public final class ManagedClusterProperties { /* * The special FQDN used by the Azure Portal to access the Managed Cluster. * This FQDN is for use only by the Azure Portal and should not be used by - * other clients. The Azure Portal requires certain Cross-Origin Resource - * Sharing (CORS) headers to be sent in some responses, which Kubernetes - * APIServer doesn't handle by default. This special FQDN supports CORS, - * allowing the Azure Portal to function properly. + * other clients. + * + * The Azure Portal requires certain Cross-Origin Resource Sharing (CORS) + * headers to be sent in some responses, which Kubernetes APIServer doesn't + * handle by default. This special FQDN supports CORS, allowing the Azure + * Portal to function properly. */ @JsonProperty(value = "azurePortalFQDN", access = JsonProperty.Access.WRITE_ONLY) private String azurePortalFqdn; @@ -146,7 +152,9 @@ public final class ManagedClusterProperties { private Map addonProfiles; /* - * The pod identity profile of the Managed Cluster. See [use AAD pod + * The pod identity profile of the Managed Cluster. + * + * See [use AAD pod * identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity) * for more details on AAD pod identity integration. */ @@ -181,6 +189,7 @@ public final class ManagedClusterProperties { /* * AADProfile specifies attributes for Azure Active Directory integration. + * * The Azure Active Directory configuration. */ @JsonProperty(value = "aadProfile") @@ -206,7 +215,9 @@ public final class ManagedClusterProperties { /* * The Resource ID of the disk encryption set to use for enabling - * encryption at rest. This is of the form: + * encryption at rest. + * + * This is of the form: * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{encryptionSetName}' */ @JsonProperty(value = "diskEncryptionSetID") @@ -226,10 +237,11 @@ public final class ManagedClusterProperties { private List privateLinkResources; /* - * If local accounts should be disabled on the Managed Cluster. If set to - * true, getting static credentials will be disabled for this cluster. This - * must only be used on Managed Clusters that are AAD enabled. For more - * details see [disable local + * If local accounts should be disabled on the Managed Cluster. + * + * If set to true, getting static credentials will be disabled for this + * cluster. This must only be used on Managed Clusters that are AAD + * enabled. For more details see [disable local * accounts](https://docs.microsoft.com/azure/aks/managed-aad#disable-local-accounts-preview). */ @JsonProperty(value = "disableLocalAccounts") @@ -254,8 +266,9 @@ public final class ManagedClusterProperties { private ManagedClusterStorageProfile storageProfile; /* - * PublicNetworkAccess of the managedCluster Allow or deny public network - * access for AKS + * PublicNetworkAccess of the managedCluster + * + * Allow or deny public network access for AKS */ @JsonProperty(value = "publicNetworkAccess") private PublicNetworkAccess publicNetworkAccess; @@ -288,14 +301,16 @@ public Integer maxAgentPools() { } /** - * Get the kubernetesVersion property: The version of Kubernetes specified by the user. Both patch version - * <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. When - * <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating the - * cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger an - * upgrade, even if a newer patch version is available. When you upgrade a supported AKS cluster, Kubernetes minor - * versions cannot be skipped. All upgrades must be performed sequentially by major version number. For example, - * upgrades between 1.14.x -> 1.15.x or 1.15.x -> 1.16.x are allowed, however 1.14.x -> 1.16.x is not - * allowed. See [upgrading an AKS cluster](https://docs.microsoft.com/azure/aks/upgrade-cluster) for more details. + * Get the kubernetesVersion property: The version of Kubernetes specified by the user. + * + *

Both patch version <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. + * When <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating + * the cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger + * an upgrade, even if a newer patch version is available. When you upgrade a supported AKS cluster, Kubernetes + * minor versions cannot be skipped. All upgrades must be performed sequentially by major version number. For + * example, upgrades between 1.14.x -> 1.15.x or 1.15.x -> 1.16.x are allowed, however 1.14.x -> 1.16.x is + * not allowed. See [upgrading an AKS cluster](https://docs.microsoft.com/azure/aks/upgrade-cluster) for more + * details. * * @return the kubernetesVersion value. */ @@ -304,14 +319,16 @@ public String kubernetesVersion() { } /** - * Set the kubernetesVersion property: The version of Kubernetes specified by the user. Both patch version - * <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. When - * <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating the - * cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger an - * upgrade, even if a newer patch version is available. When you upgrade a supported AKS cluster, Kubernetes minor - * versions cannot be skipped. All upgrades must be performed sequentially by major version number. For example, - * upgrades between 1.14.x -> 1.15.x or 1.15.x -> 1.16.x are allowed, however 1.14.x -> 1.16.x is not - * allowed. See [upgrading an AKS cluster](https://docs.microsoft.com/azure/aks/upgrade-cluster) for more details. + * Set the kubernetesVersion property: The version of Kubernetes specified by the user. + * + *

Both patch version <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. + * When <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating + * the cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger + * an upgrade, even if a newer patch version is available. When you upgrade a supported AKS cluster, Kubernetes + * minor versions cannot be skipped. All upgrades must be performed sequentially by major version number. For + * example, upgrades between 1.14.x -> 1.15.x or 1.15.x -> 1.16.x are allowed, however 1.14.x -> 1.16.x is + * not allowed. See [upgrading an AKS cluster](https://docs.microsoft.com/azure/aks/upgrade-cluster) for more + * details. * * @param kubernetesVersion the kubernetesVersion value to set. * @return the ManagedClusterProperties object itself. @@ -322,9 +339,10 @@ public ManagedClusterProperties withKubernetesVersion(String kubernetesVersion) } /** - * Get the currentKubernetesVersion property: The version of Kubernetes the Managed Cluster is running. If - * kubernetesVersion was a fully specified version <major.minor.patch>, this field will be exactly equal to - * it. If kubernetesVersion was <major.minor>, this field will contain the full <major.minor.patch> + * Get the currentKubernetesVersion property: The version of Kubernetes the Managed Cluster is running. + * + *

If kubernetesVersion was a fully specified version <major.minor.patch>, this field will be exactly equal + * to it. If kubernetesVersion was <major.minor>, this field will contain the full <major.minor.patch> * version being used. * * @return the currentKubernetesVersion value. @@ -334,8 +352,9 @@ public String currentKubernetesVersion() { } /** - * Get the dnsPrefix property: The DNS prefix of the Managed Cluster. This cannot be updated once the Managed - * Cluster has been created. + * Get the dnsPrefix property: The DNS prefix of the Managed Cluster. + * + *

This cannot be updated once the Managed Cluster has been created. * * @return the dnsPrefix value. */ @@ -344,8 +363,9 @@ public String dnsPrefix() { } /** - * Set the dnsPrefix property: The DNS prefix of the Managed Cluster. This cannot be updated once the Managed - * Cluster has been created. + * Set the dnsPrefix property: The DNS prefix of the Managed Cluster. + * + *

This cannot be updated once the Managed Cluster has been created. * * @param dnsPrefix the dnsPrefix value to set. * @return the ManagedClusterProperties object itself. @@ -356,8 +376,9 @@ public ManagedClusterProperties withDnsPrefix(String dnsPrefix) { } /** - * Get the fqdnSubdomain property: The FQDN subdomain of the private cluster with custom private dns zone. This - * cannot be updated once the Managed Cluster has been created. + * Get the fqdnSubdomain property: The FQDN subdomain of the private cluster with custom private dns zone. + * + *

This cannot be updated once the Managed Cluster has been created. * * @return the fqdnSubdomain value. */ @@ -366,8 +387,9 @@ public String fqdnSubdomain() { } /** - * Set the fqdnSubdomain property: The FQDN subdomain of the private cluster with custom private dns zone. This - * cannot be updated once the Managed Cluster has been created. + * Set the fqdnSubdomain property: The FQDN subdomain of the private cluster with custom private dns zone. + * + *

This cannot be updated once the Managed Cluster has been created. * * @param fqdnSubdomain the fqdnSubdomain value to set. * @return the ManagedClusterProperties object itself. @@ -397,9 +419,11 @@ public String privateFqdn() { /** * Get the azurePortalFqdn property: The special FQDN used by the Azure Portal to access the Managed Cluster. This - * FQDN is for use only by the Azure Portal and should not be used by other clients. The Azure Portal requires - * certain Cross-Origin Resource Sharing (CORS) headers to be sent in some responses, which Kubernetes APIServer - * doesn't handle by default. This special FQDN supports CORS, allowing the Azure Portal to function properly. + * FQDN is for use only by the Azure Portal and should not be used by other clients. + * + *

The Azure Portal requires certain Cross-Origin Resource Sharing (CORS) headers to be sent in some responses, + * which Kubernetes APIServer doesn't handle by default. This special FQDN supports CORS, allowing the Azure Portal + * to function properly. * * @return the azurePortalFqdn value. */ @@ -511,9 +535,10 @@ public ManagedClusterProperties withAddonProfiles(MapSee [use AAD pod identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity) for more details on + * AAD pod identity integration. * * @return the podIdentityProfile value. */ @@ -522,9 +547,10 @@ public ManagedClusterPodIdentityProfile podIdentityProfile() { } /** - * Set the podIdentityProfile property: The pod identity profile of the Managed Cluster. See [use AAD pod - * identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity) for more details on AAD pod identity - * integration. + * Set the podIdentityProfile property: The pod identity profile of the Managed Cluster. + * + *

See [use AAD pod identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity) for more details on + * AAD pod identity integration. * * @param podIdentityProfile the podIdentityProfile value to set. * @return the ManagedClusterProperties object itself. @@ -617,8 +643,9 @@ public ManagedClusterProperties withNetworkProfile(ContainerServiceNetworkProfil } /** - * Get the aadProfile property: AADProfile specifies attributes for Azure Active Directory integration. The Azure - * Active Directory configuration. + * Get the aadProfile property: AADProfile specifies attributes for Azure Active Directory integration. + * + *

The Azure Active Directory configuration. * * @return the aadProfile value. */ @@ -627,8 +654,9 @@ public ManagedClusterAadProfile aadProfile() { } /** - * Set the aadProfile property: AADProfile specifies attributes for Azure Active Directory integration. The Azure - * Active Directory configuration. + * Set the aadProfile property: AADProfile specifies attributes for Azure Active Directory integration. + * + *

The Azure Active Directory configuration. * * @param aadProfile the aadProfile value to set. * @return the ManagedClusterProperties object itself. @@ -701,7 +729,9 @@ public ManagedClusterProperties withApiServerAccessProfile( /** * Get the diskEncryptionSetId property: The Resource ID of the disk encryption set to use for enabling encryption - * at rest. This is of the form: + * at rest. + * + *

This is of the form: * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{encryptionSetName}'. * * @return the diskEncryptionSetId value. @@ -712,7 +742,9 @@ public String diskEncryptionSetId() { /** * Set the diskEncryptionSetId property: The Resource ID of the disk encryption set to use for enabling encryption - * at rest. This is of the form: + * at rest. + * + *

This is of the form: * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{encryptionSetName}'. * * @param diskEncryptionSetId the diskEncryptionSetId value to set. @@ -764,9 +796,10 @@ public ManagedClusterProperties withPrivateLinkResources(ListIf set to true, getting static credentials will be disabled for this cluster. This must only be used on + * Managed Clusters that are AAD enabled. For more details see [disable local * accounts](https://docs.microsoft.com/azure/aks/managed-aad#disable-local-accounts-preview). * * @return the disableLocalAccounts value. @@ -776,9 +809,10 @@ public Boolean disableLocalAccounts() { } /** - * Set the disableLocalAccounts property: If local accounts should be disabled on the Managed Cluster. If set to - * true, getting static credentials will be disabled for this cluster. This must only be used on Managed Clusters - * that are AAD enabled. For more details see [disable local + * Set the disableLocalAccounts property: If local accounts should be disabled on the Managed Cluster. + * + *

If set to true, getting static credentials will be disabled for this cluster. This must only be used on + * Managed Clusters that are AAD enabled. For more details see [disable local * accounts](https://docs.microsoft.com/azure/aks/managed-aad#disable-local-accounts-preview). * * @param disableLocalAccounts the disableLocalAccounts value to set. @@ -850,8 +884,9 @@ public ManagedClusterProperties withStorageProfile(ManagedClusterStorageProfile } /** - * Get the publicNetworkAccess property: PublicNetworkAccess of the managedCluster Allow or deny public network - * access for AKS. + * Get the publicNetworkAccess property: PublicNetworkAccess of the managedCluster + * + *

Allow or deny public network access for AKS. * * @return the publicNetworkAccess value. */ @@ -860,8 +895,9 @@ public PublicNetworkAccess publicNetworkAccess() { } /** - * Set the publicNetworkAccess property: PublicNetworkAccess of the managedCluster Allow or deny public network - * access for AKS. + * Set the publicNetworkAccess property: PublicNetworkAccess of the managedCluster + * + *

Allow or deny public network access for AKS. * * @param publicNetworkAccess the publicNetworkAccess value to set. * @return the ManagedClusterProperties object itself. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/AgentPoolsClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/AgentPoolsClientImpl.java index 4750765c1d22..7c4cd8df0488 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/AgentPoolsClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/AgentPoolsClientImpl.java @@ -221,7 +221,7 @@ private Mono> listSinglePageAsync(String resourceG if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -281,7 +281,7 @@ private Mono> listSinglePageAsync( if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -406,7 +406,7 @@ public Mono> getWithResponseAsync( if (agentPoolName == null) { return Mono.error(new IllegalArgumentException("Parameter agentPoolName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -462,7 +462,7 @@ private Mono> getWithResponseAsync( if (agentPoolName == null) { return Mono.error(new IllegalArgumentException("Parameter agentPoolName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -570,7 +570,7 @@ public Mono>> createOrUpdateWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -636,7 +636,7 @@ private Mono>> createOrUpdateWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -872,7 +872,7 @@ public Mono>> deleteWithResponseAsync( if (agentPoolName == null) { return Mono.error(new IllegalArgumentException("Parameter agentPoolName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -927,7 +927,7 @@ private Mono>> deleteWithResponseAsync( if (agentPoolName == null) { return Mono.error(new IllegalArgumentException("Parameter agentPoolName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -1127,7 +1127,7 @@ public Mono> getUpgradeProfileWithRespons if (agentPoolName == null) { return Mono.error(new IllegalArgumentException("Parameter agentPoolName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -1183,7 +1183,7 @@ private Mono> getUpgradeProfileWithRespon if (agentPoolName == null) { return Mono.error(new IllegalArgumentException("Parameter agentPoolName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -1252,8 +1252,10 @@ public Response getUpgradeProfileWithResponse( } /** - * See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for more - * details about the version lifecycle. + * Gets a list of supported Kubernetes versions for the specified agent pool. + * + *

See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for + * more details about the version lifecycle. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1285,7 +1287,7 @@ public Mono> getAvailableAgentPoolVers if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -1303,8 +1305,10 @@ public Mono> getAvailableAgentPoolVers } /** - * See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for more - * details about the version lifecycle. + * Gets a list of supported Kubernetes versions for the specified agent pool. + * + *

See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for + * more details about the version lifecycle. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1337,7 +1341,7 @@ private Mono> getAvailableAgentPoolVer if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -1352,8 +1356,10 @@ private Mono> getAvailableAgentPoolVer } /** - * See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for more - * details about the version lifecycle. + * Gets a list of supported Kubernetes versions for the specified agent pool. + * + *

See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for + * more details about the version lifecycle. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1370,8 +1376,10 @@ public Mono getAvailableAgentPoolVersionsAsync( } /** - * See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for more - * details about the version lifecycle. + * Gets a list of supported Kubernetes versions for the specified agent pool. + * + *

See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for + * more details about the version lifecycle. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1387,8 +1395,10 @@ public AgentPoolAvailableVersionsInner getAvailableAgentPoolVersions( } /** - * See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for more - * details about the version lifecycle. + * Gets a list of supported Kubernetes versions for the specified agent pool. + * + *

See [supported Kubernetes versions](https://docs.microsoft.com/azure/aks/supported-kubernetes-versions) for + * more details about the version lifecycle. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -1405,7 +1415,9 @@ public Response getAvailableAgentPoolVersionsWi } /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -1442,7 +1454,7 @@ public Mono>> upgradeNodeImageVersionWithResponseAsync if (agentPoolName == null) { return Mono.error(new IllegalArgumentException("Parameter agentPoolName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -1461,7 +1473,9 @@ public Mono>> upgradeNodeImageVersionWithResponseAsync } /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -1499,7 +1513,7 @@ private Mono>> upgradeNodeImageVersionWithResponseAsyn if (agentPoolName == null) { return Mono.error(new IllegalArgumentException("Parameter agentPoolName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -1515,7 +1529,9 @@ private Mono>> upgradeNodeImageVersionWithResponseAsyn } /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -1543,7 +1559,9 @@ public PollerFlux, AgentPoolInner> beginUpgradeNodeIm } /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -1569,7 +1587,9 @@ private PollerFlux, AgentPoolInner> beginUpgradeNodeI } /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -1588,7 +1608,9 @@ public SyncPoller, AgentPoolInner> beginUpgradeNodeIm } /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -1609,7 +1631,9 @@ public SyncPoller, AgentPoolInner> beginUpgradeNodeIm } /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -1630,7 +1654,9 @@ public Mono upgradeNodeImageVersionAsync( } /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -1652,7 +1678,9 @@ private Mono upgradeNodeImageVersionAsync( } /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * @@ -1670,7 +1698,9 @@ public AgentPoolInner upgradeNodeImageVersion(String resourceGroupName, String r } /** - * Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS + * Upgrades the node image version of an agent pool to the latest. + * + *

Upgrading the node image version of an agent pool applies the newest OS and runtime updates to the nodes. AKS * provides one new image per week with the latest updates. For more details on node image versions, see: * https://docs.microsoft.com/azure/aks/node-image-upgrade. * diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/ContainerServicesClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/ContainerServicesClientImpl.java index 23135e58ef4f..b3ffde802cfc 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/ContainerServicesClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/ContainerServicesClientImpl.java @@ -66,7 +66,9 @@ Mono> listOrchestrators( } /** - * Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each + * Gets a list of supported orchestrators in the specified subscription. + * + *

Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each * orchestrator including version, available upgrades and whether that version or upgrades are in preview. * * @param location The name of a supported Azure region. @@ -113,7 +115,9 @@ public Mono> listOrchestrato } /** - * Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each + * Gets a list of supported orchestrators in the specified subscription. + * + *

Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each * orchestrator including version, available upgrades and whether that version or upgrades are in preview. * * @param location The name of a supported Azure region. @@ -158,7 +162,9 @@ private Mono> listOrchestrat } /** - * Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each + * Gets a list of supported orchestrators in the specified subscription. + * + *

Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each * orchestrator including version, available upgrades and whether that version or upgrades are in preview. * * @param location The name of a supported Azure region. @@ -176,7 +182,9 @@ public Mono listOrchestratorsAsync( } /** - * Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each + * Gets a list of supported orchestrators in the specified subscription. + * + *

Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each * orchestrator including version, available upgrades and whether that version or upgrades are in preview. * * @param location The name of a supported Azure region. @@ -193,7 +201,9 @@ public Mono listOrchestratorsAsync(St } /** - * Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each + * Gets a list of supported orchestrators in the specified subscription. + * + *

Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each * orchestrator including version, available upgrades and whether that version or upgrades are in preview. * * @param location The name of a supported Azure region. @@ -209,7 +219,9 @@ public OrchestratorVersionProfileListResultInner listOrchestrators(String locati } /** - * Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each + * Gets a list of supported orchestrators in the specified subscription. + * + *

Gets a list of supported orchestrators in the specified subscription. The operation returns properties of each * orchestrator including version, available upgrades and whether that version or upgrades are in preview. * * @param location The name of a supported Azure region. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/MaintenanceConfigurationsClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/MaintenanceConfigurationsClientImpl.java index ac7e3cf58513..f830dcf7c16b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/MaintenanceConfigurationsClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/MaintenanceConfigurationsClientImpl.java @@ -169,7 +169,7 @@ private Mono> listByManagedClusterS if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -229,7 +229,7 @@ private Mono> listByManagedClusterS if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -363,7 +363,7 @@ public Mono> getWithResponseAsync( if (configName == null) { return Mono.error(new IllegalArgumentException("Parameter configName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -419,7 +419,7 @@ private Mono> getWithResponseAsync( if (configName == null) { return Mono.error(new IllegalArgumentException("Parameter configName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -529,7 +529,7 @@ public Mono> createOrUpdateWithResponseA } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -596,7 +596,7 @@ private Mono> createOrUpdateWithResponse } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -711,7 +711,7 @@ public Mono> deleteWithResponseAsync( if (configName == null) { return Mono.error(new IllegalArgumentException("Parameter configName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -766,7 +766,7 @@ private Mono> deleteWithResponseAsync( if (configName == null) { return Mono.error(new IllegalArgumentException("Parameter configName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/ManagedClustersClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/ManagedClustersClientImpl.java index c5f309f37f48..5462ecfbe35b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/ManagedClustersClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/ManagedClustersClientImpl.java @@ -450,7 +450,7 @@ public Mono> getOSOptionsWithResponseAsync(String if (location == null) { return Mono.error(new IllegalArgumentException("Parameter location is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -497,7 +497,7 @@ private Mono> getOSOptionsWithResponseAsync( if (location == null) { return Mono.error(new IllegalArgumentException("Parameter location is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -595,7 +595,7 @@ private Mono> listSinglePageAsync() { new IllegalArgumentException( "Parameter this.client.getSubscriptionId() is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -638,7 +638,7 @@ private Mono> listSinglePageAsync(Context con new IllegalArgumentException( "Parameter this.client.getSubscriptionId() is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -737,7 +737,7 @@ private Mono> listByResourceGroupSinglePageAs return Mono .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -792,7 +792,7 @@ private Mono> listByResourceGroupSinglePageAs return Mono .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -909,7 +909,7 @@ public Mono> getUpgradeProfileWithRe if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -960,7 +960,7 @@ private Mono> getUpgradeProfileWithR if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -1024,7 +1024,9 @@ public Response getUpgradeProfileWithResponse } /** - * **WARNING**: This API will be deprecated. Instead use + * Gets an access profile of a managed cluster. + * + *

**WARNING**: This API will be deprecated. Instead use * [ListClusterUserCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusterusercredentials) * or * [ListClusterAdminCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusteradmincredentials) @@ -1063,7 +1065,7 @@ public Mono> getAccessProfileWithResp if (roleName == null) { return Mono.error(new IllegalArgumentException("Parameter roleName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -1082,7 +1084,9 @@ public Mono> getAccessProfileWithResp } /** - * **WARNING**: This API will be deprecated. Instead use + * Gets an access profile of a managed cluster. + * + *

**WARNING**: This API will be deprecated. Instead use * [ListClusterUserCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusterusercredentials) * or * [ListClusterAdminCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusteradmincredentials) @@ -1122,7 +1126,7 @@ private Mono> getAccessProfileWithRes if (roleName == null) { return Mono.error(new IllegalArgumentException("Parameter roleName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -1138,7 +1142,9 @@ private Mono> getAccessProfileWithRes } /** - * **WARNING**: This API will be deprecated. Instead use + * Gets an access profile of a managed cluster. + * + *

**WARNING**: This API will be deprecated. Instead use * [ListClusterUserCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusterusercredentials) * or * [ListClusterAdminCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusteradmincredentials) @@ -1160,7 +1166,9 @@ public Mono getAccessProfileAsync( } /** - * **WARNING**: This API will be deprecated. Instead use + * Gets an access profile of a managed cluster. + * + *

**WARNING**: This API will be deprecated. Instead use * [ListClusterUserCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusterusercredentials) * or * [ListClusterAdminCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusteradmincredentials) @@ -1181,7 +1189,9 @@ public ManagedClusterAccessProfileInner getAccessProfile( } /** - * **WARNING**: This API will be deprecated. Instead use + * Gets an access profile of a managed cluster. + * + *

**WARNING**: This API will be deprecated. Instead use * [ListClusterUserCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusterusercredentials) * or * [ListClusterAdminCredentials](https://docs.microsoft.com/rest/api/aks/managedclusters/listclusteradmincredentials) @@ -1235,7 +1245,7 @@ public Mono> listClusterAdminCredentialsWithRes if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -1287,7 +1297,7 @@ private Mono> listClusterAdminCredentialsWithRe if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -1409,7 +1419,7 @@ public Mono> listClusterUserCredentialsWithResp if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -1465,7 +1475,7 @@ private Mono> listClusterUserCredentialsWithRes if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -1592,7 +1602,7 @@ public Mono> listClusterMonitoringUserCredentia if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -1644,7 +1654,7 @@ private Mono> listClusterMonitoringUserCredenti if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -1763,7 +1773,7 @@ public Mono> getByResourceGroupWithResponseAsync( if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -1813,7 +1823,7 @@ private Mono> getByResourceGroupWithResponseAsync( if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -1913,7 +1923,7 @@ public Mono>> createOrUpdateWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -1970,7 +1980,7 @@ private Mono>> createOrUpdateWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -2182,7 +2192,7 @@ public Mono>> updateTagsWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -2239,7 +2249,7 @@ private Mono>> updateTagsWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -2443,7 +2453,7 @@ public Mono>> deleteWithResponseAsync(String resourceG if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -2493,7 +2503,7 @@ private Mono>> deleteWithResponseAsync( if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -2642,7 +2652,9 @@ public void delete(String resourceGroupName, String resourceName, Context contex } /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -2679,7 +2691,7 @@ public Mono>> resetServicePrincipalProfileWithResponse } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -2698,7 +2710,9 @@ public Mono>> resetServicePrincipalProfileWithResponse } /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -2739,7 +2753,7 @@ private Mono>> resetServicePrincipalProfileWithRespons } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -2755,7 +2769,9 @@ private Mono>> resetServicePrincipalProfileWithRespons } /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -2777,7 +2793,9 @@ public PollerFlux, Void> beginResetServicePrincipalProfileAsync } /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -2803,7 +2821,9 @@ private PollerFlux, Void> beginResetServicePrincipalProfileAsyn } /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -2820,7 +2840,9 @@ public SyncPoller, Void> beginResetServicePrincipalProfile( } /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -2842,7 +2864,9 @@ public SyncPoller, Void> beginResetServicePrincipalProfile( } /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -2861,7 +2885,9 @@ public Mono resetServicePrincipalProfileAsync( } /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -2884,7 +2910,9 @@ private Mono resetServicePrincipalProfileAsync( } /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -2900,7 +2928,9 @@ public void resetServicePrincipalProfile( } /** - * This action cannot be performed on a cluster that is not using a service principal. + * Reset the Service Principal Profile of a managed cluster. + * + *

This action cannot be performed on a cluster that is not using a service principal. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -2957,7 +2987,7 @@ public Mono>> resetAadProfileWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -3014,7 +3044,7 @@ private Mono>> resetAadProfileWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -3181,7 +3211,9 @@ public void resetAadProfile( } /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -3213,7 +3245,7 @@ public Mono>> rotateClusterCertificatesWithResponseAsy if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -3231,7 +3263,9 @@ public Mono>> rotateClusterCertificatesWithResponseAsy } /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -3264,7 +3298,7 @@ private Mono>> rotateClusterCertificatesWithResponseAs if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -3279,7 +3313,9 @@ private Mono>> rotateClusterCertificatesWithResponseAs } /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -3301,7 +3337,9 @@ public PollerFlux, Void> beginRotateClusterCertificatesAsync( } /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -3324,7 +3362,9 @@ private PollerFlux, Void> beginRotateClusterCertificatesAsync( } /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -3341,7 +3381,9 @@ public SyncPoller, Void> beginRotateClusterCertificates( } /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -3359,7 +3401,9 @@ public SyncPoller, Void> beginRotateClusterCertificates( } /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -3377,7 +3421,9 @@ public Mono rotateClusterCertificatesAsync(String resourceGroupName, Strin } /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -3396,7 +3442,9 @@ private Mono rotateClusterCertificatesAsync(String resourceGroupName, Stri } /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -3411,7 +3459,9 @@ public void rotateClusterCertificates(String resourceGroupName, String resourceN } /** - * See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about + * Rotates the certificates of a managed cluster. + * + *

See [Certificate rotation](https://docs.microsoft.com/azure/aks/certificate-rotation) for more details about * rotating managed cluster certificates. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -3427,7 +3477,9 @@ public void rotateClusterCertificates(String resourceGroupName, String resourceN } /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -3460,7 +3512,7 @@ public Mono>> stopWithResponseAsync(String resourceGro if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -3478,7 +3530,9 @@ public Mono>> stopWithResponseAsync(String resourceGro } /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -3513,7 +3567,7 @@ private Mono>> stopWithResponseAsync( if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -3528,7 +3582,9 @@ private Mono>> stopWithResponseAsync( } /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -3550,7 +3606,9 @@ public PollerFlux, Void> beginStopAsync(String resourceGroupNam } /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -3574,7 +3632,9 @@ private PollerFlux, Void> beginStopAsync( } /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -3592,7 +3652,9 @@ public SyncPoller, Void> beginStop(String resourceGroupName, St } /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -3612,7 +3674,9 @@ public SyncPoller, Void> beginStop( } /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -3630,7 +3694,9 @@ public Mono stopAsync(String resourceGroupName, String resourceName) { } /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -3651,7 +3717,9 @@ private Mono stopAsync(String resourceGroupName, String resourceName, Cont } /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -3668,7 +3736,9 @@ public void stop(String resourceGroupName, String resourceName) { } /** - * This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the + * Stops a Managed Cluster + * + *

This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a cluster stops the * control plane and agent nodes entirely, while maintaining all object and cluster state. A cluster does not accrue * charges while it is stopped. See [stopping a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) * for more details about stopping a cluster. @@ -3686,8 +3756,10 @@ public void stop(String resourceGroupName, String resourceName, Context context) } /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -3717,7 +3789,7 @@ public Mono>> startWithResponseAsync(String resourceGr if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -3735,8 +3807,10 @@ public Mono>> startWithResponseAsync(String resourceGr } /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -3768,7 +3842,7 @@ private Mono>> startWithResponseAsync( if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -3783,8 +3857,10 @@ private Mono>> startWithResponseAsync( } /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -3803,8 +3879,10 @@ public PollerFlux, Void> beginStartAsync(String resourceGroupNa } /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -3825,8 +3903,10 @@ private PollerFlux, Void> beginStartAsync( } /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -3841,8 +3921,10 @@ public SyncPoller, Void> beginStart(String resourceGroupName, S } /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -3859,8 +3941,10 @@ public SyncPoller, Void> beginStart( } /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -3875,8 +3959,10 @@ public Mono startAsync(String resourceGroupName, String resourceName) { } /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -3894,8 +3980,10 @@ private Mono startAsync(String resourceGroupName, String resourceName, Con } /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -3909,8 +3997,10 @@ public void start(String resourceGroupName, String resourceName) { } /** - * See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about starting - * a cluster. + * Starts a previously stopped Managed Cluster + * + *

See [starting a cluster](https://docs.microsoft.com/azure/aks/start-stop-cluster) for more details about + * starting a cluster. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -3925,8 +4015,10 @@ public void start(String resourceGroupName, String resourceName, Context context } /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -3963,7 +4055,7 @@ public Mono>> runCommandWithResponseAsync( } else { requestPayload.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -3982,8 +4074,10 @@ public Mono>> runCommandWithResponseAsync( } /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -4021,7 +4115,7 @@ private Mono>> runCommandWithResponseAsync( } else { requestPayload.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -4037,8 +4131,10 @@ private Mono>> runCommandWithResponseAsync( } /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -4064,8 +4160,10 @@ public PollerFlux, RunCommandResultInner> begi } /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -4089,8 +4187,10 @@ private PollerFlux, RunCommandResultInner> beg } /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -4107,8 +4207,10 @@ public SyncPoller, RunCommandResultInner> begi } /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -4126,8 +4228,10 @@ public SyncPoller, RunCommandResultInner> begi } /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -4146,8 +4250,10 @@ public Mono runCommandAsync( } /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -4167,8 +4273,10 @@ private Mono runCommandAsync( } /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -4185,8 +4293,10 @@ public RunCommandResultInner runCommand( } /** - * AKS will create a pod to run the command. This is primarily useful for private clusters. For more information see - * [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). + * Submits a command to run against the Managed Cluster. + * + *

AKS will create a pod to run the command. This is primarily useful for private clusters. For more information + * see [AKS Run Command](https://docs.microsoft.com/azure/aks/private-clusters#aks-run-command-preview). * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -4240,7 +4350,7 @@ public Mono> getCommandResultWithResponseAsync( if (commandId == null) { return Mono.error(new IllegalArgumentException("Parameter commandId is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -4296,7 +4406,7 @@ private Mono> getCommandResultWithResponseAsync( if (commandId == null) { return Mono.error(new IllegalArgumentException("Parameter commandId is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -4366,6 +4476,9 @@ public Response getCommandResultWithResponse( /** * Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed + * cluster. + * + *

Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed * cluster. The operation returns properties of each egress endpoint. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -4398,7 +4511,7 @@ public Response getCommandResultWithResponse( if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -4426,6 +4539,9 @@ public Response getCommandResultWithResponse( /** * Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed + * cluster. + * + *

Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed * cluster. The operation returns properties of each egress endpoint. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -4460,7 +4576,7 @@ public Response getCommandResultWithResponse( if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -4485,6 +4601,9 @@ public Response getCommandResultWithResponse( /** * Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed + * cluster. + * + *

Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed * cluster. The operation returns properties of each egress endpoint. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -4505,6 +4624,9 @@ public PagedFlux listOutboundNetworkDependenci /** * Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed + * cluster. + * + *

Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed * cluster. The operation returns properties of each egress endpoint. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -4526,6 +4648,9 @@ private PagedFlux listOutboundNetworkDependenc /** * Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed + * cluster. + * + *

Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed * cluster. The operation returns properties of each egress endpoint. * * @param resourceGroupName The name of the resource group. The name is case insensitive. @@ -4544,6 +4669,9 @@ public PagedIterable listOutboundNetworkDepend /** * Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed + * cluster. + * + *

Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed * cluster. The operation returns properties of each egress endpoint. * * @param resourceGroupName The name of the resource group. The name is case insensitive. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/OpenShiftManagedClustersClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/OpenShiftManagedClustersClientImpl.java index c119e0f4d9a2..8cf739717084 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/OpenShiftManagedClustersClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/OpenShiftManagedClustersClientImpl.java @@ -183,8 +183,10 @@ Mono> listByResourceGroupNext( } /** - * Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of each - * OpenShift managed cluster. + * Gets a list of OpenShift managed clusters in the specified subscription. + * + *

Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of + * each OpenShift managed cluster. * * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -225,8 +227,10 @@ private Mono> listSinglePageAsync() } /** - * Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of each - * OpenShift managed cluster. + * Gets a list of OpenShift managed clusters in the specified subscription. + * + *

Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of + * each OpenShift managed cluster. * * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -266,8 +270,10 @@ private Mono> listSinglePageAsync(Co } /** - * Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of each - * OpenShift managed cluster. + * Gets a list of OpenShift managed clusters in the specified subscription. + * + *

Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of + * each OpenShift managed cluster. * * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -280,8 +286,10 @@ public PagedFlux listAsync() { } /** - * Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of each - * OpenShift managed cluster. + * Gets a list of OpenShift managed clusters in the specified subscription. + * + *

Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of + * each OpenShift managed cluster. * * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -297,8 +305,10 @@ private PagedFlux listAsync(Context context) { } /** - * Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of each - * OpenShift managed cluster. + * Gets a list of OpenShift managed clusters in the specified subscription. + * + *

Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of + * each OpenShift managed cluster. * * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -311,8 +321,10 @@ public PagedIterable list() { } /** - * Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of each - * OpenShift managed cluster. + * Gets a list of OpenShift managed clusters in the specified subscription. + * + *

Gets a list of OpenShift managed clusters in the specified subscription. The operation returns properties of + * each OpenShift managed cluster. * * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -327,7 +339,9 @@ public PagedIterable list(Context context) { } /** - * Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns + * Lists OpenShift managed clusters in the specified subscription and resource group. + * + *

Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns * properties of each OpenShift managed cluster. * * @param resourceGroupName The name of the resource group. @@ -382,7 +396,9 @@ private Mono> listByResourceGroupSin } /** - * Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns + * Lists OpenShift managed clusters in the specified subscription and resource group. + * + *

Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns * properties of each OpenShift managed cluster. * * @param resourceGroupName The name of the resource group. @@ -435,7 +451,9 @@ private Mono> listByResourceGroupSin } /** - * Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns + * Lists OpenShift managed clusters in the specified subscription and resource group. + * + *

Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns * properties of each OpenShift managed cluster. * * @param resourceGroupName The name of the resource group. @@ -453,7 +471,9 @@ public PagedFlux listByResourceGroupAsync(String r } /** - * Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns + * Lists OpenShift managed clusters in the specified subscription and resource group. + * + *

Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns * properties of each OpenShift managed cluster. * * @param resourceGroupName The name of the resource group. @@ -473,7 +493,9 @@ private PagedFlux listByResourceGroupAsync( } /** - * Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns + * Lists OpenShift managed clusters in the specified subscription and resource group. + * + *

Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns * properties of each OpenShift managed cluster. * * @param resourceGroupName The name of the resource group. @@ -489,7 +511,9 @@ public PagedIterable listByResourceGroup(String re } /** - * Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns + * Lists OpenShift managed clusters in the specified subscription and resource group. + * + *

Lists OpenShift managed clusters in the specified subscription and resource group. The operation returns * properties of each OpenShift managed cluster. * * @param resourceGroupName The name of the resource group. @@ -506,7 +530,9 @@ public PagedIterable listByResourceGroup(String re } /** - * Gets the details of the managed OpenShift cluster with a specified resource group and name. + * Gets a OpenShift managed cluster. + * + *

Gets the details of the managed OpenShift cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -556,7 +582,9 @@ public Mono> getByResourceGroupWithRespon } /** - * Gets the details of the managed OpenShift cluster with a specified resource group and name. + * Gets a OpenShift managed cluster. + * + *

Gets the details of the managed OpenShift cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -604,7 +632,9 @@ private Mono> getByResourceGroupWithRespo } /** - * Gets the details of the managed OpenShift cluster with a specified resource group and name. + * Gets a OpenShift managed cluster. + * + *

Gets the details of the managed OpenShift cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -621,7 +651,9 @@ public Mono getByResourceGroupAsync(String resourc } /** - * Gets the details of the managed OpenShift cluster with a specified resource group and name. + * Gets a OpenShift managed cluster. + * + *

Gets the details of the managed OpenShift cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -636,7 +668,9 @@ public OpenShiftManagedClusterInner getByResourceGroup(String resourceGroupName, } /** - * Gets the details of the managed OpenShift cluster with a specified resource group and name. + * Gets a OpenShift managed cluster. + * + *

Gets the details of the managed OpenShift cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -654,7 +688,10 @@ public Response getByResourceGroupWithResponse( } /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -710,7 +747,10 @@ public Mono>> createOrUpdateWithResponseAsync( } /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -764,7 +804,10 @@ private Mono>> createOrUpdateWithResponseAsync( } /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -790,7 +833,10 @@ public PollerFlux, OpenShiftManagedClus } /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -818,7 +864,10 @@ private PollerFlux, OpenShiftManagedClu } /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -835,7 +884,10 @@ public SyncPoller, OpenShiftManagedClus } /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -853,7 +905,10 @@ public SyncPoller, OpenShiftManagedClus } /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -872,7 +927,10 @@ public Mono createOrUpdateAsync( } /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -892,7 +950,10 @@ private Mono createOrUpdateAsync( } /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -909,7 +970,10 @@ public OpenShiftManagedClusterInner createOrUpdate( } /** - * Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift version. + * Creates or updates an OpenShift managed cluster. + * + *

Creates or updates a OpenShift managed cluster with the specified configuration for agents and OpenShift + * version. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -927,7 +991,9 @@ public OpenShiftManagedClusterInner createOrUpdate( } /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -983,7 +1049,9 @@ public Mono>> updateTagsWithResponseAsync( } /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1037,7 +1105,9 @@ private Mono>> updateTagsWithResponseAsync( } /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1063,7 +1133,9 @@ public PollerFlux, OpenShiftManagedClus } /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1091,7 +1163,9 @@ private PollerFlux, OpenShiftManagedClu } /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1108,7 +1182,9 @@ public SyncPoller, OpenShiftManagedClus } /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1126,7 +1202,9 @@ public SyncPoller, OpenShiftManagedClus } /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1145,7 +1223,9 @@ public Mono updateTagsAsync( } /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1165,7 +1245,9 @@ private Mono updateTagsAsync( } /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1182,7 +1264,9 @@ public OpenShiftManagedClusterInner updateTags( } /** - * Updates an OpenShift managed cluster with the specified tags. + * Updates tags on an OpenShift managed cluster. + * + *

Updates an OpenShift managed cluster with the specified tags. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1200,7 +1284,9 @@ public OpenShiftManagedClusterInner updateTags( } /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1248,7 +1334,9 @@ public Mono>> deleteWithResponseAsync(String resourceG } /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1295,7 +1383,9 @@ private Mono>> deleteWithResponseAsync( } /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1314,7 +1404,9 @@ public PollerFlux, Void> beginDeleteAsync(String resourceGroupN } /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1335,7 +1427,9 @@ private PollerFlux, Void> beginDeleteAsync( } /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1350,7 +1444,9 @@ public SyncPoller, Void> beginDelete(String resourceGroupName, } /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1367,7 +1463,9 @@ public SyncPoller, Void> beginDelete( } /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1382,7 +1480,9 @@ public Mono deleteAsync(String resourceGroupName, String resourceName) { } /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1400,7 +1500,9 @@ private Mono deleteAsync(String resourceGroupName, String resourceName, Co } /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. @@ -1414,7 +1516,9 @@ public void delete(String resourceGroupName, String resourceName) { } /** - * Deletes the OpenShift managed cluster with a specified resource group and name. + * Deletes an OpenShift managed cluster. + * + *

Deletes the OpenShift managed cluster with a specified resource group and name. * * @param resourceGroupName The name of the resource group. * @param resourceName The name of the OpenShift managed cluster resource. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/OperationsClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/OperationsClientImpl.java index 175873a975dd..acb713ca504a 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/OperationsClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/OperationsClientImpl.java @@ -81,7 +81,7 @@ private Mono> listSinglePageAsync() { new IllegalArgumentException( "Parameter this.client.getEndpoint() is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext(context -> service.list(this.client.getEndpoint(), apiVersion, accept, context)) @@ -109,7 +109,7 @@ private Mono> listSinglePageAsync(Context con new IllegalArgumentException( "Parameter this.client.getEndpoint() is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/PrivateEndpointConnectionsClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/PrivateEndpointConnectionsClientImpl.java index b309983663a5..a6299d16ddf2 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/PrivateEndpointConnectionsClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/PrivateEndpointConnectionsClientImpl.java @@ -128,7 +128,9 @@ Mono>> delete( } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private endpoint connections in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -160,7 +162,7 @@ public Mono> listWithResponse if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -178,7 +180,9 @@ public Mono> listWithResponse } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private endpoint connections in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -211,7 +215,7 @@ private Mono> listWithRespons if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -226,7 +230,9 @@ private Mono> listWithRespons } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private endpoint connections in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -241,7 +247,9 @@ public Mono listAsync(String resourceG } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private endpoint connections in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -256,7 +264,9 @@ public PrivateEndpointConnectionListResultInner list(String resourceGroupName, S } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private endpoint connections in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -273,7 +283,9 @@ public Response listWithResponse( } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets the specified private endpoint connection. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -311,7 +323,7 @@ public Mono> getWithResponseAsync( new IllegalArgumentException( "Parameter privateEndpointConnectionName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -330,7 +342,9 @@ public Mono> getWithResponseAsync( } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets the specified private endpoint connection. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -369,7 +383,7 @@ private Mono> getWithResponseAsync( new IllegalArgumentException( "Parameter privateEndpointConnectionName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -385,7 +399,9 @@ private Mono> getWithResponseAsync( } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets the specified private endpoint connection. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -403,7 +419,9 @@ public Mono getAsync( } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets the specified private endpoint connection. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -420,7 +438,9 @@ public PrivateEndpointConnectionInner get( } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets the specified private endpoint connection. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -485,7 +505,7 @@ public Mono> updateWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -554,7 +574,7 @@ private Mono> updateWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -677,7 +697,7 @@ public Mono>> deleteWithResponseAsync( new IllegalArgumentException( "Parameter privateEndpointConnectionName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -735,7 +755,7 @@ private Mono>> deleteWithResponseAsync( new IllegalArgumentException( "Parameter privateEndpointConnectionName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/PrivateLinkResourcesClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/PrivateLinkResourcesClientImpl.java index 1b23fa43022c..1552b103da86 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/PrivateLinkResourcesClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/PrivateLinkResourcesClientImpl.java @@ -69,7 +69,9 @@ Mono> list( } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private link resources in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -100,7 +102,7 @@ public Mono> listWithResponseAsync if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -118,7 +120,9 @@ public Mono> listWithResponseAsync } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private link resources in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -150,7 +154,7 @@ private Mono> listWithResponseAsyn if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -165,7 +169,9 @@ private Mono> listWithResponseAsyn } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private link resources in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -180,7 +186,9 @@ public Mono listAsync(String resourceGroupN } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private link resources in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. @@ -195,7 +203,9 @@ public PrivateLinkResourcesListResultInner list(String resourceGroupName, String } /** - * To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. + * Gets a list of private link resources in the specified managed cluster. + * + *

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The name of the managed cluster resource. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/ResolvePrivateLinkServiceIdsClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/ResolvePrivateLinkServiceIdsClientImpl.java index f79c82d780ff..a77ce4c4ba83 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/ResolvePrivateLinkServiceIdsClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/ResolvePrivateLinkServiceIdsClientImpl.java @@ -110,7 +110,7 @@ public Mono> postWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -168,7 +168,7 @@ private Mono> postWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/SnapshotsClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/SnapshotsClientImpl.java index 133dcbb77ddc..1cfb1afe011a 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/SnapshotsClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/SnapshotsClientImpl.java @@ -198,7 +198,7 @@ private Mono> listSinglePageAsync() { new IllegalArgumentException( "Parameter this.client.getSubscriptionId() is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -241,7 +241,7 @@ private Mono> listSinglePageAsync(Context context) new IllegalArgumentException( "Parameter this.client.getSubscriptionId() is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -338,7 +338,7 @@ private Mono> listByResourceGroupSinglePageAsync(St return Mono .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -393,7 +393,7 @@ private Mono> listByResourceGroupSinglePageAsync( return Mono .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -509,7 +509,7 @@ public Mono> getByResourceGroupWithResponseAsync( if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -559,7 +559,7 @@ private Mono> getByResourceGroupWithResponseAsync( if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -659,7 +659,7 @@ public Mono> createOrUpdateWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -716,7 +716,7 @@ private Mono> createOrUpdateWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -821,7 +821,7 @@ public Mono> updateTagsWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -878,7 +878,7 @@ private Mono> updateTagsWithResponseAsync( } else { parameters.validate(); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service @@ -975,7 +975,7 @@ public Mono> deleteWithResponseAsync(String resourceGroupName, St if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; return FluxUtil .withContext( @@ -1025,7 +1025,7 @@ private Mono> deleteWithResponseAsync( if (resourceName == null) { return Mono.error(new IllegalArgumentException("Parameter resourceName is required and cannot be null.")); } - final String apiVersion = "2022-04-01"; + final String apiVersion = "2022-06-01"; final String accept = "application/json"; context = this.client.mergeContext(context); return service diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/AgentPoolUpgradeSettings.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/AgentPoolUpgradeSettings.java index ab867a66d60a..4f2dde7c46dc 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/AgentPoolUpgradeSettings.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/AgentPoolUpgradeSettings.java @@ -12,21 +12,24 @@ public final class AgentPoolUpgradeSettings { /* * The maximum number or percentage of nodes that are surged during - * upgrade. This can either be set to an integer (e.g. '5') or a percentage - * (e.g. '50%'). If a percentage is specified, it is the percentage of the - * total agent pool size at the time of the upgrade. For percentages, - * fractional nodes are rounded up. If not specified, the default is 1. For - * more information, including best practices, see: + * upgrade. + * + * This can either be set to an integer (e.g. '5') or a percentage (e.g. + * '50%'). If a percentage is specified, it is the percentage of the total + * agent pool size at the time of the upgrade. For percentages, fractional + * nodes are rounded up. If not specified, the default is 1. For more + * information, including best practices, see: * https://docs.microsoft.com/azure/aks/upgrade-cluster#customize-node-surge-upgrade */ @JsonProperty(value = "maxSurge") private String maxSurge; /** - * Get the maxSurge property: The maximum number or percentage of nodes that are surged during upgrade. This can - * either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the - * percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded - * up. If not specified, the default is 1. For more information, including best practices, see: + * Get the maxSurge property: The maximum number or percentage of nodes that are surged during upgrade. + * + *

This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it + * is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are + * rounded up. If not specified, the default is 1. For more information, including best practices, see: * https://docs.microsoft.com/azure/aks/upgrade-cluster#customize-node-surge-upgrade. * * @return the maxSurge value. @@ -36,10 +39,11 @@ public String maxSurge() { } /** - * Set the maxSurge property: The maximum number or percentage of nodes that are surged during upgrade. This can - * either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the - * percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded - * up. If not specified, the default is 1. For more information, including best practices, see: + * Set the maxSurge property: The maximum number or percentage of nodes that are surged during upgrade. + * + *

This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it + * is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are + * rounded up. If not specified, the default is 1. For more information, including best practices, see: * https://docs.microsoft.com/azure/aks/upgrade-cluster#customize-node-surge-upgrade. * * @param maxSurge the maxSurge value to set. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/AzureKeyVaultKms.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/AzureKeyVaultKms.java new file mode 100644 index 000000000000..1ac5b1205399 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/AzureKeyVaultKms.java @@ -0,0 +1,153 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.containerservice.models; + +import com.azure.core.annotation.Fluent; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** Azure Key Vault key management service settings for the security profile. */ +@Fluent +public final class AzureKeyVaultKms { + /* + * Whether to enable Azure Key Vault key management service. The default is + * false. + */ + @JsonProperty(value = "enabled") + private Boolean enabled; + + /* + * Identifier of Azure Key Vault key. See [key identifier + * format](https://docs.microsoft.com/en-us/azure/key-vault/general/about-keys-secrets-certificates#vault-name-and-object-name) + * for more details. When Azure Key Vault key management service is + * enabled, this field is required and must be a valid key identifier. When + * Azure Key Vault key management service is disabled, leave the field + * empty. + */ + @JsonProperty(value = "keyId") + private String keyId; + + /* + * Network access of the key vault + * + * Network access of key vault. The possible values are `Public` and + * `Private`. `Public` means the key vault allows public access from all + * networks. `Private` means the key vault disables public access and + * enables private link. The default value is `Public`. + */ + @JsonProperty(value = "keyVaultNetworkAccess") + private KeyVaultNetworkAccessTypes keyVaultNetworkAccess; + + /* + * Resource ID of key vault. When keyVaultNetworkAccess is `Private`, this + * field is required and must be a valid resource ID. When + * keyVaultNetworkAccess is `Public`, leave the field empty. + */ + @JsonProperty(value = "keyVaultResourceId") + private String keyVaultResourceId; + + /** + * Get the enabled property: Whether to enable Azure Key Vault key management service. The default is false. + * + * @return the enabled value. + */ + public Boolean enabled() { + return this.enabled; + } + + /** + * Set the enabled property: Whether to enable Azure Key Vault key management service. The default is false. + * + * @param enabled the enabled value to set. + * @return the AzureKeyVaultKms object itself. + */ + public AzureKeyVaultKms withEnabled(Boolean enabled) { + this.enabled = enabled; + return this; + } + + /** + * Get the keyId property: Identifier of Azure Key Vault key. See [key identifier + * format](https://docs.microsoft.com/en-us/azure/key-vault/general/about-keys-secrets-certificates#vault-name-and-object-name) + * for more details. When Azure Key Vault key management service is enabled, this field is required and must be a + * valid key identifier. When Azure Key Vault key management service is disabled, leave the field empty. + * + * @return the keyId value. + */ + public String keyId() { + return this.keyId; + } + + /** + * Set the keyId property: Identifier of Azure Key Vault key. See [key identifier + * format](https://docs.microsoft.com/en-us/azure/key-vault/general/about-keys-secrets-certificates#vault-name-and-object-name) + * for more details. When Azure Key Vault key management service is enabled, this field is required and must be a + * valid key identifier. When Azure Key Vault key management service is disabled, leave the field empty. + * + * @param keyId the keyId value to set. + * @return the AzureKeyVaultKms object itself. + */ + public AzureKeyVaultKms withKeyId(String keyId) { + this.keyId = keyId; + return this; + } + + /** + * Get the keyVaultNetworkAccess property: Network access of the key vault + * + *

Network access of key vault. The possible values are `Public` and `Private`. `Public` means the key vault + * allows public access from all networks. `Private` means the key vault disables public access and enables private + * link. The default value is `Public`. + * + * @return the keyVaultNetworkAccess value. + */ + public KeyVaultNetworkAccessTypes keyVaultNetworkAccess() { + return this.keyVaultNetworkAccess; + } + + /** + * Set the keyVaultNetworkAccess property: Network access of the key vault + * + *

Network access of key vault. The possible values are `Public` and `Private`. `Public` means the key vault + * allows public access from all networks. `Private` means the key vault disables public access and enables private + * link. The default value is `Public`. + * + * @param keyVaultNetworkAccess the keyVaultNetworkAccess value to set. + * @return the AzureKeyVaultKms object itself. + */ + public AzureKeyVaultKms withKeyVaultNetworkAccess(KeyVaultNetworkAccessTypes keyVaultNetworkAccess) { + this.keyVaultNetworkAccess = keyVaultNetworkAccess; + return this; + } + + /** + * Get the keyVaultResourceId property: Resource ID of key vault. When keyVaultNetworkAccess is `Private`, this + * field is required and must be a valid resource ID. When keyVaultNetworkAccess is `Public`, leave the field empty. + * + * @return the keyVaultResourceId value. + */ + public String keyVaultResourceId() { + return this.keyVaultResourceId; + } + + /** + * Set the keyVaultResourceId property: Resource ID of key vault. When keyVaultNetworkAccess is `Private`, this + * field is required and must be a valid resource ID. When keyVaultNetworkAccess is `Public`, leave the field empty. + * + * @param keyVaultResourceId the keyVaultResourceId value to set. + * @return the AzureKeyVaultKms object itself. + */ + public AzureKeyVaultKms withKeyVaultResourceId(String keyVaultResourceId) { + this.keyVaultResourceId = keyVaultResourceId; + return this; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ContainerServiceNetworkProfile.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ContainerServiceNetworkProfile.java index c50ffc339e83..59687ee9b3cf 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ContainerServiceNetworkProfile.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ContainerServiceNetworkProfile.java @@ -24,8 +24,10 @@ public final class ContainerServiceNetworkProfile { private NetworkPolicy networkPolicy; /* - * The network mode Azure CNI is configured with. This cannot be specified - * if networkPlugin is anything other than 'azure'. + * The network mode Azure CNI is configured with. + * + * This cannot be specified if networkPlugin is anything other than + * 'azure'. */ @JsonProperty(value = "networkMode") private NetworkMode networkMode; @@ -60,17 +62,19 @@ public final class ContainerServiceNetworkProfile { private String dockerBridgeCidr; /* - * The outbound (egress) routing method. This can only be set at cluster - * creation time and cannot be changed later. For more information see - * [egress outbound + * The outbound (egress) routing method. + * + * This can only be set at cluster creation time and cannot be changed + * later. For more information see [egress outbound * type](https://docs.microsoft.com/azure/aks/egress-outboundtype). */ @JsonProperty(value = "outboundType") private OutboundType outboundType; /* - * The load balancer sku for the managed cluster. The default is - * 'standard'. See [Azure Load Balancer + * The load balancer sku for the managed cluster. + * + * The default is 'standard'. See [Azure Load Balancer * SKUs](https://docs.microsoft.com/azure/load-balancer/skus) for more * information about the differences between load balancer SKUs. */ @@ -90,15 +94,17 @@ public final class ContainerServiceNetworkProfile { private ManagedClusterNatGatewayProfile natGatewayProfile; /* - * The CIDR notation IP ranges from which to assign pod IPs. One IPv4 CIDR - * is expected for single-stack networking. Two CIDRs, one for each IP - * family (IPv4/IPv6), is expected for dual-stack networking. + * The CIDR notation IP ranges from which to assign pod IPs. + * + * One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one + * for each IP family (IPv4/IPv6), is expected for dual-stack networking. */ @JsonProperty(value = "podCidrs") private List podCidrs; /* * The CIDR notation IP ranges from which to assign service cluster IPs. + * * One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one * for each IP family (IPv4/IPv6), is expected for dual-stack networking. * They must not overlap with any Subnet IP ranges. @@ -107,10 +113,11 @@ public final class ContainerServiceNetworkProfile { private List serviceCidrs; /* - * The IP families used to specify IP versions available to the cluster. IP - * families are used to determine single-stack or dual-stack clusters. For - * single-stack, the expected value is IPv4. For dual-stack, the expected - * values are IPv4 and IPv6. + * The IP families used to specify IP versions available to the cluster. + * + * IP families are used to determine single-stack or dual-stack clusters. + * For single-stack, the expected value is IPv4. For dual-stack, the + * expected values are IPv4 and IPv6. */ @JsonProperty(value = "ipFamilies") private List ipFamilies; @@ -156,8 +163,9 @@ public ContainerServiceNetworkProfile withNetworkPolicy(NetworkPolicy networkPol } /** - * Get the networkMode property: The network mode Azure CNI is configured with. This cannot be specified if - * networkPlugin is anything other than 'azure'. + * Get the networkMode property: The network mode Azure CNI is configured with. + * + *

This cannot be specified if networkPlugin is anything other than 'azure'. * * @return the networkMode value. */ @@ -166,8 +174,9 @@ public NetworkMode networkMode() { } /** - * Set the networkMode property: The network mode Azure CNI is configured with. This cannot be specified if - * networkPlugin is anything other than 'azure'. + * Set the networkMode property: The network mode Azure CNI is configured with. + * + *

This cannot be specified if networkPlugin is anything other than 'azure'. * * @param networkMode the networkMode value to set. * @return the ContainerServiceNetworkProfile object itself. @@ -264,9 +273,10 @@ public ContainerServiceNetworkProfile withDockerBridgeCidr(String dockerBridgeCi } /** - * Get the outboundType property: The outbound (egress) routing method. This can only be set at cluster creation - * time and cannot be changed later. For more information see [egress outbound - * type](https://docs.microsoft.com/azure/aks/egress-outboundtype). + * Get the outboundType property: The outbound (egress) routing method. + * + *

This can only be set at cluster creation time and cannot be changed later. For more information see [egress + * outbound type](https://docs.microsoft.com/azure/aks/egress-outboundtype). * * @return the outboundType value. */ @@ -275,9 +285,10 @@ public OutboundType outboundType() { } /** - * Set the outboundType property: The outbound (egress) routing method. This can only be set at cluster creation - * time and cannot be changed later. For more information see [egress outbound - * type](https://docs.microsoft.com/azure/aks/egress-outboundtype). + * Set the outboundType property: The outbound (egress) routing method. + * + *

This can only be set at cluster creation time and cannot be changed later. For more information see [egress + * outbound type](https://docs.microsoft.com/azure/aks/egress-outboundtype). * * @param outboundType the outboundType value to set. * @return the ContainerServiceNetworkProfile object itself. @@ -288,9 +299,10 @@ public ContainerServiceNetworkProfile withOutboundType(OutboundType outboundType } /** - * Get the loadBalancerSku property: The load balancer sku for the managed cluster. The default is 'standard'. See - * [Azure Load Balancer SKUs](https://docs.microsoft.com/azure/load-balancer/skus) for more information about the - * differences between load balancer SKUs. + * Get the loadBalancerSku property: The load balancer sku for the managed cluster. + * + *

The default is 'standard'. See [Azure Load Balancer SKUs](https://docs.microsoft.com/azure/load-balancer/skus) + * for more information about the differences between load balancer SKUs. * * @return the loadBalancerSku value. */ @@ -299,9 +311,10 @@ public LoadBalancerSku loadBalancerSku() { } /** - * Set the loadBalancerSku property: The load balancer sku for the managed cluster. The default is 'standard'. See - * [Azure Load Balancer SKUs](https://docs.microsoft.com/azure/load-balancer/skus) for more information about the - * differences between load balancer SKUs. + * Set the loadBalancerSku property: The load balancer sku for the managed cluster. + * + *

The default is 'standard'. See [Azure Load Balancer SKUs](https://docs.microsoft.com/azure/load-balancer/skus) + * for more information about the differences between load balancer SKUs. * * @param loadBalancerSku the loadBalancerSku value to set. * @return the ContainerServiceNetworkProfile object itself. @@ -353,9 +366,10 @@ public ContainerServiceNetworkProfile withNatGatewayProfile(ManagedClusterNatGat } /** - * Get the podCidrs property: The CIDR notation IP ranges from which to assign pod IPs. One IPv4 CIDR is expected - * for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is expected for dual-stack - * networking. + * Get the podCidrs property: The CIDR notation IP ranges from which to assign pod IPs. + * + *

One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is + * expected for dual-stack networking. * * @return the podCidrs value. */ @@ -364,9 +378,10 @@ public List podCidrs() { } /** - * Set the podCidrs property: The CIDR notation IP ranges from which to assign pod IPs. One IPv4 CIDR is expected - * for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is expected for dual-stack - * networking. + * Set the podCidrs property: The CIDR notation IP ranges from which to assign pod IPs. + * + *

One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is + * expected for dual-stack networking. * * @param podCidrs the podCidrs value to set. * @return the ContainerServiceNetworkProfile object itself. @@ -377,9 +392,10 @@ public ContainerServiceNetworkProfile withPodCidrs(List podCidrs) { } /** - * Get the serviceCidrs property: The CIDR notation IP ranges from which to assign service cluster IPs. One IPv4 - * CIDR is expected for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is expected for - * dual-stack networking. They must not overlap with any Subnet IP ranges. + * Get the serviceCidrs property: The CIDR notation IP ranges from which to assign service cluster IPs. + * + *

One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is + * expected for dual-stack networking. They must not overlap with any Subnet IP ranges. * * @return the serviceCidrs value. */ @@ -388,9 +404,10 @@ public List serviceCidrs() { } /** - * Set the serviceCidrs property: The CIDR notation IP ranges from which to assign service cluster IPs. One IPv4 - * CIDR is expected for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is expected for - * dual-stack networking. They must not overlap with any Subnet IP ranges. + * Set the serviceCidrs property: The CIDR notation IP ranges from which to assign service cluster IPs. + * + *

One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is + * expected for dual-stack networking. They must not overlap with any Subnet IP ranges. * * @param serviceCidrs the serviceCidrs value to set. * @return the ContainerServiceNetworkProfile object itself. @@ -401,9 +418,10 @@ public ContainerServiceNetworkProfile withServiceCidrs(List serviceCidrs } /** - * Get the ipFamilies property: The IP families used to specify IP versions available to the cluster. IP families - * are used to determine single-stack or dual-stack clusters. For single-stack, the expected value is IPv4. For - * dual-stack, the expected values are IPv4 and IPv6. + * Get the ipFamilies property: The IP families used to specify IP versions available to the cluster. + * + *

IP families are used to determine single-stack or dual-stack clusters. For single-stack, the expected value is + * IPv4. For dual-stack, the expected values are IPv4 and IPv6. * * @return the ipFamilies value. */ @@ -412,9 +430,10 @@ public List ipFamilies() { } /** - * Set the ipFamilies property: The IP families used to specify IP versions available to the cluster. IP families - * are used to determine single-stack or dual-stack clusters. For single-stack, the expected value is IPv4. For - * dual-stack, the expected values are IPv4 and IPv6. + * Set the ipFamilies property: The IP families used to specify IP versions available to the cluster. + * + *

IP families are used to determine single-stack or dual-stack clusters. For single-stack, the expected value is + * IPv4. For dual-stack, the expected values are IPv4 and IPv6. * * @param ipFamilies the ipFamilies value to set. * @return the ContainerServiceNetworkProfile object itself. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/KeyVaultNetworkAccessTypes.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/KeyVaultNetworkAccessTypes.java new file mode 100644 index 000000000000..85c4dea1d4a2 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/KeyVaultNetworkAccessTypes.java @@ -0,0 +1,38 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.containerservice.models; + +import com.azure.core.util.ExpandableStringEnum; +import com.fasterxml.jackson.annotation.JsonCreator; +import java.util.Collection; + +/** Defines values for KeyVaultNetworkAccessTypes. */ +public final class KeyVaultNetworkAccessTypes extends ExpandableStringEnum { + /** Static value Public for KeyVaultNetworkAccessTypes. */ + public static final KeyVaultNetworkAccessTypes PUBLIC = fromString("Public"); + + /** Static value Private for KeyVaultNetworkAccessTypes. */ + public static final KeyVaultNetworkAccessTypes PRIVATE = fromString("Private"); + + /** + * Creates or finds a KeyVaultNetworkAccessTypes from its string representation. + * + * @param name a name to look for. + * @return the corresponding KeyVaultNetworkAccessTypes. + */ + @JsonCreator + public static KeyVaultNetworkAccessTypes fromString(String name) { + return fromString(name, KeyVaultNetworkAccessTypes.class); + } + + /** + * Gets known KeyVaultNetworkAccessTypes values. + * + * @return known KeyVaultNetworkAccessTypes values. + */ + public static Collection values() { + return values(KeyVaultNetworkAccessTypes.class); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/KubeletConfig.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/KubeletConfig.java index 179fb3af8dff..0a45d86f674e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/KubeletConfig.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/KubeletConfig.java @@ -9,14 +9,17 @@ import java.util.List; /** - * Kubelet configurations of agent nodes. See [AKS custom node - * configuration](https://docs.microsoft.com/azure/aks/custom-node-configuration) for more details. + * Kubelet configurations of agent nodes. + * + *

See [AKS custom node configuration](https://docs.microsoft.com/azure/aks/custom-node-configuration) for more + * details. */ @Fluent public final class KubeletConfig { /* - * The CPU Manager policy to use. The default is 'none'. See [Kubernetes - * CPU management + * The CPU Manager policy to use. + * + * The default is 'none'. See [Kubernetes CPU management * policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/#cpu-management-policies) * for more information. Allowed values are 'none' and 'static'. */ @@ -25,38 +28,45 @@ public final class KubeletConfig { /* * If CPU CFS quota enforcement is enabled for containers that specify CPU - * limits. The default is true. + * limits. + * + * The default is true. */ @JsonProperty(value = "cpuCfsQuota") private Boolean cpuCfsQuota; /* - * The CPU CFS quota period value. The default is '100ms.' Valid values are - * a sequence of decimal numbers with an optional fraction and a unit - * suffix. For example: '300ms', '2h45m'. Supported units are 'ns', 'us', - * 'ms', 's', 'm', and 'h'. + * The CPU CFS quota period value. + * + * The default is '100ms.' Valid values are a sequence of decimal numbers + * with an optional fraction and a unit suffix. For example: '300ms', + * '2h45m'. Supported units are 'ns', 'us', 'ms', 's', 'm', and 'h'. */ @JsonProperty(value = "cpuCfsQuotaPeriod") private String cpuCfsQuotaPeriod; /* * The percent of disk usage after which image garbage collection is always - * run. To disable image garbage collection, set to 100. The default is 85% + * run. + * + * To disable image garbage collection, set to 100. The default is 85% */ @JsonProperty(value = "imageGcHighThreshold") private Integer imageGcHighThreshold; /* * The percent of disk usage before which image garbage collection is never - * run. This cannot be set higher than imageGcHighThreshold. The default is - * 80% + * run. + * + * This cannot be set higher than imageGcHighThreshold. The default is 80% */ @JsonProperty(value = "imageGcLowThreshold") private Integer imageGcLowThreshold; /* - * The Topology Manager policy to use. For more information see [Kubernetes - * Topology + * The Topology Manager policy to use. + * + * For more information see [Kubernetes Topology * Manager](https://kubernetes.io/docs/tasks/administer-cluster/topology-manager). * The default is 'none'. Allowed values are 'none', 'best-effort', * 'restricted', and 'single-numa-node'. @@ -98,8 +108,9 @@ public final class KubeletConfig { private Integer podMaxPids; /** - * Get the cpuManagerPolicy property: The CPU Manager policy to use. The default is 'none'. See [Kubernetes CPU - * management + * Get the cpuManagerPolicy property: The CPU Manager policy to use. + * + *

The default is 'none'. See [Kubernetes CPU management * policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/#cpu-management-policies) * for more information. Allowed values are 'none' and 'static'. * @@ -110,8 +121,9 @@ public String cpuManagerPolicy() { } /** - * Set the cpuManagerPolicy property: The CPU Manager policy to use. The default is 'none'. See [Kubernetes CPU - * management + * Set the cpuManagerPolicy property: The CPU Manager policy to use. + * + *

The default is 'none'. See [Kubernetes CPU management * policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/#cpu-management-policies) * for more information. Allowed values are 'none' and 'static'. * @@ -124,8 +136,9 @@ public KubeletConfig withCpuManagerPolicy(String cpuManagerPolicy) { } /** - * Get the cpuCfsQuota property: If CPU CFS quota enforcement is enabled for containers that specify CPU limits. The - * default is true. + * Get the cpuCfsQuota property: If CPU CFS quota enforcement is enabled for containers that specify CPU limits. + * + *

The default is true. * * @return the cpuCfsQuota value. */ @@ -134,8 +147,9 @@ public Boolean cpuCfsQuota() { } /** - * Set the cpuCfsQuota property: If CPU CFS quota enforcement is enabled for containers that specify CPU limits. The - * default is true. + * Set the cpuCfsQuota property: If CPU CFS quota enforcement is enabled for containers that specify CPU limits. + * + *

The default is true. * * @param cpuCfsQuota the cpuCfsQuota value to set. * @return the KubeletConfig object itself. @@ -146,9 +160,10 @@ public KubeletConfig withCpuCfsQuota(Boolean cpuCfsQuota) { } /** - * Get the cpuCfsQuotaPeriod property: The CPU CFS quota period value. The default is '100ms.' Valid values are a - * sequence of decimal numbers with an optional fraction and a unit suffix. For example: '300ms', '2h45m'. Supported - * units are 'ns', 'us', 'ms', 's', 'm', and 'h'. + * Get the cpuCfsQuotaPeriod property: The CPU CFS quota period value. + * + *

The default is '100ms.' Valid values are a sequence of decimal numbers with an optional fraction and a unit + * suffix. For example: '300ms', '2h45m'. Supported units are 'ns', 'us', 'ms', 's', 'm', and 'h'. * * @return the cpuCfsQuotaPeriod value. */ @@ -157,9 +172,10 @@ public String cpuCfsQuotaPeriod() { } /** - * Set the cpuCfsQuotaPeriod property: The CPU CFS quota period value. The default is '100ms.' Valid values are a - * sequence of decimal numbers with an optional fraction and a unit suffix. For example: '300ms', '2h45m'. Supported - * units are 'ns', 'us', 'ms', 's', 'm', and 'h'. + * Set the cpuCfsQuotaPeriod property: The CPU CFS quota period value. + * + *

The default is '100ms.' Valid values are a sequence of decimal numbers with an optional fraction and a unit + * suffix. For example: '300ms', '2h45m'. Supported units are 'ns', 'us', 'ms', 's', 'm', and 'h'. * * @param cpuCfsQuotaPeriod the cpuCfsQuotaPeriod value to set. * @return the KubeletConfig object itself. @@ -171,7 +187,9 @@ public KubeletConfig withCpuCfsQuotaPeriod(String cpuCfsQuotaPeriod) { /** * Get the imageGcHighThreshold property: The percent of disk usage after which image garbage collection is always - * run. To disable image garbage collection, set to 100. The default is 85%. + * run. + * + *

To disable image garbage collection, set to 100. The default is 85%. * * @return the imageGcHighThreshold value. */ @@ -181,7 +199,9 @@ public Integer imageGcHighThreshold() { /** * Set the imageGcHighThreshold property: The percent of disk usage after which image garbage collection is always - * run. To disable image garbage collection, set to 100. The default is 85%. + * run. + * + *

To disable image garbage collection, set to 100. The default is 85%. * * @param imageGcHighThreshold the imageGcHighThreshold value to set. * @return the KubeletConfig object itself. @@ -193,7 +213,9 @@ public KubeletConfig withImageGcHighThreshold(Integer imageGcHighThreshold) { /** * Get the imageGcLowThreshold property: The percent of disk usage before which image garbage collection is never - * run. This cannot be set higher than imageGcHighThreshold. The default is 80%. + * run. + * + *

This cannot be set higher than imageGcHighThreshold. The default is 80%. * * @return the imageGcLowThreshold value. */ @@ -203,7 +225,9 @@ public Integer imageGcLowThreshold() { /** * Set the imageGcLowThreshold property: The percent of disk usage before which image garbage collection is never - * run. This cannot be set higher than imageGcHighThreshold. The default is 80%. + * run. + * + *

This cannot be set higher than imageGcHighThreshold. The default is 80%. * * @param imageGcLowThreshold the imageGcLowThreshold value to set. * @return the KubeletConfig object itself. @@ -214,9 +238,11 @@ public KubeletConfig withImageGcLowThreshold(Integer imageGcLowThreshold) { } /** - * Get the topologyManagerPolicy property: The Topology Manager policy to use. For more information see [Kubernetes - * Topology Manager](https://kubernetes.io/docs/tasks/administer-cluster/topology-manager). The default is 'none'. - * Allowed values are 'none', 'best-effort', 'restricted', and 'single-numa-node'. + * Get the topologyManagerPolicy property: The Topology Manager policy to use. + * + *

For more information see [Kubernetes Topology + * Manager](https://kubernetes.io/docs/tasks/administer-cluster/topology-manager). The default is 'none'. Allowed + * values are 'none', 'best-effort', 'restricted', and 'single-numa-node'. * * @return the topologyManagerPolicy value. */ @@ -225,9 +251,11 @@ public String topologyManagerPolicy() { } /** - * Set the topologyManagerPolicy property: The Topology Manager policy to use. For more information see [Kubernetes - * Topology Manager](https://kubernetes.io/docs/tasks/administer-cluster/topology-manager). The default is 'none'. - * Allowed values are 'none', 'best-effort', 'restricted', and 'single-numa-node'. + * Set the topologyManagerPolicy property: The Topology Manager policy to use. + * + *

For more information see [Kubernetes Topology + * Manager](https://kubernetes.io/docs/tasks/administer-cluster/topology-manager). The default is 'none'. Allowed + * values are 'none', 'best-effort', 'restricted', and 'single-numa-node'. * * @param topologyManagerPolicy the topologyManagerPolicy value to set. * @return the KubeletConfig object itself. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/LinuxOSConfig.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/LinuxOSConfig.java index 7593ea34be3c..bfef4d97f15c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/LinuxOSConfig.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/LinuxOSConfig.java @@ -8,8 +8,10 @@ import com.fasterxml.jackson.annotation.JsonProperty; /** - * OS configurations of Linux agent nodes. See [AKS custom node - * configuration](https://docs.microsoft.com/azure/aks/custom-node-configuration) for more details. + * OS configurations of Linux agent nodes. + * + *

See [AKS custom node configuration](https://docs.microsoft.com/azure/aks/custom-node-configuration) for more + * details. */ @Fluent public final class LinuxOSConfig { @@ -20,9 +22,10 @@ public final class LinuxOSConfig { private SysctlConfig sysctls; /* - * Whether transparent hugepages are enabled. Valid values are 'always', - * 'madvise', and 'never'. The default is 'always'. For more information - * see [Transparent + * Whether transparent hugepages are enabled. + * + * Valid values are 'always', 'madvise', and 'never'. The default is + * 'always'. For more information see [Transparent * Hugepages](https://www.kernel.org/doc/html/latest/admin-guide/mm/transhuge.html#admin-guide-transhuge). */ @JsonProperty(value = "transparentHugePageEnabled") @@ -30,9 +33,10 @@ public final class LinuxOSConfig { /* * Whether the kernel should make aggressive use of memory compaction to - * make more hugepages available. Valid values are 'always', 'defer', - * 'defer+madvise', 'madvise' and 'never'. The default is 'madvise'. For - * more information see [Transparent + * make more hugepages available. + * + * Valid values are 'always', 'defer', 'defer+madvise', 'madvise' and + * 'never'. The default is 'madvise'. For more information see [Transparent * Hugepages](https://www.kernel.org/doc/html/latest/admin-guide/mm/transhuge.html#admin-guide-transhuge). */ @JsonProperty(value = "transparentHugePageDefrag") @@ -65,8 +69,10 @@ public LinuxOSConfig withSysctls(SysctlConfig sysctls) { } /** - * Get the transparentHugePageEnabled property: Whether transparent hugepages are enabled. Valid values are - * 'always', 'madvise', and 'never'. The default is 'always'. For more information see [Transparent + * Get the transparentHugePageEnabled property: Whether transparent hugepages are enabled. + * + *

Valid values are 'always', 'madvise', and 'never'. The default is 'always'. For more information see + * [Transparent * Hugepages](https://www.kernel.org/doc/html/latest/admin-guide/mm/transhuge.html#admin-guide-transhuge). * * @return the transparentHugePageEnabled value. @@ -76,8 +82,10 @@ public String transparentHugePageEnabled() { } /** - * Set the transparentHugePageEnabled property: Whether transparent hugepages are enabled. Valid values are - * 'always', 'madvise', and 'never'. The default is 'always'. For more information see [Transparent + * Set the transparentHugePageEnabled property: Whether transparent hugepages are enabled. + * + *

Valid values are 'always', 'madvise', and 'never'. The default is 'always'. For more information see + * [Transparent * Hugepages](https://www.kernel.org/doc/html/latest/admin-guide/mm/transhuge.html#admin-guide-transhuge). * * @param transparentHugePageEnabled the transparentHugePageEnabled value to set. @@ -90,8 +98,10 @@ public LinuxOSConfig withTransparentHugePageEnabled(String transparentHugePageEn /** * Get the transparentHugePageDefrag property: Whether the kernel should make aggressive use of memory compaction to - * make more hugepages available. Valid values are 'always', 'defer', 'defer+madvise', 'madvise' and 'never'. The - * default is 'madvise'. For more information see [Transparent + * make more hugepages available. + * + *

Valid values are 'always', 'defer', 'defer+madvise', 'madvise' and 'never'. The default is 'madvise'. For more + * information see [Transparent * Hugepages](https://www.kernel.org/doc/html/latest/admin-guide/mm/transhuge.html#admin-guide-transhuge). * * @return the transparentHugePageDefrag value. @@ -102,8 +112,10 @@ public String transparentHugePageDefrag() { /** * Set the transparentHugePageDefrag property: Whether the kernel should make aggressive use of memory compaction to - * make more hugepages available. Valid values are 'always', 'defer', 'defer+madvise', 'madvise' and 'never'. The - * default is 'madvise'. For more information see [Transparent + * make more hugepages available. + * + *

Valid values are 'always', 'defer', 'defer+madvise', 'madvise' and 'never'. The default is 'madvise'. For more + * information see [Transparent * Hugepages](https://www.kernel.org/doc/html/latest/admin-guide/mm/transhuge.html#admin-guide-transhuge). * * @param transparentHugePageDefrag the transparentHugePageDefrag value to set. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterAadProfile.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterAadProfile.java index dac50cb469ea..8e43b95f088d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterAadProfile.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterAadProfile.java @@ -9,8 +9,9 @@ import java.util.List; /** - * AADProfile specifies attributes for Azure Active Directory integration. For more details see [managed AAD on - * AKS](https://docs.microsoft.com/azure/aks/managed-aad). + * AADProfile specifies attributes for Azure Active Directory integration. + * + *

For more details see [managed AAD on AKS](https://docs.microsoft.com/azure/aks/managed-aad). */ @Fluent public final class ManagedClusterAadProfile { diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterAgentPoolProfile.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterAgentPoolProfile.java index ac24e45856d7..2e70cdac8faf 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterAgentPoolProfile.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterAgentPoolProfile.java @@ -16,15 +16,18 @@ public final class ManagedClusterAgentPoolProfile extends ManagedClusterAgentPoolProfileProperties { /* * Unique name of the agent pool profile in the context of the subscription - * and resource group. Windows agent pool names must be 6 characters or - * less. + * and resource group. + * + * Windows agent pool names must be 6 characters or less. */ @JsonProperty(value = "name", required = true) private String name; /** * Get the name property: Unique name of the agent pool profile in the context of the subscription and resource - * group. Windows agent pool names must be 6 characters or less. + * group. + * + *

Windows agent pool names must be 6 characters or less. * * @return the name value. */ @@ -34,7 +37,9 @@ public String name() { /** * Set the name property: Unique name of the agent pool profile in the context of the subscription and resource - * group. Windows agent pool names must be 6 characters or less. + * group. + * + *

Windows agent pool names must be 6 characters or less. * * @param name the name value to set. * @return the ManagedClusterAgentPoolProfile object itself. @@ -303,6 +308,13 @@ public ManagedClusterAgentPoolProfile withCreationData(CreationData creationData return this; } + /** {@inheritDoc} */ + @Override + public ManagedClusterAgentPoolProfile withHostGroupId(String hostGroupId) { + super.withHostGroupId(hostGroupId); + return this; + } + /** * Validates the instance. * diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterApiServerAccessProfile.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterApiServerAccessProfile.java index 30b2ec96d64c..13b938ff6d88 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterApiServerAccessProfile.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterApiServerAccessProfile.java @@ -12,27 +12,30 @@ @Fluent public final class ManagedClusterApiServerAccessProfile { /* - * The IP ranges authorized to access the Kubernetes API server. IP ranges - * are specified in CIDR format, e.g. 137.117.106.88/29. This feature is - * not compatible with clusters that use Public IP Per Node, or clusters - * that are using a Basic Load Balancer. For more information see [API - * server authorized IP + * The IP ranges authorized to access the Kubernetes API server. + * + * IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This + * feature is not compatible with clusters that use Public IP Per Node, or + * clusters that are using a Basic Load Balancer. For more information see + * [API server authorized IP * ranges](https://docs.microsoft.com/azure/aks/api-server-authorized-ip-ranges). */ @JsonProperty(value = "authorizedIPRanges") private List authorizedIpRanges; /* - * Whether to create the cluster as a private cluster or not. For more - * details, see [Creating a private AKS + * Whether to create the cluster as a private cluster or not. + * + * For more details, see [Creating a private AKS * cluster](https://docs.microsoft.com/azure/aks/private-clusters). */ @JsonProperty(value = "enablePrivateCluster") private Boolean enablePrivateCluster; /* - * The private DNS zone mode for the cluster. The default is System. For - * more details see [configure private DNS + * The private DNS zone mode for the cluster. + * + * The default is System. For more details see [configure private DNS * zone](https://docs.microsoft.com/azure/aks/private-clusters#configure-private-dns-zone). * Allowed values are 'system' and 'none'. */ @@ -52,10 +55,11 @@ public final class ManagedClusterApiServerAccessProfile { private Boolean disableRunCommand; /** - * Get the authorizedIpRanges property: The IP ranges authorized to access the Kubernetes API server. IP ranges are - * specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with clusters that use Public IP - * Per Node, or clusters that are using a Basic Load Balancer. For more information see [API server authorized IP - * ranges](https://docs.microsoft.com/azure/aks/api-server-authorized-ip-ranges). + * Get the authorizedIpRanges property: The IP ranges authorized to access the Kubernetes API server. + * + *

IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with clusters + * that use Public IP Per Node, or clusters that are using a Basic Load Balancer. For more information see [API + * server authorized IP ranges](https://docs.microsoft.com/azure/aks/api-server-authorized-ip-ranges). * * @return the authorizedIpRanges value. */ @@ -64,10 +68,11 @@ public List authorizedIpRanges() { } /** - * Set the authorizedIpRanges property: The IP ranges authorized to access the Kubernetes API server. IP ranges are - * specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with clusters that use Public IP - * Per Node, or clusters that are using a Basic Load Balancer. For more information see [API server authorized IP - * ranges](https://docs.microsoft.com/azure/aks/api-server-authorized-ip-ranges). + * Set the authorizedIpRanges property: The IP ranges authorized to access the Kubernetes API server. + * + *

IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with clusters + * that use Public IP Per Node, or clusters that are using a Basic Load Balancer. For more information see [API + * server authorized IP ranges](https://docs.microsoft.com/azure/aks/api-server-authorized-ip-ranges). * * @param authorizedIpRanges the authorizedIpRanges value to set. * @return the ManagedClusterApiServerAccessProfile object itself. @@ -78,8 +83,9 @@ public ManagedClusterApiServerAccessProfile withAuthorizedIpRanges(List } /** - * Get the enablePrivateCluster property: Whether to create the cluster as a private cluster or not. For more - * details, see [Creating a private AKS cluster](https://docs.microsoft.com/azure/aks/private-clusters). + * Get the enablePrivateCluster property: Whether to create the cluster as a private cluster or not. + * + *

For more details, see [Creating a private AKS cluster](https://docs.microsoft.com/azure/aks/private-clusters). * * @return the enablePrivateCluster value. */ @@ -88,8 +94,9 @@ public Boolean enablePrivateCluster() { } /** - * Set the enablePrivateCluster property: Whether to create the cluster as a private cluster or not. For more - * details, see [Creating a private AKS cluster](https://docs.microsoft.com/azure/aks/private-clusters). + * Set the enablePrivateCluster property: Whether to create the cluster as a private cluster or not. + * + *

For more details, see [Creating a private AKS cluster](https://docs.microsoft.com/azure/aks/private-clusters). * * @param enablePrivateCluster the enablePrivateCluster value to set. * @return the ManagedClusterApiServerAccessProfile object itself. @@ -100,8 +107,9 @@ public ManagedClusterApiServerAccessProfile withEnablePrivateCluster(Boolean ena } /** - * Get the privateDnsZone property: The private DNS zone mode for the cluster. The default is System. For more - * details see [configure private DNS + * Get the privateDnsZone property: The private DNS zone mode for the cluster. + * + *

The default is System. For more details see [configure private DNS * zone](https://docs.microsoft.com/azure/aks/private-clusters#configure-private-dns-zone). Allowed values are * 'system' and 'none'. * @@ -112,8 +120,9 @@ public String privateDnsZone() { } /** - * Set the privateDnsZone property: The private DNS zone mode for the cluster. The default is System. For more - * details see [configure private DNS + * Set the privateDnsZone property: The private DNS zone mode for the cluster. + * + *

The default is System. For more details see [configure private DNS * zone](https://docs.microsoft.com/azure/aks/private-clusters#configure-private-dns-zone). Allowed values are * 'system' and 'none'. * diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterAutoUpgradeProfile.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterAutoUpgradeProfile.java index a8b9695c8214..f59ce2611945 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterAutoUpgradeProfile.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterAutoUpgradeProfile.java @@ -11,16 +11,18 @@ @Fluent public final class ManagedClusterAutoUpgradeProfile { /* - * The upgrade channel for auto upgrade. The default is 'none'. For more - * information see [setting the AKS cluster auto-upgrade + * The upgrade channel for auto upgrade. The default is 'none'. + * + * For more information see [setting the AKS cluster auto-upgrade * channel](https://docs.microsoft.com/azure/aks/upgrade-cluster#set-auto-upgrade-channel). */ @JsonProperty(value = "upgradeChannel") private UpgradeChannel upgradeChannel; /** - * Get the upgradeChannel property: The upgrade channel for auto upgrade. The default is 'none'. For more - * information see [setting the AKS cluster auto-upgrade + * Get the upgradeChannel property: The upgrade channel for auto upgrade. The default is 'none'. + * + *

For more information see [setting the AKS cluster auto-upgrade * channel](https://docs.microsoft.com/azure/aks/upgrade-cluster#set-auto-upgrade-channel). * * @return the upgradeChannel value. @@ -30,8 +32,9 @@ public UpgradeChannel upgradeChannel() { } /** - * Set the upgradeChannel property: The upgrade channel for auto upgrade. The default is 'none'. For more - * information see [setting the AKS cluster auto-upgrade + * Set the upgradeChannel property: The upgrade channel for auto upgrade. The default is 'none'. + * + *

For more information see [setting the AKS cluster auto-upgrade * channel](https://docs.microsoft.com/azure/aks/upgrade-cluster#set-auto-upgrade-channel). * * @param upgradeChannel the upgradeChannel value to set. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterIdentity.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterIdentity.java index 733ce9d5cffc..fcbc62082362 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterIdentity.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterIdentity.java @@ -27,8 +27,9 @@ public class ManagedClusterIdentity { private String tenantId; /* - * The type of identity used for the managed cluster. For more information - * see [use managed identities in + * The type of identity used for the managed cluster. + * + * For more information see [use managed identities in * AKS](https://docs.microsoft.com/azure/aks/use-managed-identity). */ @JsonProperty(value = "type") @@ -62,8 +63,10 @@ public String tenantId() { } /** - * Get the type property: The type of identity used for the managed cluster. For more information see [use managed - * identities in AKS](https://docs.microsoft.com/azure/aks/use-managed-identity). + * Get the type property: The type of identity used for the managed cluster. + * + *

For more information see [use managed identities in + * AKS](https://docs.microsoft.com/azure/aks/use-managed-identity). * * @return the type value. */ @@ -72,8 +75,10 @@ public ResourceIdentityType type() { } /** - * Set the type property: The type of identity used for the managed cluster. For more information see [use managed - * identities in AKS](https://docs.microsoft.com/azure/aks/use-managed-identity). + * Set the type property: The type of identity used for the managed cluster. + * + *

For more information see [use managed identities in + * AKS](https://docs.microsoft.com/azure/aks/use-managed-identity). * * @param type the type value to set. * @return the ManagedClusterIdentity object itself. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterPodIdentityException.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterPodIdentityException.java index c95c33357285..e2ec6bc92754 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterPodIdentityException.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterPodIdentityException.java @@ -12,9 +12,10 @@ /** * A pod identity exception, which allows pods with certain labels to access the Azure Instance Metadata Service (IMDS) - * endpoint without being intercepted by the node-managed identity (NMI) server. See [disable AAD Pod Identity for a - * specific Pod/Application](https://azure.github.io/aad-pod-identity/docs/configure/application_exception/) for more - * details. + * endpoint without being intercepted by the node-managed identity (NMI) server. + * + *

See [disable AAD Pod Identity for a specific + * Pod/Application](https://azure.github.io/aad-pod-identity/docs/configure/application_exception/) for more details. */ @Fluent public final class ManagedClusterPodIdentityException { diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterPodIdentityProfile.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterPodIdentityProfile.java index 4155803b2681..efcaed89b16c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterPodIdentityProfile.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterPodIdentityProfile.java @@ -9,9 +9,10 @@ import java.util.List; /** - * The pod identity profile of the Managed Cluster. See [use AAD pod - * identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity) for more details on pod identity - * integration. + * The pod identity profile of the Managed Cluster. + * + *

See [use AAD pod identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity) for more details on pod + * identity integration. */ @Fluent public final class ManagedClusterPodIdentityProfile { @@ -23,9 +24,11 @@ public final class ManagedClusterPodIdentityProfile { /* * Whether pod identity is allowed to run on clusters with Kubenet - * networking. Running in Kubenet is disabled by default due to the - * security related nature of AAD Pod Identity and the risks of IP - * spoofing. See [using Kubenet network plugin with AAD Pod + * networking. + * + * Running in Kubenet is disabled by default due to the security related + * nature of AAD Pod Identity and the risks of IP spoofing. See [using + * Kubenet network plugin with AAD Pod * Identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity#using-kubenet-network-plugin-with-azure-active-directory-pod-managed-identities) * for more information. */ @@ -66,8 +69,10 @@ public ManagedClusterPodIdentityProfile withEnabled(Boolean enabled) { /** * Get the allowNetworkPluginKubenet property: Whether pod identity is allowed to run on clusters with Kubenet - * networking. Running in Kubenet is disabled by default due to the security related nature of AAD Pod Identity and - * the risks of IP spoofing. See [using Kubenet network plugin with AAD Pod + * networking. + * + *

Running in Kubenet is disabled by default due to the security related nature of AAD Pod Identity and the risks + * of IP spoofing. See [using Kubenet network plugin with AAD Pod * Identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity#using-kubenet-network-plugin-with-azure-active-directory-pod-managed-identities) * for more information. * @@ -79,8 +84,10 @@ public Boolean allowNetworkPluginKubenet() { /** * Set the allowNetworkPluginKubenet property: Whether pod identity is allowed to run on clusters with Kubenet - * networking. Running in Kubenet is disabled by default due to the security related nature of AAD Pod Identity and - * the risks of IP spoofing. See [using Kubenet network plugin with AAD Pod + * networking. + * + *

Running in Kubenet is disabled by default due to the security related nature of AAD Pod Identity and the risks + * of IP spoofing. See [using Kubenet network plugin with AAD Pod * Identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity#using-kubenet-network-plugin-with-azure-active-directory-pod-managed-identities) * for more information. * diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterPropertiesAutoScalerProfile.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterPropertiesAutoScalerProfile.java index 5dfb5d5e8ce9..44745d8b609f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterPropertiesAutoScalerProfile.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterPropertiesAutoScalerProfile.java @@ -12,14 +12,17 @@ public final class ManagedClusterPropertiesAutoScalerProfile { /* * Detects similar node pools and balances the number of nodes between - * them. Valid values are 'true' and 'false' + * them. + * + * Valid values are 'true' and 'false' */ @JsonProperty(value = "balance-similar-node-groups") private String balanceSimilarNodeGroups; /* - * The expander to use when scaling up If not specified, the default is - * 'random'. See + * The expander to use when scaling up + * + * If not specified, the default is 'random'. See * [expanders](https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-expanders) * for more information. */ @@ -28,77 +31,90 @@ public final class ManagedClusterPropertiesAutoScalerProfile { /* * The maximum number of empty nodes that can be deleted at the same time. - * This must be a positive integer. The default is 10. + * This must be a positive integer. + * + * The default is 10. */ @JsonProperty(value = "max-empty-bulk-delete") private String maxEmptyBulkDelete; /* * The maximum number of seconds the cluster autoscaler waits for pod - * termination when trying to scale down a node. The default is 600. + * termination when trying to scale down a node. + * + * The default is 600. */ @JsonProperty(value = "max-graceful-termination-sec") private String maxGracefulTerminationSec; /* - * The maximum time the autoscaler waits for a node to be provisioned. The - * default is '15m'. Values must be an integer followed by an 'm'. No unit - * of time other than minutes (m) is supported. + * The maximum time the autoscaler waits for a node to be provisioned. + * + * The default is '15m'. Values must be an integer followed by an 'm'. No + * unit of time other than minutes (m) is supported. */ @JsonProperty(value = "max-node-provision-time") private String maxNodeProvisionTime; /* * The maximum percentage of unready nodes in the cluster. After this - * percentage is exceeded, cluster autoscaler halts operations. The default - * is 45. The maximum is 100 and the minimum is 0. + * percentage is exceeded, cluster autoscaler halts operations. + * + * The default is 45. The maximum is 100 and the minimum is 0. */ @JsonProperty(value = "max-total-unready-percentage") private String maxTotalUnreadyPercentage; /* - * Ignore unscheduled pods before they're a certain age. For scenarios like - * burst/batch scale where you don't want CA to act before the kubernetes - * scheduler could schedule all the pods, you can tell CA to ignore - * unscheduled pods before they're a certain age. The default is '0s'. - * Values must be an integer followed by a unit ('s' for seconds, 'm' for - * minutes, 'h' for hours, etc). + * Ignore unscheduled pods before they're a certain age. + * + * For scenarios like burst/batch scale where you don't want CA to act + * before the kubernetes scheduler could schedule all the pods, you can + * tell CA to ignore unscheduled pods before they're a certain age. The + * default is '0s'. Values must be an integer followed by a unit ('s' for + * seconds, 'm' for minutes, 'h' for hours, etc). */ @JsonProperty(value = "new-pod-scale-up-delay") private String newPodScaleUpDelay; /* * The number of allowed unready nodes, irrespective of - * max-total-unready-percentage. This must be an integer. The default is 3. + * max-total-unready-percentage. + * + * This must be an integer. The default is 3. */ @JsonProperty(value = "ok-total-unready-count") private String okTotalUnreadyCount; /* - * How often cluster is reevaluated for scale up or down. The default is - * '10'. Values must be an integer number of seconds. + * How often cluster is reevaluated for scale up or down. + * + * The default is '10'. Values must be an integer number of seconds. */ @JsonProperty(value = "scan-interval") private String scanInterval; /* - * How long after scale up that scale down evaluation resumes The default - * is '10m'. Values must be an integer followed by an 'm'. No unit of time - * other than minutes (m) is supported. + * How long after scale up that scale down evaluation resumes + * + * The default is '10m'. Values must be an integer followed by an 'm'. No + * unit of time other than minutes (m) is supported. */ @JsonProperty(value = "scale-down-delay-after-add") private String scaleDownDelayAfterAdd; /* - * How long after node deletion that scale down evaluation resumes. The - * default is the scan-interval. Values must be an integer followed by an - * 'm'. No unit of time other than minutes (m) is supported. + * How long after node deletion that scale down evaluation resumes. + * + * The default is the scan-interval. Values must be an integer followed by + * an 'm'. No unit of time other than minutes (m) is supported. */ @JsonProperty(value = "scale-down-delay-after-delete") private String scaleDownDelayAfterDelete; /* * How long after scale down failure that scale down evaluation resumes. + * * The default is '3m'. Values must be an integer followed by an 'm'. No * unit of time other than minutes (m) is supported. */ @@ -107,6 +123,7 @@ public final class ManagedClusterPropertiesAutoScalerProfile { /* * How long a node should be unneeded before it is eligible for scale down. + * * The default is '10m'. Values must be an integer followed by an 'm'. No * unit of time other than minutes (m) is supported. */ @@ -115,37 +132,46 @@ public final class ManagedClusterPropertiesAutoScalerProfile { /* * How long an unready node should be unneeded before it is eligible for - * scale down The default is '20m'. Values must be an integer followed by - * an 'm'. No unit of time other than minutes (m) is supported. + * scale down + * + * The default is '20m'. Values must be an integer followed by an 'm'. No + * unit of time other than minutes (m) is supported. */ @JsonProperty(value = "scale-down-unready-time") private String scaleDownUnreadyTime; /* * Node utilization level, defined as sum of requested resources divided by - * capacity, below which a node can be considered for scale down. The - * default is '0.5'. + * capacity, below which a node can be considered for scale down. + * + * The default is '0.5'. */ @JsonProperty(value = "scale-down-utilization-threshold") private String scaleDownUtilizationThreshold; /* * If cluster autoscaler will skip deleting nodes with pods with local - * storage, for example, EmptyDir or HostPath. The default is true. + * storage, for example, EmptyDir or HostPath. + * + * The default is true. */ @JsonProperty(value = "skip-nodes-with-local-storage") private String skipNodesWithLocalStorage; /* * If cluster autoscaler will skip deleting nodes with pods from - * kube-system (except for DaemonSet or mirror pods) The default is true. + * kube-system (except for DaemonSet or mirror pods) + * + * The default is true. */ @JsonProperty(value = "skip-nodes-with-system-pods") private String skipNodesWithSystemPods; /** * Get the balanceSimilarNodeGroups property: Detects similar node pools and balances the number of nodes between - * them. Valid values are 'true' and 'false'. + * them. + * + *

Valid values are 'true' and 'false'. * * @return the balanceSimilarNodeGroups value. */ @@ -155,7 +181,9 @@ public String balanceSimilarNodeGroups() { /** * Set the balanceSimilarNodeGroups property: Detects similar node pools and balances the number of nodes between - * them. Valid values are 'true' and 'false'. + * them. + * + *

Valid values are 'true' and 'false'. * * @param balanceSimilarNodeGroups the balanceSimilarNodeGroups value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. @@ -166,7 +194,9 @@ public ManagedClusterPropertiesAutoScalerProfile withBalanceSimilarNodeGroups(St } /** - * Get the expander property: The expander to use when scaling up If not specified, the default is 'random'. See + * Get the expander property: The expander to use when scaling up + * + *

If not specified, the default is 'random'. See * [expanders](https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-expanders) * for more information. * @@ -177,7 +207,9 @@ public Expander expander() { } /** - * Set the expander property: The expander to use when scaling up If not specified, the default is 'random'. See + * Set the expander property: The expander to use when scaling up + * + *

If not specified, the default is 'random'. See * [expanders](https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-expanders) * for more information. * @@ -191,7 +223,9 @@ public ManagedClusterPropertiesAutoScalerProfile withExpander(Expander expander) /** * Get the maxEmptyBulkDelete property: The maximum number of empty nodes that can be deleted at the same time. This - * must be a positive integer. The default is 10. + * must be a positive integer. + * + *

The default is 10. * * @return the maxEmptyBulkDelete value. */ @@ -201,7 +235,9 @@ public String maxEmptyBulkDelete() { /** * Set the maxEmptyBulkDelete property: The maximum number of empty nodes that can be deleted at the same time. This - * must be a positive integer. The default is 10. + * must be a positive integer. + * + *

The default is 10. * * @param maxEmptyBulkDelete the maxEmptyBulkDelete value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. @@ -213,7 +249,9 @@ public ManagedClusterPropertiesAutoScalerProfile withMaxEmptyBulkDelete(String m /** * Get the maxGracefulTerminationSec property: The maximum number of seconds the cluster autoscaler waits for pod - * termination when trying to scale down a node. The default is 600. + * termination when trying to scale down a node. + * + *

The default is 600. * * @return the maxGracefulTerminationSec value. */ @@ -223,7 +261,9 @@ public String maxGracefulTerminationSec() { /** * Set the maxGracefulTerminationSec property: The maximum number of seconds the cluster autoscaler waits for pod - * termination when trying to scale down a node. The default is 600. + * termination when trying to scale down a node. + * + *

The default is 600. * * @param maxGracefulTerminationSec the maxGracefulTerminationSec value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. @@ -234,8 +274,9 @@ public ManagedClusterPropertiesAutoScalerProfile withMaxGracefulTerminationSec(S } /** - * Get the maxNodeProvisionTime property: The maximum time the autoscaler waits for a node to be provisioned. The - * default is '15m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is + * Get the maxNodeProvisionTime property: The maximum time the autoscaler waits for a node to be provisioned. + * + *

The default is '15m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is * supported. * * @return the maxNodeProvisionTime value. @@ -245,8 +286,9 @@ public String maxNodeProvisionTime() { } /** - * Set the maxNodeProvisionTime property: The maximum time the autoscaler waits for a node to be provisioned. The - * default is '15m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is + * Set the maxNodeProvisionTime property: The maximum time the autoscaler waits for a node to be provisioned. + * + *

The default is '15m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is * supported. * * @param maxNodeProvisionTime the maxNodeProvisionTime value to set. @@ -259,8 +301,9 @@ public ManagedClusterPropertiesAutoScalerProfile withMaxNodeProvisionTime(String /** * Get the maxTotalUnreadyPercentage property: The maximum percentage of unready nodes in the cluster. After this - * percentage is exceeded, cluster autoscaler halts operations. The default is 45. The maximum is 100 and the - * minimum is 0. + * percentage is exceeded, cluster autoscaler halts operations. + * + *

The default is 45. The maximum is 100 and the minimum is 0. * * @return the maxTotalUnreadyPercentage value. */ @@ -270,8 +313,9 @@ public String maxTotalUnreadyPercentage() { /** * Set the maxTotalUnreadyPercentage property: The maximum percentage of unready nodes in the cluster. After this - * percentage is exceeded, cluster autoscaler halts operations. The default is 45. The maximum is 100 and the - * minimum is 0. + * percentage is exceeded, cluster autoscaler halts operations. + * + *

The default is 45. The maximum is 100 and the minimum is 0. * * @param maxTotalUnreadyPercentage the maxTotalUnreadyPercentage value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. @@ -282,10 +326,11 @@ public ManagedClusterPropertiesAutoScalerProfile withMaxTotalUnreadyPercentage(S } /** - * Get the newPodScaleUpDelay property: Ignore unscheduled pods before they're a certain age. For scenarios like - * burst/batch scale where you don't want CA to act before the kubernetes scheduler could schedule all the pods, you - * can tell CA to ignore unscheduled pods before they're a certain age. The default is '0s'. Values must be an - * integer followed by a unit ('s' for seconds, 'm' for minutes, 'h' for hours, etc). + * Get the newPodScaleUpDelay property: Ignore unscheduled pods before they're a certain age. + * + *

For scenarios like burst/batch scale where you don't want CA to act before the kubernetes scheduler could + * schedule all the pods, you can tell CA to ignore unscheduled pods before they're a certain age. The default is + * '0s'. Values must be an integer followed by a unit ('s' for seconds, 'm' for minutes, 'h' for hours, etc). * * @return the newPodScaleUpDelay value. */ @@ -294,10 +339,11 @@ public String newPodScaleUpDelay() { } /** - * Set the newPodScaleUpDelay property: Ignore unscheduled pods before they're a certain age. For scenarios like - * burst/batch scale where you don't want CA to act before the kubernetes scheduler could schedule all the pods, you - * can tell CA to ignore unscheduled pods before they're a certain age. The default is '0s'. Values must be an - * integer followed by a unit ('s' for seconds, 'm' for minutes, 'h' for hours, etc). + * Set the newPodScaleUpDelay property: Ignore unscheduled pods before they're a certain age. + * + *

For scenarios like burst/batch scale where you don't want CA to act before the kubernetes scheduler could + * schedule all the pods, you can tell CA to ignore unscheduled pods before they're a certain age. The default is + * '0s'. Values must be an integer followed by a unit ('s' for seconds, 'm' for minutes, 'h' for hours, etc). * * @param newPodScaleUpDelay the newPodScaleUpDelay value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. @@ -309,7 +355,9 @@ public ManagedClusterPropertiesAutoScalerProfile withNewPodScaleUpDelay(String n /** * Get the okTotalUnreadyCount property: The number of allowed unready nodes, irrespective of - * max-total-unready-percentage. This must be an integer. The default is 3. + * max-total-unready-percentage. + * + *

This must be an integer. The default is 3. * * @return the okTotalUnreadyCount value. */ @@ -319,7 +367,9 @@ public String okTotalUnreadyCount() { /** * Set the okTotalUnreadyCount property: The number of allowed unready nodes, irrespective of - * max-total-unready-percentage. This must be an integer. The default is 3. + * max-total-unready-percentage. + * + *

This must be an integer. The default is 3. * * @param okTotalUnreadyCount the okTotalUnreadyCount value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. @@ -330,8 +380,9 @@ public ManagedClusterPropertiesAutoScalerProfile withOkTotalUnreadyCount(String } /** - * Get the scanInterval property: How often cluster is reevaluated for scale up or down. The default is '10'. Values - * must be an integer number of seconds. + * Get the scanInterval property: How often cluster is reevaluated for scale up or down. + * + *

The default is '10'. Values must be an integer number of seconds. * * @return the scanInterval value. */ @@ -340,8 +391,9 @@ public String scanInterval() { } /** - * Set the scanInterval property: How often cluster is reevaluated for scale up or down. The default is '10'. Values - * must be an integer number of seconds. + * Set the scanInterval property: How often cluster is reevaluated for scale up or down. + * + *

The default is '10'. Values must be an integer number of seconds. * * @param scanInterval the scanInterval value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. @@ -352,8 +404,10 @@ public ManagedClusterPropertiesAutoScalerProfile withScanInterval(String scanInt } /** - * Get the scaleDownDelayAfterAdd property: How long after scale up that scale down evaluation resumes The default - * is '10m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is supported. + * Get the scaleDownDelayAfterAdd property: How long after scale up that scale down evaluation resumes + * + *

The default is '10m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is + * supported. * * @return the scaleDownDelayAfterAdd value. */ @@ -362,8 +416,10 @@ public String scaleDownDelayAfterAdd() { } /** - * Set the scaleDownDelayAfterAdd property: How long after scale up that scale down evaluation resumes The default - * is '10m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is supported. + * Set the scaleDownDelayAfterAdd property: How long after scale up that scale down evaluation resumes + * + *

The default is '10m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is + * supported. * * @param scaleDownDelayAfterAdd the scaleDownDelayAfterAdd value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. @@ -374,9 +430,10 @@ public ManagedClusterPropertiesAutoScalerProfile withScaleDownDelayAfterAdd(Stri } /** - * Get the scaleDownDelayAfterDelete property: How long after node deletion that scale down evaluation resumes. The - * default is the scan-interval. Values must be an integer followed by an 'm'. No unit of time other than minutes - * (m) is supported. + * Get the scaleDownDelayAfterDelete property: How long after node deletion that scale down evaluation resumes. + * + *

The default is the scan-interval. Values must be an integer followed by an 'm'. No unit of time other than + * minutes (m) is supported. * * @return the scaleDownDelayAfterDelete value. */ @@ -385,9 +442,10 @@ public String scaleDownDelayAfterDelete() { } /** - * Set the scaleDownDelayAfterDelete property: How long after node deletion that scale down evaluation resumes. The - * default is the scan-interval. Values must be an integer followed by an 'm'. No unit of time other than minutes - * (m) is supported. + * Set the scaleDownDelayAfterDelete property: How long after node deletion that scale down evaluation resumes. + * + *

The default is the scan-interval. Values must be an integer followed by an 'm'. No unit of time other than + * minutes (m) is supported. * * @param scaleDownDelayAfterDelete the scaleDownDelayAfterDelete value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. @@ -399,8 +457,10 @@ public ManagedClusterPropertiesAutoScalerProfile withScaleDownDelayAfterDelete(S /** * Get the scaleDownDelayAfterFailure property: How long after scale down failure that scale down evaluation - * resumes. The default is '3m'. Values must be an integer followed by an 'm'. No unit of time other than minutes - * (m) is supported. + * resumes. + * + *

The default is '3m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is + * supported. * * @return the scaleDownDelayAfterFailure value. */ @@ -410,8 +470,10 @@ public String scaleDownDelayAfterFailure() { /** * Set the scaleDownDelayAfterFailure property: How long after scale down failure that scale down evaluation - * resumes. The default is '3m'. Values must be an integer followed by an 'm'. No unit of time other than minutes - * (m) is supported. + * resumes. + * + *

The default is '3m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is + * supported. * * @param scaleDownDelayAfterFailure the scaleDownDelayAfterFailure value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. @@ -423,7 +485,8 @@ public ManagedClusterPropertiesAutoScalerProfile withScaleDownDelayAfterFailure( /** * Get the scaleDownUnneededTime property: How long a node should be unneeded before it is eligible for scale down. - * The default is '10m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is + * + *

The default is '10m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is * supported. * * @return the scaleDownUnneededTime value. @@ -434,7 +497,8 @@ public String scaleDownUnneededTime() { /** * Set the scaleDownUnneededTime property: How long a node should be unneeded before it is eligible for scale down. - * The default is '10m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is + * + *

The default is '10m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is * supported. * * @param scaleDownUnneededTime the scaleDownUnneededTime value to set. @@ -447,8 +511,10 @@ public ManagedClusterPropertiesAutoScalerProfile withScaleDownUnneededTime(Strin /** * Get the scaleDownUnreadyTime property: How long an unready node should be unneeded before it is eligible for - * scale down The default is '20m'. Values must be an integer followed by an 'm'. No unit of time other than minutes - * (m) is supported. + * scale down + * + *

The default is '20m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is + * supported. * * @return the scaleDownUnreadyTime value. */ @@ -458,8 +524,10 @@ public String scaleDownUnreadyTime() { /** * Set the scaleDownUnreadyTime property: How long an unready node should be unneeded before it is eligible for - * scale down The default is '20m'. Values must be an integer followed by an 'm'. No unit of time other than minutes - * (m) is supported. + * scale down + * + *

The default is '20m'. Values must be an integer followed by an 'm'. No unit of time other than minutes (m) is + * supported. * * @param scaleDownUnreadyTime the scaleDownUnreadyTime value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. @@ -471,7 +539,9 @@ public ManagedClusterPropertiesAutoScalerProfile withScaleDownUnreadyTime(String /** * Get the scaleDownUtilizationThreshold property: Node utilization level, defined as sum of requested resources - * divided by capacity, below which a node can be considered for scale down. The default is '0.5'. + * divided by capacity, below which a node can be considered for scale down. + * + *

The default is '0.5'. * * @return the scaleDownUtilizationThreshold value. */ @@ -481,7 +551,9 @@ public String scaleDownUtilizationThreshold() { /** * Set the scaleDownUtilizationThreshold property: Node utilization level, defined as sum of requested resources - * divided by capacity, below which a node can be considered for scale down. The default is '0.5'. + * divided by capacity, below which a node can be considered for scale down. + * + *

The default is '0.5'. * * @param scaleDownUtilizationThreshold the scaleDownUtilizationThreshold value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. @@ -494,7 +566,9 @@ public ManagedClusterPropertiesAutoScalerProfile withScaleDownUtilizationThresho /** * Get the skipNodesWithLocalStorage property: If cluster autoscaler will skip deleting nodes with pods with local - * storage, for example, EmptyDir or HostPath. The default is true. + * storage, for example, EmptyDir or HostPath. + * + *

The default is true. * * @return the skipNodesWithLocalStorage value. */ @@ -504,7 +578,9 @@ public String skipNodesWithLocalStorage() { /** * Set the skipNodesWithLocalStorage property: If cluster autoscaler will skip deleting nodes with pods with local - * storage, for example, EmptyDir or HostPath. The default is true. + * storage, for example, EmptyDir or HostPath. + * + *

The default is true. * * @param skipNodesWithLocalStorage the skipNodesWithLocalStorage value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. @@ -516,7 +592,9 @@ public ManagedClusterPropertiesAutoScalerProfile withSkipNodesWithLocalStorage(S /** * Get the skipNodesWithSystemPods property: If cluster autoscaler will skip deleting nodes with pods from - * kube-system (except for DaemonSet or mirror pods) The default is true. + * kube-system (except for DaemonSet or mirror pods) + * + *

The default is true. * * @return the skipNodesWithSystemPods value. */ @@ -526,7 +604,9 @@ public String skipNodesWithSystemPods() { /** * Set the skipNodesWithSystemPods property: If cluster autoscaler will skip deleting nodes with pods from - * kube-system (except for DaemonSet or mirror pods) The default is true. + * kube-system (except for DaemonSet or mirror pods) + * + *

The default is true. * * @param skipNodesWithSystemPods the skipNodesWithSystemPods value to set. * @return the ManagedClusterPropertiesAutoScalerProfile object itself. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfile.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfile.java index 3f739b4ae3e5..1e53efcc0b63 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfile.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfile.java @@ -11,28 +11,58 @@ @Fluent public final class ManagedClusterSecurityProfile { /* - * Azure Defender settings for the security profile. + * Microsoft Defender settings for the security profile. */ - @JsonProperty(value = "azureDefender") - private ManagedClusterSecurityProfileAzureDefender azureDefender; + @JsonProperty(value = "defender") + private ManagedClusterSecurityProfileDefender defender; + + /* + * Azure Key Vault [key management + * service](https://kubernetes.io/docs/tasks/administer-cluster/kms-provider/) + * settings for the security profile. + */ + @JsonProperty(value = "azureKeyVaultKms") + private AzureKeyVaultKms azureKeyVaultKms; + + /** + * Get the defender property: Microsoft Defender settings for the security profile. + * + * @return the defender value. + */ + public ManagedClusterSecurityProfileDefender defender() { + return this.defender; + } /** - * Get the azureDefender property: Azure Defender settings for the security profile. + * Set the defender property: Microsoft Defender settings for the security profile. * - * @return the azureDefender value. + * @param defender the defender value to set. + * @return the ManagedClusterSecurityProfile object itself. + */ + public ManagedClusterSecurityProfile withDefender(ManagedClusterSecurityProfileDefender defender) { + this.defender = defender; + return this; + } + + /** + * Get the azureKeyVaultKms property: Azure Key Vault [key management + * service](https://kubernetes.io/docs/tasks/administer-cluster/kms-provider/) settings for the security profile. + * + * @return the azureKeyVaultKms value. */ - public ManagedClusterSecurityProfileAzureDefender azureDefender() { - return this.azureDefender; + public AzureKeyVaultKms azureKeyVaultKms() { + return this.azureKeyVaultKms; } /** - * Set the azureDefender property: Azure Defender settings for the security profile. + * Set the azureKeyVaultKms property: Azure Key Vault [key management + * service](https://kubernetes.io/docs/tasks/administer-cluster/kms-provider/) settings for the security profile. * - * @param azureDefender the azureDefender value to set. + * @param azureKeyVaultKms the azureKeyVaultKms value to set. * @return the ManagedClusterSecurityProfile object itself. */ - public ManagedClusterSecurityProfile withAzureDefender(ManagedClusterSecurityProfileAzureDefender azureDefender) { - this.azureDefender = azureDefender; + public ManagedClusterSecurityProfile withAzureKeyVaultKms(AzureKeyVaultKms azureKeyVaultKms) { + this.azureKeyVaultKms = azureKeyVaultKms; return this; } @@ -42,8 +72,11 @@ public ManagedClusterSecurityProfile withAzureDefender(ManagedClusterSecurityPro * @throws IllegalArgumentException thrown if the instance is not valid. */ public void validate() { - if (azureDefender() != null) { - azureDefender().validate(); + if (defender() != null) { + defender().validate(); + } + if (azureKeyVaultKms() != null) { + azureKeyVaultKms().validate(); } } } diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfileAzureDefender.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfileAzureDefender.java deleted file mode 100644 index 58ee348d2b37..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfileAzureDefender.java +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -// Code generated by Microsoft (R) AutoRest Code Generator. - -package com.azure.resourcemanager.containerservice.models; - -import com.azure.core.annotation.Fluent; -import com.fasterxml.jackson.annotation.JsonProperty; - -/** Azure Defender settings for the security profile. */ -@Fluent -public final class ManagedClusterSecurityProfileAzureDefender { - /* - * Whether to enable Azure Defender - */ - @JsonProperty(value = "enabled") - private Boolean enabled; - - /* - * Resource ID of the Log Analytics workspace to be associated with Azure - * Defender. When Azure Defender is enabled, this field is required and - * must be a valid workspace resource ID. When Azure Defender is disabled, - * leave the field empty. - */ - @JsonProperty(value = "logAnalyticsWorkspaceResourceId") - private String logAnalyticsWorkspaceResourceId; - - /** - * Get the enabled property: Whether to enable Azure Defender. - * - * @return the enabled value. - */ - public Boolean enabled() { - return this.enabled; - } - - /** - * Set the enabled property: Whether to enable Azure Defender. - * - * @param enabled the enabled value to set. - * @return the ManagedClusterSecurityProfileAzureDefender object itself. - */ - public ManagedClusterSecurityProfileAzureDefender withEnabled(Boolean enabled) { - this.enabled = enabled; - return this; - } - - /** - * Get the logAnalyticsWorkspaceResourceId property: Resource ID of the Log Analytics workspace to be associated - * with Azure Defender. When Azure Defender is enabled, this field is required and must be a valid workspace - * resource ID. When Azure Defender is disabled, leave the field empty. - * - * @return the logAnalyticsWorkspaceResourceId value. - */ - public String logAnalyticsWorkspaceResourceId() { - return this.logAnalyticsWorkspaceResourceId; - } - - /** - * Set the logAnalyticsWorkspaceResourceId property: Resource ID of the Log Analytics workspace to be associated - * with Azure Defender. When Azure Defender is enabled, this field is required and must be a valid workspace - * resource ID. When Azure Defender is disabled, leave the field empty. - * - * @param logAnalyticsWorkspaceResourceId the logAnalyticsWorkspaceResourceId value to set. - * @return the ManagedClusterSecurityProfileAzureDefender object itself. - */ - public ManagedClusterSecurityProfileAzureDefender withLogAnalyticsWorkspaceResourceId( - String logAnalyticsWorkspaceResourceId) { - this.logAnalyticsWorkspaceResourceId = logAnalyticsWorkspaceResourceId; - return this; - } - - /** - * Validates the instance. - * - * @throws IllegalArgumentException thrown if the instance is not valid. - */ - public void validate() { - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfileDefender.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfileDefender.java new file mode 100644 index 000000000000..75add6d20078 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfileDefender.java @@ -0,0 +1,87 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.containerservice.models; + +import com.azure.core.annotation.Fluent; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** Microsoft Defender settings for the security profile. */ +@Fluent +public final class ManagedClusterSecurityProfileDefender { + /* + * Resource ID of the Log Analytics workspace to be associated with + * Microsoft Defender. When Microsoft Defender is enabled, this field is + * required and must be a valid workspace resource ID. When Microsoft + * Defender is disabled, leave the field empty. + */ + @JsonProperty(value = "logAnalyticsWorkspaceResourceId") + private String logAnalyticsWorkspaceResourceId; + + /* + * Microsoft Defender threat detection for Cloud settings for the security + * profile. + */ + @JsonProperty(value = "securityMonitoring") + private ManagedClusterSecurityProfileDefenderSecurityMonitoring securityMonitoring; + + /** + * Get the logAnalyticsWorkspaceResourceId property: Resource ID of the Log Analytics workspace to be associated + * with Microsoft Defender. When Microsoft Defender is enabled, this field is required and must be a valid workspace + * resource ID. When Microsoft Defender is disabled, leave the field empty. + * + * @return the logAnalyticsWorkspaceResourceId value. + */ + public String logAnalyticsWorkspaceResourceId() { + return this.logAnalyticsWorkspaceResourceId; + } + + /** + * Set the logAnalyticsWorkspaceResourceId property: Resource ID of the Log Analytics workspace to be associated + * with Microsoft Defender. When Microsoft Defender is enabled, this field is required and must be a valid workspace + * resource ID. When Microsoft Defender is disabled, leave the field empty. + * + * @param logAnalyticsWorkspaceResourceId the logAnalyticsWorkspaceResourceId value to set. + * @return the ManagedClusterSecurityProfileDefender object itself. + */ + public ManagedClusterSecurityProfileDefender withLogAnalyticsWorkspaceResourceId( + String logAnalyticsWorkspaceResourceId) { + this.logAnalyticsWorkspaceResourceId = logAnalyticsWorkspaceResourceId; + return this; + } + + /** + * Get the securityMonitoring property: Microsoft Defender threat detection for Cloud settings for the security + * profile. + * + * @return the securityMonitoring value. + */ + public ManagedClusterSecurityProfileDefenderSecurityMonitoring securityMonitoring() { + return this.securityMonitoring; + } + + /** + * Set the securityMonitoring property: Microsoft Defender threat detection for Cloud settings for the security + * profile. + * + * @param securityMonitoring the securityMonitoring value to set. + * @return the ManagedClusterSecurityProfileDefender object itself. + */ + public ManagedClusterSecurityProfileDefender withSecurityMonitoring( + ManagedClusterSecurityProfileDefenderSecurityMonitoring securityMonitoring) { + this.securityMonitoring = securityMonitoring; + return this; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + if (securityMonitoring() != null) { + securityMonitoring().validate(); + } + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfileDefenderSecurityMonitoring.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfileDefenderSecurityMonitoring.java new file mode 100644 index 000000000000..154b73257a95 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSecurityProfileDefenderSecurityMonitoring.java @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.containerservice.models; + +import com.azure.core.annotation.Fluent; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** Microsoft Defender settings for the security profile threat detection. */ +@Fluent +public final class ManagedClusterSecurityProfileDefenderSecurityMonitoring { + /* + * Whether to enable Defender threat detection + */ + @JsonProperty(value = "enabled") + private Boolean enabled; + + /** + * Get the enabled property: Whether to enable Defender threat detection. + * + * @return the enabled value. + */ + public Boolean enabled() { + return this.enabled; + } + + /** + * Set the enabled property: Whether to enable Defender threat detection. + * + * @param enabled the enabled value to set. + * @return the ManagedClusterSecurityProfileDefenderSecurityMonitoring object itself. + */ + public ManagedClusterSecurityProfileDefenderSecurityMonitoring withEnabled(Boolean enabled) { + this.enabled = enabled; + return this; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSku.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSku.java index 0f8bfc0471f5..19475cc6034e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSku.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterSku.java @@ -17,8 +17,9 @@ public final class ManagedClusterSku { private ManagedClusterSkuName name; /* - * The tier of a managed cluster SKU. If not specified, the default is - * 'Free'. See [uptime + * The tier of a managed cluster SKU. + * + * If not specified, the default is 'Free'. See [uptime * SLA](https://docs.microsoft.com/azure/aks/uptime-sla) for more details. */ @JsonProperty(value = "tier") @@ -45,8 +46,10 @@ public ManagedClusterSku withName(ManagedClusterSkuName name) { } /** - * Get the tier property: The tier of a managed cluster SKU. If not specified, the default is 'Free'. See [uptime - * SLA](https://docs.microsoft.com/azure/aks/uptime-sla) for more details. + * Get the tier property: The tier of a managed cluster SKU. + * + *

If not specified, the default is 'Free'. See [uptime SLA](https://docs.microsoft.com/azure/aks/uptime-sla) for + * more details. * * @return the tier value. */ @@ -55,8 +58,10 @@ public ManagedClusterSkuTier tier() { } /** - * Set the tier property: The tier of a managed cluster SKU. If not specified, the default is 'Free'. See [uptime - * SLA](https://docs.microsoft.com/azure/aks/uptime-sla) for more details. + * Set the tier property: The tier of a managed cluster SKU. + * + *

If not specified, the default is 'Free'. See [uptime SLA](https://docs.microsoft.com/azure/aks/uptime-sla) for + * more details. * * @param tier the tier value to set. * @return the ManagedClusterSku object itself. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterWindowsProfile.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterWindowsProfile.java index 5eee27e03d9c..184868997ac7 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterWindowsProfile.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/ManagedClusterWindowsProfile.java @@ -46,8 +46,10 @@ public final class ManagedClusterWindowsProfile { private LicenseType licenseType; /* - * Whether to enable CSI proxy. For more details on CSI proxy, see the [CSI - * proxy GitHub repo](https://github.com/kubernetes-csi/csi-proxy). + * Whether to enable CSI proxy. + * + * For more details on CSI proxy, see the [CSI proxy GitHub + * repo](https://github.com/kubernetes-csi/csi-proxy). */ @JsonProperty(value = "enableCSIProxy") private Boolean enableCsiProxy; @@ -141,8 +143,9 @@ public ManagedClusterWindowsProfile withLicenseType(LicenseType licenseType) { } /** - * Get the enableCsiProxy property: Whether to enable CSI proxy. For more details on CSI proxy, see the [CSI proxy - * GitHub repo](https://github.com/kubernetes-csi/csi-proxy). + * Get the enableCsiProxy property: Whether to enable CSI proxy. + * + *

For more details on CSI proxy, see the [CSI proxy GitHub repo](https://github.com/kubernetes-csi/csi-proxy). * * @return the enableCsiProxy value. */ @@ -151,8 +154,9 @@ public Boolean enableCsiProxy() { } /** - * Set the enableCsiProxy property: Whether to enable CSI proxy. For more details on CSI proxy, see the [CSI proxy - * GitHub repo](https://github.com/kubernetes-csi/csi-proxy). + * Set the enableCsiProxy property: Whether to enable CSI proxy. + * + *

For more details on CSI proxy, see the [CSI proxy GitHub repo](https://github.com/kubernetes-csi/csi-proxy). * * @param enableCsiProxy the enableCsiProxy value to set. * @return the ManagedClusterWindowsProfile object itself. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/NetworkPlugin.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/NetworkPlugin.java index f75f58a93382..77ee7cb95359 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/NetworkPlugin.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/NetworkPlugin.java @@ -16,6 +16,9 @@ public final class NetworkPlugin extends ExpandableStringEnum { /** Static value kubenet for NetworkPlugin. */ public static final NetworkPlugin KUBENET = fromString("kubenet"); + /** Static value none for NetworkPlugin. */ + public static final NetworkPlugin NONE = fromString("none"); + /** * Creates or finds a NetworkPlugin from its string representation. * diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/TimeInWeek.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/TimeInWeek.java index 8e6f934e1eb1..411413fa62cc 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/TimeInWeek.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/TimeInWeek.java @@ -18,9 +18,10 @@ public final class TimeInWeek { private WeekDay day; /* - * A list of hours in the day used to identify a time range. Each integer - * hour represents a time range beginning at 0m after the hour ending at - * the next hour (non-inclusive). 0 corresponds to 00:00 UTC, 23 + * A list of hours in the day used to identify a time range. + * + * Each integer hour represents a time range beginning at 0m after the hour + * ending at the next hour (non-inclusive). 0 corresponds to 00:00 UTC, 23 * corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - 02:00 UTC * time range. */ @@ -48,9 +49,11 @@ public TimeInWeek withDay(WeekDay day) { } /** - * Get the hourSlots property: A list of hours in the day used to identify a time range. Each integer hour - * represents a time range beginning at 0m after the hour ending at the next hour (non-inclusive). 0 corresponds to - * 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - 02:00 UTC time range. + * Get the hourSlots property: A list of hours in the day used to identify a time range. + * + *

Each integer hour represents a time range beginning at 0m after the hour ending at the next hour + * (non-inclusive). 0 corresponds to 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - + * 02:00 UTC time range. * * @return the hourSlots value. */ @@ -59,9 +62,11 @@ public List hourSlots() { } /** - * Set the hourSlots property: A list of hours in the day used to identify a time range. Each integer hour - * represents a time range beginning at 0m after the hour ending at the next hour (non-inclusive). 0 corresponds to - * 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - 02:00 UTC time range. + * Set the hourSlots property: A list of hours in the day used to identify a time range. + * + *

Each integer hour represents a time range beginning at 0m after the hour ending at the next hour + * (non-inclusive). 0 corresponds to 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - + * 02:00 UTC time range. * * @param hourSlots the hourSlots value to set. * @return the TimeInWeek object itself. diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/TimeSpan.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/TimeSpan.java index 0bd5f7016437..6ed59017b908 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/TimeSpan.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/TimeSpan.java @@ -8,7 +8,11 @@ import com.fasterxml.jackson.annotation.JsonProperty; import java.time.OffsetDateTime; -/** A time range. For example, between 2021-05-25T13:00:00Z and 2021-05-25T14:00:00Z. */ +/** + * A time range. + * + *

For example, between 2021-05-25T13:00:00Z and 2021-05-25T14:00:00Z. + */ @Fluent public final class TimeSpan { /* diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/WindowsGmsaProfile.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/WindowsGmsaProfile.java index 506fd4abbfe5..0b3c02023022 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/WindowsGmsaProfile.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/models/WindowsGmsaProfile.java @@ -11,8 +11,9 @@ @Fluent public final class WindowsGmsaProfile { /* - * Whether to enable Windows gMSA. Specifies whether to enable Windows gMSA - * in the managed cluster. + * Whether to enable Windows gMSA. + * + * Specifies whether to enable Windows gMSA in the managed cluster. */ @JsonProperty(value = "enabled") private Boolean enabled; @@ -34,8 +35,9 @@ public final class WindowsGmsaProfile { private String rootDomainName; /** - * Get the enabled property: Whether to enable Windows gMSA. Specifies whether to enable Windows gMSA in the managed - * cluster. + * Get the enabled property: Whether to enable Windows gMSA. + * + *

Specifies whether to enable Windows gMSA in the managed cluster. * * @return the enabled value. */ @@ -44,8 +46,9 @@ public Boolean enabled() { } /** - * Set the enabled property: Whether to enable Windows gMSA. Specifies whether to enable Windows gMSA in the managed - * cluster. + * Set the enabled property: Whether to enable Windows gMSA. + * + *

Specifies whether to enable Windows gMSA in the managed cluster. * * @param enabled the enabled value to set. * @return the WindowsGmsaProfile object itself. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsCreateOrUpdateSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsCreateOrUpdateSamples.java index ad7a6aa28f81..e17c5774f2c0 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsCreateOrUpdateSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsCreateOrUpdateSamples.java @@ -27,7 +27,7 @@ /** Samples for AgentPools CreateOrUpdate. */ public final class AgentPoolsCreateOrUpdateSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsCreate_EnableFIPS.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsCreate_EnableFIPS.json */ /** * Sample code: Create Agent Pool with FIPS enabled OS. @@ -54,7 +54,7 @@ public static void createAgentPoolWithFIPSEnabledOS(com.azure.resourcemanager.Az } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPools_Update.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPools_Update.json */ /** * Sample code: Update Agent Pool. @@ -86,7 +86,7 @@ public static void updateAgentPool(com.azure.resourcemanager.AzureResourceManage } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsCreate_GPUMIG.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsCreate_GPUMIG.json */ /** * Sample code: Create Agent Pool with GPUMIG. @@ -134,7 +134,35 @@ public static void createAgentPoolWithGPUMIG(com.azure.resourcemanager.AzureReso } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsCreate_Update.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsCreate_DedicatedHostGroup.json + */ + /** + * Sample code: Create Agent Pool with Dedicated Host Group. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void createAgentPoolWithDedicatedHostGroup(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .kubernetesClusters() + .manager() + .serviceClient() + .getAgentPools() + .createOrUpdate( + "rg1", + "clustername1", + "agentpool1", + new AgentPoolInner() + .withCount(3) + .withVmSize("Standard_DS2_v2") + .withOsType(OSType.LINUX) + .withOrchestratorVersion("") + .withHostGroupId( + "/subscriptions/subid1/resourcegroups/rg/providers/Microsoft.Compute/hostGroups/hostgroup1"), + Context.NONE); + } + + /* + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsCreate_Update.json */ /** * Sample code: Create/Update Agent Pool. @@ -166,7 +194,7 @@ public static void createUpdateAgentPool(com.azure.resourcemanager.AzureResource } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPools_Start.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPools_Start.json */ /** * Sample code: Start Agent Pool. @@ -188,7 +216,7 @@ public static void startAgentPool(com.azure.resourcemanager.AzureResourceManager } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsCreate_Spot.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsCreate_Spot.json */ /** * Sample code: Create Spot Agent Pool. @@ -219,7 +247,7 @@ public static void createSpotAgentPool(com.azure.resourcemanager.AzureResourceMa } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsCreate_Ephemeral.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsCreate_Ephemeral.json */ /** * Sample code: Create Agent Pool with Ephemeral OS Disk. @@ -247,7 +275,7 @@ public static void createAgentPoolWithEphemeralOSDisk(com.azure.resourcemanager. } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsCreate_EnableEncryptionAtHost.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsCreate_EnableEncryptionAtHost.json */ /** * Sample code: Create Agent Pool with EncryptionAtHost enabled. @@ -275,7 +303,7 @@ public static void createAgentPoolWithEncryptionAtHostEnabled( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsCreate_EnableUltraSSD.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsCreate_EnableUltraSSD.json */ /** * Sample code: Create Agent Pool with UltraSSD enabled. @@ -302,7 +330,7 @@ public static void createAgentPoolWithUltraSSDEnabled(com.azure.resourcemanager. } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsCreate_WasmWasi.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsCreate_WasmWasi.json */ /** * Sample code: Create Agent Pool with Krustlet and the WASI runtime. @@ -332,7 +360,7 @@ public static void createAgentPoolWithKrustletAndTheWASIRuntime( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsCreate_Snapshot.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsCreate_Snapshot.json */ /** * Sample code: Create Agent Pool using an agent pool snapshot. @@ -363,7 +391,7 @@ public static void createAgentPoolUsingAnAgentPoolSnapshot(com.azure.resourceman } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsCreate_PPG.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsCreate_PPG.json */ /** * Sample code: Create Agent Pool with PPG. @@ -391,7 +419,7 @@ public static void createAgentPoolWithPPG(com.azure.resourcemanager.AzureResourc } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsCreate_CustomNodeConfig.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsCreate_CustomNodeConfig.json */ /** * Sample code: Create Agent Pool with KubeletConfig and LinuxOSConfig. @@ -439,7 +467,7 @@ public static void createAgentPoolWithKubeletConfigAndLinuxOSConfig( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPools_Stop.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPools_Stop.json */ /** * Sample code: Stop Agent Pool. @@ -461,7 +489,7 @@ public static void stopAgentPool(com.azure.resourcemanager.AzureResourceManager } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsCreate_OSSKU.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsCreate_OSSKU.json */ /** * Sample code: Create Agent Pool with OSSKU. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsDeleteSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsDeleteSamples.java index a6bd2d6e7e5f..b0abb441f15b 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsDeleteSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsDeleteSamples.java @@ -9,7 +9,7 @@ /** Samples for AgentPools Delete. */ public final class AgentPoolsDeleteSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsDelete.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsDelete.json */ /** * Sample code: Delete Agent Pool. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsGetAvailableAgentPoolVersionsSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsGetAvailableAgentPoolVersionsSamples.java index 32a193e0b85e..7c3348d00a50 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsGetAvailableAgentPoolVersionsSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsGetAvailableAgentPoolVersionsSamples.java @@ -9,7 +9,7 @@ /** Samples for AgentPools GetAvailableAgentPoolVersions. */ public final class AgentPoolsGetAvailableAgentPoolVersionsSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsGetAgentPoolAvailableVersions.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsGetAgentPoolAvailableVersions.json */ /** * Sample code: Get available versions for agent pool. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsGetSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsGetSamples.java index 4f780ab8553b..44a9cc867b21 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsGetSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsGetSamples.java @@ -9,7 +9,7 @@ /** Samples for AgentPools Get. */ public final class AgentPoolsGetSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsGet.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsGet.json */ /** * Sample code: Get Agent Pool. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsGetUpgradeProfileSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsGetUpgradeProfileSamples.java index e052221a5fb6..98d136315592 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsGetUpgradeProfileSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsGetUpgradeProfileSamples.java @@ -9,7 +9,7 @@ /** Samples for AgentPools GetUpgradeProfile. */ public final class AgentPoolsGetUpgradeProfileSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsGetUpgradeProfile.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsGetUpgradeProfile.json */ /** * Sample code: Get Upgrade Profile for Agent Pool. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsListSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsListSamples.java index d3269db04963..71834b6e3718 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsListSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsListSamples.java @@ -9,7 +9,7 @@ /** Samples for AgentPools List. */ public final class AgentPoolsListSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsList.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsList.json */ /** * Sample code: List Agent Pools by Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsUpgradeNodeImageVersionSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsUpgradeNodeImageVersionSamples.java index 083e00f39eff..17569963a692 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsUpgradeNodeImageVersionSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/AgentPoolsUpgradeNodeImageVersionSamples.java @@ -9,7 +9,7 @@ /** Samples for AgentPools UpgradeNodeImageVersion. */ public final class AgentPoolsUpgradeNodeImageVersionSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/AgentPoolsUpgradeNodeImageVersion.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/AgentPoolsUpgradeNodeImageVersion.json */ /** * Sample code: Upgrade Agent Pool Node Image Version. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsCreateOrUpdateSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsCreateOrUpdateSamples.java index c2f270d7d90b..fca67556ae19 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsCreateOrUpdateSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsCreateOrUpdateSamples.java @@ -15,7 +15,7 @@ /** Samples for MaintenanceConfigurations CreateOrUpdate. */ public final class MaintenanceConfigurationsCreateOrUpdateSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/MaintenanceConfigurationsCreate_Update.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/MaintenanceConfigurationsCreate_Update.json */ /** * Sample code: Create/Update Maintenance Configuration. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsDeleteSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsDeleteSamples.java index 2917903778c2..6bb3332dd479 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsDeleteSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsDeleteSamples.java @@ -9,7 +9,7 @@ /** Samples for MaintenanceConfigurations Delete. */ public final class MaintenanceConfigurationsDeleteSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/MaintenanceConfigurationsDelete.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/MaintenanceConfigurationsDelete.json */ /** * Sample code: Delete Maintenance Configuration. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsGetSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsGetSamples.java index 7b9862ce1cb0..8608d544d16b 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsGetSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsGetSamples.java @@ -9,7 +9,7 @@ /** Samples for MaintenanceConfigurations Get. */ public final class MaintenanceConfigurationsGetSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/MaintenanceConfigurationsGet.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/MaintenanceConfigurationsGet.json */ /** * Sample code: Get Maintenance Configuration. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsListByManagedClusterSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsListByManagedClusterSamples.java index cae0cb40777e..ebe0ff0a0971 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsListByManagedClusterSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/MaintenanceConfigurationsListByManagedClusterSamples.java @@ -9,7 +9,7 @@ /** Samples for MaintenanceConfigurations ListByManagedCluster. */ public final class MaintenanceConfigurationsListByManagedClusterSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/MaintenanceConfigurationsList.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/MaintenanceConfigurationsList.json */ /** * Sample code: List maintenance configurations by Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersCreateOrUpdateSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersCreateOrUpdateSamples.java index 01be76e972dc..edc03096b9c3 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersCreateOrUpdateSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersCreateOrUpdateSamples.java @@ -30,7 +30,8 @@ import com.azure.resourcemanager.containerservice.models.ManagedClusterPodIdentityProfile; import com.azure.resourcemanager.containerservice.models.ManagedClusterPropertiesAutoScalerProfile; import com.azure.resourcemanager.containerservice.models.ManagedClusterSecurityProfile; -import com.azure.resourcemanager.containerservice.models.ManagedClusterSecurityProfileAzureDefender; +import com.azure.resourcemanager.containerservice.models.ManagedClusterSecurityProfileDefender; +import com.azure.resourcemanager.containerservice.models.ManagedClusterSecurityProfileDefenderSecurityMonitoring; import com.azure.resourcemanager.containerservice.models.ManagedClusterServicePrincipalProfile; import com.azure.resourcemanager.containerservice.models.ManagedClusterSku; import com.azure.resourcemanager.containerservice.models.ManagedClusterSkuName; @@ -50,7 +51,7 @@ /** Samples for ManagedClusters CreateOrUpdate. */ public final class ManagedClustersCreateOrUpdateSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_HTTPProxy.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_HTTPProxy.json */ /** * Sample code: Create Managed Cluster with HTTP proxy configured. @@ -127,7 +128,79 @@ public static void createManagedClusterWithHTTPProxyConfigured( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_EnabledFIPS.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_DedicatedHostGroup.json + */ + /** + * Sample code: Create Managed Cluster with Dedicated Host Group. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void createManagedClusterWithDedicatedHostGroup( + com.azure.resourcemanager.AzureResourceManager azure) { + azure + .kubernetesClusters() + .manager() + .serviceClient() + .getManagedClusters() + .createOrUpdate( + "rg1", + "clustername1", + new ManagedClusterInner() + .withLocation("location1") + .withTags(mapOf("archv2", "", "tier", "production")) + .withSku( + new ManagedClusterSku() + .withName(ManagedClusterSkuName.BASIC) + .withTier(ManagedClusterSkuTier.FREE)) + .withKubernetesVersion("") + .withDnsPrefix("dnsprefix1") + .withAgentPoolProfiles( + Arrays + .asList( + new ManagedClusterAgentPoolProfile() + .withCount(3) + .withVmSize("Standard_DS2_v2") + .withOsType(OSType.LINUX) + .withType(AgentPoolType.VIRTUAL_MACHINE_SCALE_SETS) + .withEnableNodePublicIp(true) + .withHostGroupId( + "/subscriptions/subid1/resourcegroups/rg/providers/Microsoft.Compute/hostGroups/hostgroup1") + .withName("nodepool1"))) + .withLinuxProfile( + new ContainerServiceLinuxProfile() + .withAdminUsername("azureuser") + .withSsh( + new ContainerServiceSshConfiguration() + .withPublicKeys( + Arrays.asList(new ContainerServiceSshPublicKey().withKeyData("keydata"))))) + .withWindowsProfile( + new ManagedClusterWindowsProfile() + .withAdminUsername("azureuser") + .withAdminPassword("replacePassword1234$")) + .withServicePrincipalProfile( + new ManagedClusterServicePrincipalProfile().withClientId("clientid").withSecret("secret")) + .withAddonProfiles(mapOf()) + .withEnableRbac(true) + .withEnablePodSecurityPolicy(false) + .withNetworkProfile( + new ContainerServiceNetworkProfile() + .withOutboundType(OutboundType.LOAD_BALANCER) + .withLoadBalancerSku(LoadBalancerSku.STANDARD) + .withLoadBalancerProfile( + new ManagedClusterLoadBalancerProfile() + .withManagedOutboundIPs( + new ManagedClusterLoadBalancerProfileManagedOutboundIPs().withCount(2)))) + .withAutoScalerProfile( + new ManagedClusterPropertiesAutoScalerProfile() + .withScanInterval("20s") + .withScaleDownDelayAfterAdd("15m")) + .withDiskEncryptionSetId( + "/subscriptions/subid1/resourceGroups/rg1/providers/Microsoft.Compute/diskEncryptionSets/des"), + Context.NONE); + } + + /* + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_EnabledFIPS.json */ /** * Sample code: Create Managed Cluster with FIPS enabled OS. @@ -198,7 +271,7 @@ public static void createManagedClusterWithFIPSEnabledOS(com.azure.resourcemanag } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_SecurityProfile.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_SecurityProfile.json */ /** * Sample code: Create Managed Cluster with Security Profile configured. @@ -252,16 +325,18 @@ public static void createManagedClusterWithSecurityProfileConfigured( new ManagedClusterLoadBalancerProfileManagedOutboundIPs().withCount(2)))) .withSecurityProfile( new ManagedClusterSecurityProfile() - .withAzureDefender( - new ManagedClusterSecurityProfileAzureDefender() - .withEnabled(true) + .withDefender( + new ManagedClusterSecurityProfileDefender() .withLogAnalyticsWorkspaceResourceId( - "/subscriptions/SUB_ID/resourcegroups/RG_NAME/providers/microsoft.operationalinsights/workspaces/WORKSPACE_NAME"))), + "/subscriptions/SUB_ID/resourcegroups/RG_NAME/providers/microsoft.operationalinsights/workspaces/WORKSPACE_NAME") + .withSecurityMonitoring( + new ManagedClusterSecurityProfileDefenderSecurityMonitoring() + .withEnabled(true)))), Context.NONE); } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_DualStackNetworking.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_DualStackNetworking.json */ /** * Sample code: Create/Update Managed Cluster with dual-stack networking. @@ -347,7 +422,7 @@ public static void createUpdateManagedClusterWithDualStackNetworking( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_PPG.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_PPG.json */ /** * Sample code: Create Managed Cluster with PPG. @@ -419,7 +494,7 @@ public static void createManagedClusterWithPPG(com.azure.resourcemanager.AzureRe } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_UpdateWithAHUB.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_UpdateWithAHUB.json */ /** * Sample code: Create/Update Managed Cluster with EnableAHUB. @@ -498,7 +573,7 @@ public static void createUpdateManagedClusterWithEnableAHUB(com.azure.resourcema } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_PodIdentity.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_PodIdentity.json */ /** * Sample code: Create Managed Cluster with PodIdentity enabled. @@ -571,7 +646,7 @@ public static void createManagedClusterWithPodIdentityEnabled( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_DisableRunCommand.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_DisableRunCommand.json */ /** * Sample code: Create Managed Cluster with RunCommand disabled. @@ -642,7 +717,7 @@ public static void createManagedClusterWithRunCommandDisabled( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_UserAssignedNATGateway.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_UserAssignedNATGateway.json */ /** * Sample code: Create Managed Cluster with user-assigned NAT gateway as outbound type. @@ -709,7 +784,7 @@ public static void createManagedClusterWithUserAssignedNATGatewayAsOutboundType( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_Snapshot.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_Snapshot.json */ /** * Sample code: Create Managed Cluster using an agent pool snapshot. @@ -785,7 +860,7 @@ public static void createManagedClusterUsingAnAgentPoolSnapshot( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_OSSKU.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_OSSKU.json */ /** * Sample code: Create Managed Cluster with OSSKU. @@ -862,7 +937,7 @@ public static void createManagedClusterWithOSSKU(com.azure.resourcemanager.Azure } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_Update.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_Update.json */ /** * Sample code: Create/Update Managed Cluster. @@ -946,7 +1021,7 @@ public static void createUpdateManagedCluster(com.azure.resourcemanager.AzureRes } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_PrivateClusterFQDNSubdomain.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_PrivateClusterFQDNSubdomain.json */ /** * Sample code: Create Managed Private Cluster with fqdn subdomain specified. @@ -1021,7 +1096,7 @@ public static void createManagedPrivateClusterWithFqdnSubdomainSpecified( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_ManagedNATGateway.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_ManagedNATGateway.json */ /** * Sample code: Create Managed Cluster with AKS-managed NAT gateway as outbound type. @@ -1092,7 +1167,7 @@ public static void createManagedClusterWithAKSManagedNATGatewayAsOutboundType( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_UpdateWithEnableAzureRBAC.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_UpdateWithEnableAzureRBAC.json */ /** * Sample code: Create/Update AAD Managed Cluster with EnableAzureRBAC. @@ -1165,7 +1240,7 @@ public static void createUpdateAADManagedClusterWithEnableAzureRBAC( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_EnableUltraSSD.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_EnableUltraSSD.json */ /** * Sample code: Create Managed Cluster with UltraSSD enabled. @@ -1236,7 +1311,7 @@ public static void createManagedClusterWithUltraSSDEnabled(com.azure.resourceman } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_UpdateWindowsGmsa.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_UpdateWindowsGmsa.json */ /** * Sample code: Create/Update Managed Cluster with Windows gMSA enabled. @@ -1316,7 +1391,7 @@ public static void createUpdateManagedClusterWithWindowsGMSAEnabled( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_GPUMIG.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_GPUMIG.json */ /** * Sample code: Create Managed Cluster with GPUMIG. @@ -1393,7 +1468,7 @@ public static void createManagedClusterWithGPUMIG(com.azure.resourcemanager.Azur } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_NodePublicIPPrefix.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_NodePublicIPPrefix.json */ /** * Sample code: Create Managed Cluster with Node Public IP Prefix. @@ -1466,7 +1541,7 @@ public static void createManagedClusterWithNodePublicIPPrefix( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_EnableEncryptionAtHost.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_EnableEncryptionAtHost.json */ /** * Sample code: Create Managed Cluster with EncryptionAtHost enabled. @@ -1538,7 +1613,7 @@ public static void createManagedClusterWithEncryptionAtHostEnabled( } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersCreate_PrivateClusterPublicFQDN.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersCreate_PrivateClusterPublicFQDN.json */ /** * Sample code: Create Managed Private Cluster with Public FQDN specified. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersDeleteSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersDeleteSamples.java index a00364733855..b27bd34a5c34 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersDeleteSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersDeleteSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters Delete. */ public final class ManagedClustersDeleteSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersDelete.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersDelete.json */ /** * Sample code: Delete Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetAccessProfileSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetAccessProfileSamples.java index f2bd52aa5dbe..bb8e9f076deb 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetAccessProfileSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetAccessProfileSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters GetAccessProfile. */ public final class ManagedClustersGetAccessProfileSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersGetAccessProfile.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersGetAccessProfile.json */ /** * Sample code: Get Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetByResourceGroupSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetByResourceGroupSamples.java index f44d7a15dc79..74148d72b5bc 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetByResourceGroupSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetByResourceGroupSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters GetByResourceGroup. */ public final class ManagedClustersGetByResourceGroupSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersGet.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersGet.json */ /** * Sample code: Get Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetCommandResultSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetCommandResultSamples.java index b10d0d5ab763..82298b20165c 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetCommandResultSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetCommandResultSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters GetCommandResult. */ public final class ManagedClustersGetCommandResultSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/RunCommandResultFailed.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/RunCommandResultFailed.json */ /** * Sample code: commandFailedResult. @@ -26,7 +26,7 @@ public static void commandFailedResult(com.azure.resourcemanager.AzureResourceMa } /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/RunCommandResultSucceed.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/RunCommandResultSucceed.json */ /** * Sample code: commandSucceedResult. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetOSOptionsSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetOSOptionsSamples.java index 0160c9967a11..321083eeaced 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetOSOptionsSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetOSOptionsSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters GetOSOptions. */ public final class ManagedClustersGetOSOptionsSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ContainerServiceGetOSOptions.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ContainerServiceGetOSOptions.json */ /** * Sample code: Get Container Service OS Options. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetUpgradeProfileSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetUpgradeProfileSamples.java index 0bf4d75879ee..ddc7109fc6bb 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetUpgradeProfileSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersGetUpgradeProfileSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters GetUpgradeProfile. */ public final class ManagedClustersGetUpgradeProfileSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersGetUpgradeProfile.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersGetUpgradeProfile.json */ /** * Sample code: Get Upgrade Profile for Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListByResourceGroupSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListByResourceGroupSamples.java index a8f481cdfd5f..bdae6153f8c3 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListByResourceGroupSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListByResourceGroupSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters ListByResourceGroup. */ public final class ManagedClustersListByResourceGroupSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersListByResourceGroup.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersListByResourceGroup.json */ /** * Sample code: Get Managed Clusters by Resource Group. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListClusterAdminCredentialsSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListClusterAdminCredentialsSamples.java index 762b583dac82..434a860613a7 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListClusterAdminCredentialsSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListClusterAdminCredentialsSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters ListClusterAdminCredentials. */ public final class ManagedClustersListClusterAdminCredentialsSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersListClusterCredentialResult.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersListClusterCredentialResult.json */ /** * Sample code: Get Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListClusterMonitoringUserCredentialsSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListClusterMonitoringUserCredentialsSamples.java index 1a5319ac3a26..67a4e3a14666 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListClusterMonitoringUserCredentialsSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListClusterMonitoringUserCredentialsSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters ListClusterMonitoringUserCredentials. */ public final class ManagedClustersListClusterMonitoringUserCredentialsSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersListClusterCredentialResult.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersListClusterCredentialResult.json */ /** * Sample code: Get Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListClusterUserCredentialsSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListClusterUserCredentialsSamples.java index d647c658a5f9..ae2a244db77d 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListClusterUserCredentialsSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListClusterUserCredentialsSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters ListClusterUserCredentials. */ public final class ManagedClustersListClusterUserCredentialsSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersListClusterCredentialResult.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersListClusterCredentialResult.json */ /** * Sample code: Get Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListOutboundNetworkDependenciesEndpointsSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListOutboundNetworkDependenciesEndpointsSamples.java index bf10201a4ad2..ee9803bf043a 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListOutboundNetworkDependenciesEndpointsSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListOutboundNetworkDependenciesEndpointsSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters ListOutboundNetworkDependenciesEndpoints. */ public final class ManagedClustersListOutboundNetworkDependenciesEndpointsSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/OutboundNetworkDependenciesEndpointsList.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/OutboundNetworkDependenciesEndpointsList.json */ /** * Sample code: List OutboundNetworkDependenciesEndpoints by Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListSamples.java index 4617643d1e38..5db92a0e0d8b 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersListSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters List. */ public final class ManagedClustersListSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersList.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersList.json */ /** * Sample code: List Managed Clusters. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersResetAadProfileSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersResetAadProfileSamples.java index e5176780a22d..40f0574a60a8 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersResetAadProfileSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersResetAadProfileSamples.java @@ -10,7 +10,7 @@ /** Samples for ManagedClusters ResetAadProfile. */ public final class ManagedClustersResetAadProfileSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersResetAADProfile.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersResetAADProfile.json */ /** * Sample code: Reset AAD Profile. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersResetServicePrincipalProfileSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersResetServicePrincipalProfileSamples.java index adf60cc6960e..96d143348bb5 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersResetServicePrincipalProfileSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersResetServicePrincipalProfileSamples.java @@ -10,7 +10,7 @@ /** Samples for ManagedClusters ResetServicePrincipalProfile. */ public final class ManagedClustersResetServicePrincipalProfileSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersResetServicePrincipalProfile.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersResetServicePrincipalProfile.json */ /** * Sample code: Reset Service Principal Profile. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersRotateClusterCertificatesSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersRotateClusterCertificatesSamples.java index ca06a504814e..8e5938c3010d 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersRotateClusterCertificatesSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersRotateClusterCertificatesSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters RotateClusterCertificates. */ public final class ManagedClustersRotateClusterCertificatesSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersRotateClusterCertificates.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersRotateClusterCertificates.json */ /** * Sample code: Rotate Cluster Certificates. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersRunCommandSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersRunCommandSamples.java index 0bf64d46603c..ae00bc66c569 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersRunCommandSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersRunCommandSamples.java @@ -10,7 +10,7 @@ /** Samples for ManagedClusters RunCommand. */ public final class ManagedClustersRunCommandSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/RunCommandRequest.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/RunCommandRequest.json */ /** * Sample code: submitNewCommand. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersStartSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersStartSamples.java index 93e3052d0a7f..5ba821bc60ba 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersStartSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersStartSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters Start. */ public final class ManagedClustersStartSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersStart.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersStart.json */ /** * Sample code: Start Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersStopSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersStopSamples.java index d1f7df9a7e6b..332c46d7a4b3 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersStopSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersStopSamples.java @@ -9,7 +9,7 @@ /** Samples for ManagedClusters Stop. */ public final class ManagedClustersStopSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersStop.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersStop.json */ /** * Sample code: Stop Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersUpdateTagsSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersUpdateTagsSamples.java index 3c8c511732a3..6fe27cedd908 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersUpdateTagsSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersUpdateTagsSamples.java @@ -12,7 +12,7 @@ /** Samples for ManagedClusters UpdateTags. */ public final class ManagedClustersUpdateTagsSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ManagedClustersUpdateTags.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ManagedClustersUpdateTags.json */ /** * Sample code: Update Managed Cluster Tags. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/OperationsListSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/OperationsListSamples.java index 306d66368190..687fcafa601f 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/OperationsListSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/OperationsListSamples.java @@ -9,7 +9,7 @@ /** Samples for Operations List. */ public final class OperationsListSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/Operation_List.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/Operation_List.json */ /** * Sample code: List available operations for the container service resource provider. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsDeleteSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsDeleteSamples.java index a3323507fa1b..f453fb323d01 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsDeleteSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsDeleteSamples.java @@ -9,7 +9,7 @@ /** Samples for PrivateEndpointConnections Delete. */ public final class PrivateEndpointConnectionsDeleteSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/PrivateEndpointConnectionsDelete.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/PrivateEndpointConnectionsDelete.json */ /** * Sample code: Delete Private Endpoint Connection. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsGetSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsGetSamples.java index fbce1e5dfb15..26fbabed4d84 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsGetSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsGetSamples.java @@ -9,7 +9,7 @@ /** Samples for PrivateEndpointConnections Get. */ public final class PrivateEndpointConnectionsGetSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/PrivateEndpointConnectionsGet.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/PrivateEndpointConnectionsGet.json */ /** * Sample code: Get Private Endpoint Connection. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsListSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsListSamples.java index 60e9382d6987..160d5bb33684 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsListSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsListSamples.java @@ -9,7 +9,7 @@ /** Samples for PrivateEndpointConnections List. */ public final class PrivateEndpointConnectionsListSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/PrivateEndpointConnectionsList.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/PrivateEndpointConnectionsList.json */ /** * Sample code: List Private Endpoint Connections by Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsUpdateSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsUpdateSamples.java index 17f1fe50fbe4..fd2551f820df 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsUpdateSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateEndpointConnectionsUpdateSamples.java @@ -12,7 +12,7 @@ /** Samples for PrivateEndpointConnections Update. */ public final class PrivateEndpointConnectionsUpdateSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/PrivateEndpointConnectionsUpdate.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/PrivateEndpointConnectionsUpdate.json */ /** * Sample code: Update Private Endpoint Connection. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateLinkResourcesListSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateLinkResourcesListSamples.java index 7a7f3a11b348..f8ec36356ae7 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateLinkResourcesListSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/PrivateLinkResourcesListSamples.java @@ -9,7 +9,7 @@ /** Samples for PrivateLinkResources List. */ public final class PrivateLinkResourcesListSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/PrivateLinkResourcesList.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/PrivateLinkResourcesList.json */ /** * Sample code: List Private Link Resources by Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ResolvePrivateLinkServiceIdPostSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ResolvePrivateLinkServiceIdPostSamples.java index bec1dfd0866f..0327a2e72f87 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ResolvePrivateLinkServiceIdPostSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ResolvePrivateLinkServiceIdPostSamples.java @@ -10,7 +10,7 @@ /** Samples for ResolvePrivateLinkServiceId Post. */ public final class ResolvePrivateLinkServiceIdPostSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/ResolvePrivateLinkServiceId.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/ResolvePrivateLinkServiceId.json */ /** * Sample code: Resolve the Private Link Service ID for Managed Cluster. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsCreateOrUpdateSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsCreateOrUpdateSamples.java index d758d1048e14..1ad17b280296 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsCreateOrUpdateSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsCreateOrUpdateSamples.java @@ -13,7 +13,7 @@ /** Samples for Snapshots CreateOrUpdate. */ public final class SnapshotsCreateOrUpdateSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/SnapshotsCreate.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/SnapshotsCreate.json */ /** * Sample code: Create/Update Snapshot. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsDeleteSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsDeleteSamples.java index faa638dc425e..35aca9d702ce 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsDeleteSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsDeleteSamples.java @@ -9,7 +9,7 @@ /** Samples for Snapshots Delete. */ public final class SnapshotsDeleteSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/SnapshotsDelete.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/SnapshotsDelete.json */ /** * Sample code: Delete Snapshot. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsGetByResourceGroupSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsGetByResourceGroupSamples.java index 9fe02704c27f..047217ac431b 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsGetByResourceGroupSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsGetByResourceGroupSamples.java @@ -9,7 +9,7 @@ /** Samples for Snapshots GetByResourceGroup. */ public final class SnapshotsGetByResourceGroupSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/SnapshotsGet.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/SnapshotsGet.json */ /** * Sample code: Get Snapshot. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsListByResourceGroupSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsListByResourceGroupSamples.java index f99b8b99fd81..6224dbc72757 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsListByResourceGroupSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsListByResourceGroupSamples.java @@ -9,7 +9,7 @@ /** Samples for Snapshots ListByResourceGroup. */ public final class SnapshotsListByResourceGroupSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/SnapshotsListByResourceGroup.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/SnapshotsListByResourceGroup.json */ /** * Sample code: List Snapshots by Resource Group. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsListSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsListSamples.java index 4229d125bb03..419e608510d9 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsListSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsListSamples.java @@ -9,7 +9,7 @@ /** Samples for Snapshots List. */ public final class SnapshotsListSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/SnapshotsList.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/SnapshotsList.json */ /** * Sample code: List Snapshots. diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsUpdateTagsSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsUpdateTagsSamples.java index 0649e27ba77b..9ed2a51ca874 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsUpdateTagsSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/SnapshotsUpdateTagsSamples.java @@ -12,7 +12,7 @@ /** Samples for Snapshots UpdateTags. */ public final class SnapshotsUpdateTagsSamples { /* - * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-04-01/examples/SnapshotsUpdateTags.json + * x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2022-06-01/examples/SnapshotsUpdateTags.json */ /** * Sample code: Update Snapshot Tags. From fb003a4dae1a8063fdac945a79801fb144cda0be Mon Sep 17 00:00:00 2001 From: xiaofeicao Date: Mon, 25 Jul 2022 13:44:31 +0800 Subject: [PATCH 2/7] add 'hostGroupId' to gen agentPoolInner --- .../implementation/KubernetesClusterAgentPoolImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/KubernetesClusterAgentPoolImpl.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/KubernetesClusterAgentPoolImpl.java index e3f791623d2d..a553f87a4387 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/KubernetesClusterAgentPoolImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/KubernetesClusterAgentPoolImpl.java @@ -311,6 +311,7 @@ AgentPoolInner getAgentPoolInner() { agentPoolInner.withEnableUltraSsd(innerModel().enableUltraSsd()); agentPoolInner.withEnableFips(innerModel().enableFips()); agentPoolInner.withGpuInstanceProfile(innerModel().gpuInstanceProfile()); + agentPoolInner.withHostGroupId(innerModel().hostGroupId()); return agentPoolInner; } From b4efe3518519c64af1c76106a6d1c3fe8ef88ecb Mon Sep 17 00:00:00 2001 From: xiaofeicao Date: Mon, 25 Jul 2022 13:44:43 +0800 Subject: [PATCH 3/7] session-records --- ...dateTests.testKubernetesClusterUpdate.json | 744 +++++---- ...rsTests.canAutoScaleKubernetesCluster.json | 720 +++++---- ...lustersTests.canCRUDKubernetesCluster.json | 1402 +++++++++-------- ...stersTests.canCreateClusterWithSpotVM.json | 700 +++++--- ...tersTests.canListKubeConfigWithFormat.json | 366 +++-- ...sTests.testKubernetesClusterAzureRbac.json | 246 ++- 6 files changed, 2362 insertions(+), 1816 deletions(-) diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClusterUpdateTests.testKubernetesClusterUpdate.json b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClusterUpdateTests.testKubernetesClusterUpdate.json index 3e3bc2961fd0..0711343eb4d9 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClusterUpdateTests.testKubernetesClusterUpdate.json +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClusterUpdateTests.testKubernetesClusterUpdate.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg37780?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg98957?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "de278f60-1e42-4a3d-927a-12545bfe1e77", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0f348fdf-46dd-441f-b7d9-2c31d8e95987", "Content-Type" : "application/json" }, "Response" : { @@ -14,574 +14,599 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "a6b91c32-9021-42c5-9ec1-cd434c2cc5d5", - "Date" : "Fri, 08 Apr 2022 08:15:50 GMT", + "x-ms-correlation-request-id" : "f5de4d6b-4bc3-4e32-8a3b-8414a8a02db9", + "Date" : "Mon, 25 Jul 2022 03:54:24 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T081550Z:a6b91c32-9021-42c5-9ec1-cd434c2cc5d5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035424Z:f5de4d6b-4bc3-4e32-8a3b-8414a8a02db9", "Expires" : "-1", - "x-ms-request-id" : "a6b91c32-9021-42c5-9ec1-cd434c2cc5d5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg37780\",\"name\":\"javaacsrg37780\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "f5de4d6b-4bc3-4e32-8a3b-8414a8a02db9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg98957\",\"name\":\"javaacsrg98957\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg37780/providers/Microsoft.ContainerService/managedClusters/aks70663f58?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg98957/providers/Microsoft.ContainerService/managedClusters/aks85335a3f?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "c400e5e3-0eb4-4c4c-85da-c7313abf312d", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b6e80370-5ca4-4bfb-8e73-b1a3b5db2594", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "2116", + "content-length" : "2392", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "c6c5bd57-a469-45e5-ba0b-85492aed758e", - "Date" : "Fri, 08 Apr 2022 08:16:04 GMT", + "x-ms-correlation-request-id" : "72c7a3fc-6575-4ace-b1be-ee9695159902", + "Date" : "Mon, 25 Jul 2022 03:54:37 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T081605Z:c6c5bd57-a469-45e5-ba0b-85492aed758e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035438Z:72c7a3fc-6575-4ace-b1be-ee9695159902", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/273f7e39-9978-4101-9dc6-e83d2a31abf4?api-version=2017-08-31", - "x-ms-request-id" : "273f7e39-9978-4101-9dc6-e83d2a31abf4", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg37780/providers/Microsoft.ContainerService/managedClusters/aks70663f58\",\n \"location\": \"centralus\",\n \"name\": \"aks70663f58\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns536211\",\n \"fqdn\": \"mp1dns536211-ca0bf22b.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns536211-ca0bf22b.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0108811\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 3,\n \"minCount\": 1,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg37780_aks70663f58_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"5f9fcc6d-1465-46a4-82ca-ced0f92d0c1e\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/30a48c19-d5f1-448c-a0eb-75263cd4d6b0?api-version=2017-08-31", + "x-ms-request-id" : "30a48c19-d5f1-448c-a0eb-75263cd4d6b0", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg98957/providers/Microsoft.ContainerService/managedClusters/aks85335a3f\",\n \"location\": \"centralus\",\n \"name\": \"aks85335a3f\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns428289\",\n \"fqdn\": \"mp1dns428289-43b5e499.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns428289-43b5e499.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0392603\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 3,\n \"minCount\": 1,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg98957_aks85335a3f_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"8923863e-9745-46a5-a215-0dd02eb28107\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/273f7e39-9978-4101-9dc6-e83d2a31abf4?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/30a48c19-d5f1-448c-a0eb-75263cd4d6b0?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "3ee86f25-8654-4085-b1aa-fe9b5596da2f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d24c8c84-d7e6-40dd-8f93-4a433059602d" }, "Response" : { - "content-length" : "120", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d1d3c120-a713-4983-8286-32f71dd99df9", - "Date" : "Fri, 08 Apr 2022 08:16:35 GMT", + "x-ms-correlation-request-id" : "06d3e2ac-c564-46c5-8533-22a5d00a9033", + "Date" : "Mon, 25 Jul 2022 03:55:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T081635Z:d1d3c120-a713-4983-8286-32f71dd99df9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035508Z:06d3e2ac-c564-46c5-8533-22a5d00a9033", "Expires" : "-1", - "x-ms-request-id" : "c5dd9970-6d11-49c3-8370-c66f6885f5fb", - "Body" : "{\n \"name\": \"397e3f27-7899-0141-9dc6-e83d2a31abf4\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:16:03.9Z\"\n }", + "x-ms-request-id" : "6a789ec8-b698-4521-9e23-3e027d184298", + "Body" : "{\n \"name\": \"198ca430-f1d5-8c44-a0eb-75263cd4d6b0\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:36.3266666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/273f7e39-9978-4101-9dc6-e83d2a31abf4?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/30a48c19-d5f1-448c-a0eb-75263cd4d6b0?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0038e6d9-aff7-4a09-b5b5-20a7a9eb5415" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b4c6b450-3178-4529-8e2f-d1a569e0edee" }, "Response" : { - "content-length" : "120", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed5b338e-e7e3-4ba5-a8a4-d5c5c50f3535", - "Date" : "Fri, 08 Apr 2022 08:17:05 GMT", + "x-ms-correlation-request-id" : "886c6d4b-67ae-49c0-8c23-b96281606c6b", + "Date" : "Mon, 25 Jul 2022 03:55:38 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T081706Z:ed5b338e-e7e3-4ba5-a8a4-d5c5c50f3535", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035538Z:886c6d4b-67ae-49c0-8c23-b96281606c6b", "Expires" : "-1", - "x-ms-request-id" : "0c4ddf59-6189-419a-93ba-2f78619ffbee", - "Body" : "{\n \"name\": \"397e3f27-7899-0141-9dc6-e83d2a31abf4\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:16:03.9Z\"\n }", + "x-ms-request-id" : "2ece135f-80d0-4479-9811-91644b34ddac", + "Body" : "{\n \"name\": \"198ca430-f1d5-8c44-a0eb-75263cd4d6b0\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:36.3266666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/273f7e39-9978-4101-9dc6-e83d2a31abf4?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/30a48c19-d5f1-448c-a0eb-75263cd4d6b0?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "9f6a8fe0-a63b-41a9-8e8b-8759dec6b963" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "33722d14-9627-4557-8e15-65e7b3ecd90c" }, "Response" : { - "content-length" : "120", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c6797b92-d703-4db6-9c9f-7fdc96865b45", - "Date" : "Fri, 08 Apr 2022 08:17:36 GMT", + "x-ms-correlation-request-id" : "3dfbf18a-dbaa-4dd8-9304-fadab04a45ba", + "Date" : "Mon, 25 Jul 2022 03:56:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T081736Z:c6797b92-d703-4db6-9c9f-7fdc96865b45", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035609Z:3dfbf18a-dbaa-4dd8-9304-fadab04a45ba", "Expires" : "-1", - "x-ms-request-id" : "3cb8932a-aefb-42a3-a48e-a7946eb89a06", - "Body" : "{\n \"name\": \"397e3f27-7899-0141-9dc6-e83d2a31abf4\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:16:03.9Z\"\n }", + "x-ms-request-id" : "678a0bcc-ecf2-4742-a6ab-87af395da15e", + "Body" : "{\n \"name\": \"198ca430-f1d5-8c44-a0eb-75263cd4d6b0\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:36.3266666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/273f7e39-9978-4101-9dc6-e83d2a31abf4?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/30a48c19-d5f1-448c-a0eb-75263cd4d6b0?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "291835ce-ba8e-4470-b94a-48a734b440a0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f53d4d36-415f-4ca7-acc2-7c4a901259be" }, "Response" : { - "content-length" : "120", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8c50820c-5a6a-4e2b-ae38-bc7b020df021", - "Date" : "Fri, 08 Apr 2022 08:18:06 GMT", + "x-ms-correlation-request-id" : "1f97507b-ae2a-4593-bd36-379e064ed46b", + "Date" : "Mon, 25 Jul 2022 03:56:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T081806Z:8c50820c-5a6a-4e2b-ae38-bc7b020df021", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035639Z:1f97507b-ae2a-4593-bd36-379e064ed46b", "Expires" : "-1", - "x-ms-request-id" : "547c252c-ce31-4ee8-a979-ae2e9a8fc283", - "Body" : "{\n \"name\": \"397e3f27-7899-0141-9dc6-e83d2a31abf4\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:16:03.9Z\"\n }", + "x-ms-request-id" : "28a6dd52-e3f4-4ec6-a7a2-cdb1a4b7f640", + "Body" : "{\n \"name\": \"198ca430-f1d5-8c44-a0eb-75263cd4d6b0\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:36.3266666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/273f7e39-9978-4101-9dc6-e83d2a31abf4?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/30a48c19-d5f1-448c-a0eb-75263cd4d6b0?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5ca6a870-c331-46bb-ba0c-b23f4d992a15" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "04eb0360-1192-4196-a1df-d2a6ba8d1755" }, "Response" : { - "content-length" : "120", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "x-ms-correlation-request-id" : "b8fc758f-bdbf-49b5-8eea-f638b7113b01", - "Date" : "Fri, 08 Apr 2022 08:18:36 GMT", + "x-ms-correlation-request-id" : "6451a04d-3bae-4f06-857b-9b3b48897d4d", + "Date" : "Mon, 25 Jul 2022 03:57:09 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T081837Z:b8fc758f-bdbf-49b5-8eea-f638b7113b01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035709Z:6451a04d-3bae-4f06-857b-9b3b48897d4d", "Expires" : "-1", - "x-ms-request-id" : "b5e77a47-398a-4ca4-9edd-5c77d90f4208", - "Body" : "{\n \"name\": \"397e3f27-7899-0141-9dc6-e83d2a31abf4\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:16:03.9Z\"\n }", + "x-ms-request-id" : "8ca50715-8ebc-4177-a1e1-68d6ffd30099", + "Body" : "{\n \"name\": \"198ca430-f1d5-8c44-a0eb-75263cd4d6b0\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:36.3266666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/273f7e39-9978-4101-9dc6-e83d2a31abf4?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/30a48c19-d5f1-448c-a0eb-75263cd4d6b0?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "905234f8-32ab-4d8a-ac65-0781b2dc4678" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "354a96bf-b704-4ee2-bc02-8921f6643d7a" }, "Response" : { - "content-length" : "120", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "x-ms-correlation-request-id" : "5524e4a6-a9b5-4e2f-ae83-8e6837776075", - "Date" : "Fri, 08 Apr 2022 08:19:06 GMT", + "x-ms-correlation-request-id" : "a371f365-43a1-4917-a171-df674af08974", + "Date" : "Mon, 25 Jul 2022 03:57:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T081907Z:5524e4a6-a9b5-4e2f-ae83-8e6837776075", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035740Z:a371f365-43a1-4917-a171-df674af08974", "Expires" : "-1", - "x-ms-request-id" : "62067c79-bc88-46a8-b890-de7d5dc56703", - "Body" : "{\n \"name\": \"397e3f27-7899-0141-9dc6-e83d2a31abf4\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:16:03.9Z\"\n }", + "x-ms-request-id" : "cb7f412b-b833-4f4e-9021-2f640ddf4692", + "Body" : "{\n \"name\": \"198ca430-f1d5-8c44-a0eb-75263cd4d6b0\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:36.3266666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/273f7e39-9978-4101-9dc6-e83d2a31abf4?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/30a48c19-d5f1-448c-a0eb-75263cd4d6b0?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "04ff83df-e206-4139-acb6-b2f4f35a3e05" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b3f9d1c0-6048-4f74-bfc0-640d7fa43556" }, "Response" : { - "content-length" : "120", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2435216-3185-471a-ba6d-91ce22a0497d", - "Date" : "Fri, 08 Apr 2022 08:19:37 GMT", + "x-ms-correlation-request-id" : "18f080c6-41a8-4c2f-b5ae-a6ed6644f18a", + "Date" : "Mon, 25 Jul 2022 03:58:09 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T081938Z:a2435216-3185-471a-ba6d-91ce22a0497d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035810Z:18f080c6-41a8-4c2f-b5ae-a6ed6644f18a", "Expires" : "-1", - "x-ms-request-id" : "9250d0ef-da1d-4c6a-b3be-c1a8828df7f2", - "Body" : "{\n \"name\": \"397e3f27-7899-0141-9dc6-e83d2a31abf4\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:16:03.9Z\"\n }", + "x-ms-request-id" : "29256b84-6988-4626-b132-30e159c64c7a", + "Body" : "{\n \"name\": \"198ca430-f1d5-8c44-a0eb-75263cd4d6b0\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:36.3266666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/273f7e39-9978-4101-9dc6-e83d2a31abf4?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/30a48c19-d5f1-448c-a0eb-75263cd4d6b0?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e7d79719-7ad8-4cb9-952d-dbf437c66cd4" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "04f12bb4-cb69-43f4-92e6-ec539df6e78b" }, "Response" : { - "content-length" : "120", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "x-ms-correlation-request-id" : "247d8f07-7c35-43ae-80f0-f125189f4bb2", - "Date" : "Fri, 08 Apr 2022 08:20:07 GMT", + "x-ms-correlation-request-id" : "903cf3e8-43a4-4bcf-8377-29ed76bf46f1", + "Date" : "Mon, 25 Jul 2022 03:58:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082008Z:247d8f07-7c35-43ae-80f0-f125189f4bb2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035840Z:903cf3e8-43a4-4bcf-8377-29ed76bf46f1", "Expires" : "-1", - "x-ms-request-id" : "aed48cb8-9fa0-4b71-8880-b8a0fb2f2ea5", - "Body" : "{\n \"name\": \"397e3f27-7899-0141-9dc6-e83d2a31abf4\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:16:03.9Z\"\n }", + "x-ms-request-id" : "5e83c5c8-ca46-42ef-a579-9629000a7b70", + "Body" : "{\n \"name\": \"198ca430-f1d5-8c44-a0eb-75263cd4d6b0\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:36.3266666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/273f7e39-9978-4101-9dc6-e83d2a31abf4?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/30a48c19-d5f1-448c-a0eb-75263cd4d6b0?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "4bcb2e14-1b81-4352-a04d-3baa75a1451d" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "44c597fe-6b53-4648-b3a4-e93aef150612" }, "Response" : { - "content-length" : "164", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "3cf990eb-cdaf-4fd3-bfb5-3ce9c2999f50", + "Date" : "Mon, 25 Jul 2022 03:59:11 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035911Z:3cf990eb-cdaf-4fd3-bfb5-3ce9c2999f50", + "Expires" : "-1", + "x-ms-request-id" : "5f7c3d12-cb9b-491d-ada7-42efb942adcd", + "Body" : "{\n \"name\": \"198ca430-f1d5-8c44-a0eb-75263cd4d6b0\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:36.3266666Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/30a48c19-d5f1-448c-a0eb-75263cd4d6b0?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8f396ab9-3707-4ecf-a765-9098e7346d33" + }, + "Response" : { + "content-length" : "170", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", - "x-ms-correlation-request-id" : "dbd01438-c199-4f43-a61d-70fe5cc8c360", - "Date" : "Fri, 08 Apr 2022 08:20:37 GMT", + "x-ms-correlation-request-id" : "cdb332d9-9fae-4027-800e-60d77368e45b", + "Date" : "Mon, 25 Jul 2022 03:59:41 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082038Z:dbd01438-c199-4f43-a61d-70fe5cc8c360", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035941Z:cdb332d9-9fae-4027-800e-60d77368e45b", "Expires" : "-1", - "x-ms-request-id" : "d47daad6-32aa-4539-a482-f26c25c80e79", - "Body" : "{\n \"name\": \"397e3f27-7899-0141-9dc6-e83d2a31abf4\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:16:03.9Z\",\n \"endTime\": \"2022-04-08T08:20:32.6525694Z\"\n }", + "x-ms-request-id" : "fc415d3f-d2ec-4816-8bf6-379742d51701", + "Body" : "{\n \"name\": \"198ca430-f1d5-8c44-a0eb-75263cd4d6b0\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T03:54:36.3266666Z\",\n \"endTime\": \"2022-07-25T03:59:30.9853838Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg37780/providers/Microsoft.ContainerService/managedClusters/aks70663f58?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg98957/providers/Microsoft.ContainerService/managedClusters/aks85335a3f?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "75c91510-3c09-42ff-9f38-25aa8afba625" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4ef5966c-e4ae-438c-878a-a21950da10fd" }, "Response" : { - "content-length" : "3462", + "content-length" : "3738", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2439ce27-9018-4ba6-a4e4-045d07bad398", - "Date" : "Fri, 08 Apr 2022 08:20:40 GMT", + "x-ms-correlation-request-id" : "190778f9-957a-4eb2-a7b8-b663dc90ea80", + "Date" : "Mon, 25 Jul 2022 03:59:42 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082040Z:2439ce27-9018-4ba6-a4e4-045d07bad398", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035943Z:190778f9-957a-4eb2-a7b8-b663dc90ea80", "Expires" : "-1", - "x-ms-request-id" : "3b08fe4b-aeeb-41a2-bcae-01b251ed3938", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg37780/providers/Microsoft.ContainerService/managedClusters/aks70663f58\",\n \"location\": \"centralus\",\n \"name\": \"aks70663f58\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns536211\",\n \"fqdn\": \"mp1dns536211-ca0bf22b.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns536211-ca0bf22b.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0108811\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 3,\n \"minCount\": 1,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg37780_aks70663f58_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg37780_aks70663f58_centralus/providers/Microsoft.Network/publicIPAddresses/7fa7fbdc-1806-4454-a7c4-c610c7587f25\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg37780_aks70663f58_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks70663f58-agentpool\",\n \"clientId\": \"ed1a7238-dd0e-457f-a49f-99e3b63b3f6f\",\n \"objectId\": \"6df06e6c-1e55-4bdc-8c0c-9082d6d68675\"\n }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"10s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"5f9fcc6d-1465-46a4-82ca-ced0f92d0c1e\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "x-ms-request-id" : "a7bd5156-c701-46fb-8630-a04390181562", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg98957/providers/Microsoft.ContainerService/managedClusters/aks85335a3f\",\n \"location\": \"centralus\",\n \"name\": \"aks85335a3f\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns428289\",\n \"fqdn\": \"mp1dns428289-43b5e499.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns428289-43b5e499.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0392603\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 3,\n \"minCount\": 1,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg98957_aks85335a3f_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg98957_aks85335a3f_centralus/providers/Microsoft.Network/publicIPAddresses/2c2bb448-e90d-4a80-b7ce-59c71958ed00\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg98957_aks85335a3f_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks85335a3f-agentpool\",\n \"clientId\": \"4764518f-e0cb-4d4d-92bc-b2b15b7c0875\",\n \"objectId\": \"ae78a624-e4b8-4f54-8737-04d7f11227ef\"\n }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"10s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"8923863e-9745-46a5-a215-0dd02eb28107\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg37780/providers/Microsoft.ContainerService/managedClusters/aks70663f58/agentPools/ap1149380?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg98957/providers/Microsoft.ContainerService/managedClusters/aks85335a3f/agentPools/ap191651a?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "fd8395dc-43d3-4afe-9ce9-2fcdbd8a280d", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0c38e8f3-2bc0-4edb-b8e6-a06e2b410d19", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "775", + "content-length" : "820", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "383c4a28-2815-4bc7-bb4a-791d1289e457", - "Date" : "Fri, 08 Apr 2022 08:20:44 GMT", + "x-ms-correlation-request-id" : "09e2806f-3ec9-4821-a5c1-3f6e62fde34e", + "Date" : "Mon, 25 Jul 2022 03:59:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082044Z:383c4a28-2815-4bc7-bb4a-791d1289e457", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035946Z:09e2806f-3ec9-4821-a5c1-3f6e62fde34e", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/705f011b-b6a1-40d2-8cc3-1a226fcb763d?api-version=2017-08-31", - "x-ms-request-id" : "705f011b-b6a1-40d2-8cc3-1a226fcb763d", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg37780/providers/Microsoft.ContainerService/managedClusters/aks70663f58/agentPools/ap1149380\",\n \"name\": \"ap1149380\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n }", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", + "x-ms-request-id" : "9d5d744f-78b6-4912-8bd5-e9278d3fe0fe", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg98957/providers/Microsoft.ContainerService/managedClusters/aks85335a3f/agentPools/ap191651a\",\n \"name\": \"ap191651a\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/705f011b-b6a1-40d2-8cc3-1a226fcb763d?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8092b115-49ec-4fcc-af31-d65e7ac1be7a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "39f53f85-09e7-4f54-9e48-96ed376357a5" }, "Response" : { - "content-length" : "121", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "x-ms-correlation-request-id" : "852ca2ed-9f3a-46be-9e12-9a6af82e7f8a", - "Date" : "Fri, 08 Apr 2022 08:21:14 GMT", + "x-ms-correlation-request-id" : "db5fd960-e331-4089-a99b-6492afa81ce8", + "Date" : "Mon, 25 Jul 2022 04:00:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082114Z:852ca2ed-9f3a-46be-9e12-9a6af82e7f8a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040016Z:db5fd960-e331-4089-a99b-6492afa81ce8", "Expires" : "-1", - "x-ms-request-id" : "c06c32cf-df61-4541-9c5b-54ed7873ff1c", - "Body" : "{\n \"name\": \"1b015f70-a1b6-d240-8cc3-1a226fcb763d\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:20:44.31Z\"\n }", + "x-ms-request-id" : "ece13624-e49f-4808-8d47-fbba681d8710", + "Body" : "{\n \"name\": \"4f745d9d-b678-1249-8bd5-e9278d3fe0fe\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:59:46.2166666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/705f011b-b6a1-40d2-8cc3-1a226fcb763d?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "ba38a7f5-46f3-46d7-921b-b00c8f2ac3b8" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "014589e6-8820-4469-85c4-0224a70b138b" }, "Response" : { - "content-length" : "121", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", - "x-ms-correlation-request-id" : "74439946-95bf-4521-93d0-60a69d0c36ac", - "Date" : "Fri, 08 Apr 2022 08:21:45 GMT", + "x-ms-correlation-request-id" : "66f5501a-f91a-429f-9f84-fb1eaf7f3a79", + "Date" : "Mon, 25 Jul 2022 04:00:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082145Z:74439946-95bf-4521-93d0-60a69d0c36ac", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040047Z:66f5501a-f91a-429f-9f84-fb1eaf7f3a79", "Expires" : "-1", - "x-ms-request-id" : "f5bc044b-780c-4648-aa25-91a151c1fc3e", - "Body" : "{\n \"name\": \"1b015f70-a1b6-d240-8cc3-1a226fcb763d\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:20:44.31Z\"\n }", + "x-ms-request-id" : "c8edd112-e0e7-4ca0-bea2-7fcd49549c20", + "Body" : "{\n \"name\": \"4f745d9d-b678-1249-8bd5-e9278d3fe0fe\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:59:46.2166666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/705f011b-b6a1-40d2-8cc3-1a226fcb763d?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0dc9cf47-553d-41ca-a8bb-aba803ab63ae" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e339b5c9-976f-442a-b965-e30579fe35b5" }, "Response" : { - "content-length" : "121", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1d62dc05-6888-457f-baae-14d8f796293f", - "Date" : "Fri, 08 Apr 2022 08:22:16 GMT", + "x-ms-correlation-request-id" : "b089c422-c4eb-4c36-8f27-5c864aaa7dfc", + "Date" : "Mon, 25 Jul 2022 04:01:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082216Z:1d62dc05-6888-457f-baae-14d8f796293f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040118Z:b089c422-c4eb-4c36-8f27-5c864aaa7dfc", "Expires" : "-1", - "x-ms-request-id" : "5018bb3a-cfa5-4f2c-be39-370c3a5556af", - "Body" : "{\n \"name\": \"1b015f70-a1b6-d240-8cc3-1a226fcb763d\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:20:44.31Z\"\n }", + "x-ms-request-id" : "cf71c24f-593b-4ba3-9a24-fe50438c88fd", + "Body" : "{\n \"name\": \"4f745d9d-b678-1249-8bd5-e9278d3fe0fe\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:59:46.2166666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/705f011b-b6a1-40d2-8cc3-1a226fcb763d?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "ae290987-be66-457d-bf43-e547077f1718" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e9faed5a-1883-45ae-8dd2-5ff53bbe8f59" }, "Response" : { - "content-length" : "121", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c398bf4-b0fe-431a-878c-f9bac41ba0c9", - "Date" : "Fri, 08 Apr 2022 08:22:47 GMT", + "x-ms-correlation-request-id" : "74a9cb75-9f46-47b4-8292-78daac7b7faf", + "Date" : "Mon, 25 Jul 2022 04:01:48 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082248Z:5c398bf4-b0fe-431a-878c-f9bac41ba0c9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040149Z:74a9cb75-9f46-47b4-8292-78daac7b7faf", "Expires" : "-1", - "x-ms-request-id" : "29d67db5-3baf-4115-9ec9-53256d7adc30", - "Body" : "{\n \"name\": \"1b015f70-a1b6-d240-8cc3-1a226fcb763d\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:20:44.31Z\"\n }", + "x-ms-request-id" : "a5d747d2-c9b0-4004-ac38-35b0f3c0f668", + "Body" : "{\n \"name\": \"4f745d9d-b678-1249-8bd5-e9278d3fe0fe\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:59:46.2166666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/705f011b-b6a1-40d2-8cc3-1a226fcb763d?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "3ebe1d5b-1457-43d4-88da-a0d7833fa5b6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "72ce34b4-c5d7-4c15-89a0-2dbe2805b868" }, "Response" : { - "content-length" : "121", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "x-ms-correlation-request-id" : "636beb00-00f3-4755-9c66-c8b3a80a590a", - "Date" : "Fri, 08 Apr 2022 08:23:19 GMT", + "x-ms-correlation-request-id" : "a2808336-7ef5-49f7-a21e-48b9118dccdb", + "Date" : "Mon, 25 Jul 2022 04:02:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082319Z:636beb00-00f3-4755-9c66-c8b3a80a590a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040219Z:a2808336-7ef5-49f7-a21e-48b9118dccdb", "Expires" : "-1", - "x-ms-request-id" : "75cd5114-2e5a-48bd-817b-ef83a3ed9cb2", - "Body" : "{\n \"name\": \"1b015f70-a1b6-d240-8cc3-1a226fcb763d\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:20:44.31Z\"\n }", + "x-ms-request-id" : "0090d010-6842-4b9e-a786-0f8b891cf9c5", + "Body" : "{\n \"name\": \"4f745d9d-b678-1249-8bd5-e9278d3fe0fe\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:59:46.2166666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/705f011b-b6a1-40d2-8cc3-1a226fcb763d?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "af1840c7-465b-489e-9a3b-67da9d59340d" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ce9b30ac-7373-4963-81f7-04db160b772d" }, "Response" : { - "content-length" : "121", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", - "x-ms-correlation-request-id" : "64da3691-632a-4ef7-9cdb-8c462756f28a", - "Date" : "Fri, 08 Apr 2022 08:23:49 GMT", + "x-ms-correlation-request-id" : "8fdaf640-18b2-4be3-8a09-90d1c55e6c11", + "Date" : "Mon, 25 Jul 2022 04:02:49 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082350Z:64da3691-632a-4ef7-9cdb-8c462756f28a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040250Z:8fdaf640-18b2-4be3-8a09-90d1c55e6c11", "Expires" : "-1", - "x-ms-request-id" : "b33a64e0-4e03-4d28-8c83-53ec639f3b9f", - "Body" : "{\n \"name\": \"1b015f70-a1b6-d240-8cc3-1a226fcb763d\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:20:44.31Z\"\n }", + "x-ms-request-id" : "658d7a49-057f-4d37-8d82-f9a73baf085f", + "Body" : "{\n \"name\": \"4f745d9d-b678-1249-8bd5-e9278d3fe0fe\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:59:46.2166666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/705f011b-b6a1-40d2-8cc3-1a226fcb763d?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0c98d2d2-0d02-415e-ac2b-7b4826c8aaa4" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e4ed2864-acd8-44ef-ad61-2ed1684d9d34" }, "Response" : { - "content-length" : "165", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1179b90c-95f9-4fe2-ac13-c3c11491d2aa", - "Date" : "Fri, 08 Apr 2022 08:24:20 GMT", + "x-ms-correlation-request-id" : "d5360bdc-abff-4c5e-8af2-73956c3027e2", + "Date" : "Mon, 25 Jul 2022 04:03:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082421Z:1179b90c-95f9-4fe2-ac13-c3c11491d2aa", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040321Z:d5360bdc-abff-4c5e-8af2-73956c3027e2", "Expires" : "-1", - "x-ms-request-id" : "6790e649-7584-41dd-8ac8-8db040b7dab1", - "Body" : "{\n \"name\": \"1b015f70-a1b6-d240-8cc3-1a226fcb763d\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:20:44.31Z\",\n \"endTime\": \"2022-04-08T08:24:07.4710817Z\"\n }", + "x-ms-request-id" : "36a2d4eb-2f60-40d8-be8f-b1aca4556ac5", + "Body" : "{\n \"name\": \"4f745d9d-b678-1249-8bd5-e9278d3fe0fe\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:59:46.2166666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg37780/providers/Microsoft.ContainerService/managedClusters/aks70663f58/agentPools/ap1149380?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "421c4d9f-543d-406b-9aba-2704479813e2" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e48ec255-9af7-4d47-8b26-e9687ca7341d" }, "Response" : { - "content-length" : "776", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", - "x-ms-correlation-request-id" : "43f75fcd-4bd0-460f-a6f9-f8af86fa0dde", - "Date" : "Fri, 08 Apr 2022 08:24:21 GMT", + "x-ms-correlation-request-id" : "d1a8fb5c-8fcf-4e2c-b0a1-3b832e12c357", + "Date" : "Mon, 25 Jul 2022 04:03:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082422Z:43f75fcd-4bd0-460f-a6f9-f8af86fa0dde", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040351Z:d1a8fb5c-8fcf-4e2c-b0a1-3b832e12c357", "Expires" : "-1", - "x-ms-request-id" : "f992bfb8-8217-4c31-b626-ec36c7fd68c8", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg37780/providers/Microsoft.ContainerService/managedClusters/aks70663f58/agentPools/ap1149380\",\n \"name\": \"ap1149380\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n }", + "x-ms-request-id" : "d748e5fa-01c5-487c-aa80-f2a128cb1dba", + "Body" : "{\n \"name\": \"4f745d9d-b678-1249-8bd5-e9278d3fe0fe\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:59:46.2166666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg37780/providers/Microsoft.ContainerService/managedClusters/aks70663f58/agentPools/ap1149380?api-version=2022-04-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "24ffe81d-0aa0-45f0-a410-a4bbe9d14f4e", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "133e6bd0-c6fb-44c5-9921-9c350eaf5cd0" }, "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "437bd36a-3c65-4d9d-ab65-b554fcb19a89", - "Date" : "Fri, 08 Apr 2022 08:24:22 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "60eae244-768a-4976-b8da-2f550819ba1f", + "Date" : "Mon, 25 Jul 2022 04:04:22 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082423Z:437bd36a-3c65-4d9d-ab65-b554fcb19a89", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040422Z:60eae244-768a-4976-b8da-2f550819ba1f", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/e7dad7cd-46cf-491d-934d-41e9a6b238a6?api-version=2017-08-31", - "x-ms-request-id" : "e7dad7cd-46cf-491d-934d-41e9a6b238a6", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/e7dad7cd-46cf-491d-934d-41e9a6b238a6?api-version=2017-08-31" + "x-ms-request-id" : "d0695d88-6fa2-4208-902d-2945e7b25818", + "Body" : "{\n \"name\": \"4f745d9d-b678-1249-8bd5-e9278d3fe0fe\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:59:46.2166666Z\"\n }", + "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/e7dad7cd-46cf-491d-934d-41e9a6b238a6?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "9646a8dc-c269-440a-9f39-847aac600ffe" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "dba9f993-2e68-4b7d-a4c9-f54b79e9a7d2" }, "Response" : { "content-length" : "126", @@ -589,25 +614,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6d12290c-4ec4-4ff2-bf1c-dbb0a3385bc8", - "Date" : "Fri, 08 Apr 2022 08:24:52 GMT", + "x-ms-correlation-request-id" : "3f98c71d-d734-4772-8f66-6d4d1d383fe8", + "Date" : "Mon, 25 Jul 2022 04:04:52 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082453Z:6d12290c-4ec4-4ff2-bf1c-dbb0a3385bc8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040452Z:3f98c71d-d734-4772-8f66-6d4d1d383fe8", "Expires" : "-1", - "x-ms-request-id" : "f1629f41-2144-47a7-a18b-189e3c436186", - "Body" : "{\n \"name\": \"cdd7dae7-cf46-1d49-934d-41e9a6b238a6\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:24:23.1833333Z\"\n }", + "x-ms-request-id" : "3f6a7ff7-af3b-4f5e-87a6-cb0e321579d8", + "Body" : "{\n \"name\": \"4f745d9d-b678-1249-8bd5-e9278d3fe0fe\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:59:46.2166666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/e7dad7cd-46cf-491d-934d-41e9a6b238a6?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "aa165de5-b522-4cb8-aa2a-07f8c7cc74dd" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e7ae6353-02c8-4155-945a-cb1d95673f65" }, "Response" : { "content-length" : "126", @@ -615,25 +640,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b9b2ce2-e615-4a76-89f1-29a56e871920", - "Date" : "Fri, 08 Apr 2022 08:25:24 GMT", + "x-ms-correlation-request-id" : "7d355ec2-0b1a-4c94-9073-30844d58f230", + "Date" : "Mon, 25 Jul 2022 04:05:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082524Z:7b9b2ce2-e615-4a76-89f1-29a56e871920", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040523Z:7d355ec2-0b1a-4c94-9073-30844d58f230", "Expires" : "-1", - "x-ms-request-id" : "7d8849aa-5622-4e9b-863d-2152aa3eb926", - "Body" : "{\n \"name\": \"cdd7dae7-cf46-1d49-934d-41e9a6b238a6\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:24:23.1833333Z\"\n }", + "x-ms-request-id" : "a8662194-a5ec-451f-8914-7bb3ebe3419f", + "Body" : "{\n \"name\": \"4f745d9d-b678-1249-8bd5-e9278d3fe0fe\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:59:46.2166666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/e7dad7cd-46cf-491d-934d-41e9a6b238a6?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e5c2a544-7154-43a5-ad97-b61512055ece" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "bacc8546-6051-47cf-ac3f-723ef92b3a2c" }, "Response" : { "content-length" : "126", @@ -641,51 +666,104 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8606215d-036d-4110-8201-78612b9677b2", - "Date" : "Fri, 08 Apr 2022 08:25:55 GMT", + "x-ms-correlation-request-id" : "79c4d540-882f-4d48-bcec-890bbaae366f", + "Date" : "Mon, 25 Jul 2022 04:05:53 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082555Z:8606215d-036d-4110-8201-78612b9677b2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040554Z:79c4d540-882f-4d48-bcec-890bbaae366f", "Expires" : "-1", - "x-ms-request-id" : "165ccae4-ee23-4a91-982d-f0bcae8e83d2", - "Body" : "{\n \"name\": \"cdd7dae7-cf46-1d49-934d-41e9a6b238a6\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:24:23.1833333Z\"\n }", + "x-ms-request-id" : "f46192d0-4d72-45fa-87c2-b17a212c0375", + "Body" : "{\n \"name\": \"4f745d9d-b678-1249-8bd5-e9278d3fe0fe\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:59:46.2166666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/e7dad7cd-46cf-491d-934d-41e9a6b238a6?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9d5d744f-78b6-4912-8bd5-e9278d3fe0fe?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d37aac8f-dd0a-479a-8522-90854527d41d" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "605bb106-7ae6-40ac-b534-e991c25c1ef8" }, "Response" : { - "content-length" : "126", + "content-length" : "170", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "57c26ca5-93f0-479b-b2ce-b2b00cce5fde", + "Date" : "Mon, 25 Jul 2022 04:06:24 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040625Z:57c26ca5-93f0-479b-b2ce-b2b00cce5fde", + "Expires" : "-1", + "x-ms-request-id" : "7afc7cdd-68ba-4a88-8d20-5414102ef1e8", + "Body" : "{\n \"name\": \"4f745d9d-b678-1249-8bd5-e9278d3fe0fe\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T03:59:46.2166666Z\",\n \"endTime\": \"2022-07-25T04:06:15.7562938Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg98957/providers/Microsoft.ContainerService/managedClusters/aks85335a3f/agentPools/ap191651a?api-version=2022-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "209c7b35-1602-4b23-9ba9-fda916dfec15" + }, + "Response" : { + "content-length" : "821", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c95279f4-a253-4d06-aa04-cebf73439fcb", - "Date" : "Fri, 08 Apr 2022 08:26:26 GMT", + "x-ms-correlation-request-id" : "9fa25938-42fb-40a7-87c8-8061d0fe42eb", + "Date" : "Mon, 25 Jul 2022 04:06:24 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082626Z:c95279f4-a253-4d06-aa04-cebf73439fcb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040625Z:9fa25938-42fb-40a7-87c8-8061d0fe42eb", "Expires" : "-1", - "x-ms-request-id" : "3a803945-b905-41a4-97f6-b7d15813daab", - "Body" : "{\n \"name\": \"cdd7dae7-cf46-1d49-934d-41e9a6b238a6\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:24:23.1833333Z\"\n }", + "x-ms-request-id" : "e0d23b86-2c20-4789-90fa-5c47e2a31291", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg98957/providers/Microsoft.ContainerService/managedClusters/aks85335a3f/agentPools/ap191651a\",\n \"name\": \"ap191651a\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n }", "Content-Type" : "application/json" }, "Exception" : null + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg98957/providers/Microsoft.ContainerService/managedClusters/aks85335a3f/agentPools/ap191651a?api-version=2022-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ab1b4dfc-80ae-4e33-b792-7ac5ea17acec", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "StatusCode" : "202", + "x-ms-correlation-request-id" : "11b9d55e-a8cc-4ba0-99d7-f1e9297da905", + "Date" : "Mon, 25 Jul 2022 04:06:25 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040626Z:11b9d55e-a8cc-4ba0-99d7-f1e9297da905", + "Expires" : "-1", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/71768aa1-9b51-49c1-a52b-8f6e3459565d?api-version=2017-08-31", + "x-ms-request-id" : "71768aa1-9b51-49c1-a52b-8f6e3459565d", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/71768aa1-9b51-49c1-a52b-8f6e3459565d?api-version=2017-08-31" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/e7dad7cd-46cf-491d-934d-41e9a6b238a6?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/71768aa1-9b51-49c1-a52b-8f6e3459565d?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5c83d847-be69-48e9-8644-56d0d59d78b8" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1bbc6490-a8e9-40c8-80ab-93ae0496ede2" }, "Response" : { "content-length" : "170", @@ -693,183 +771,183 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "200", - "x-ms-correlation-request-id" : "9a682d53-301a-4f67-8bf2-e80d68000acc", - "Date" : "Fri, 08 Apr 2022 08:26:56 GMT", + "x-ms-correlation-request-id" : "06cc8571-3271-4430-b87c-bb95826aa250", + "Date" : "Mon, 25 Jul 2022 04:06:56 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082657Z:9a682d53-301a-4f67-8bf2-e80d68000acc", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040656Z:06cc8571-3271-4430-b87c-bb95826aa250", "Expires" : "-1", - "x-ms-request-id" : "648361dd-1674-43f0-a595-39ac0fc68c46", - "Body" : "{\n \"name\": \"cdd7dae7-cf46-1d49-934d-41e9a6b238a6\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:24:23.1833333Z\",\n \"endTime\": \"2022-04-08T08:26:48.7914586Z\"\n }", + "x-ms-request-id" : "ef200b81-2090-4366-bcbd-cb1b551cd1d5", + "Body" : "{\n \"name\": \"a18a7671-519b-c149-a52b-8f6e3459565d\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T04:06:26.4233333Z\",\n \"endTime\": \"2022-07-25T04:06:53.5315153Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/e7dad7cd-46cf-491d-934d-41e9a6b238a6?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/71768aa1-9b51-49c1-a52b-8f6e3459565d?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "be8d4161-07bc-4760-9491-c1bbefdf1cc7" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a2ac4177-30f7-4c65-a3f5-5785641acecd" }, "Response" : { "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "204", - "x-ms-correlation-request-id" : "42164823-e298-4d1e-8069-e00006af4c14", - "Date" : "Fri, 08 Apr 2022 08:26:57 GMT", + "x-ms-correlation-request-id" : "12ce88bc-f445-442c-95b1-9e2aff5d7711", + "Date" : "Mon, 25 Jul 2022 04:07:00 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082658Z:42164823-e298-4d1e-8069-e00006af4c14", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040700Z:12ce88bc-f445-442c-95b1-9e2aff5d7711", "Expires" : "-1", - "x-ms-request-id" : "89dd44ae-a156-4713-9a30-ff0f76517e96", + "x-ms-request-id" : "191cffab-6a7f-4587-a1e4-a606d5a7e7b7", "Body" : "", "Content-Type" : "application/json", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/e7dad7cd-46cf-491d-934d-41e9a6b238a6?api-version=2017-08-31" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/71768aa1-9b51-49c1-a52b-8f6e3459565d?api-version=2017-08-31" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg37780/providers/Microsoft.ContainerService/managedClusters/aks70663f58?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg98957/providers/Microsoft.ContainerService/managedClusters/aks85335a3f?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "518e416c-b48d-4416-9732-36950b6c2e09", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ceeae1b1-baff-4e0a-b062-528e74a5eb08", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "3421", + "content-length" : "3697", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "x-ms-correlation-request-id" : "80be6e51-b34f-468b-ad25-cf18bdb5453f", - "Date" : "Fri, 08 Apr 2022 08:27:03 GMT", + "x-ms-correlation-request-id" : "704e53f7-333a-4232-aa61-8d93503e56a1", + "Date" : "Mon, 25 Jul 2022 04:07:07 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082704Z:80be6e51-b34f-468b-ad25-cf18bdb5453f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040707Z:704e53f7-333a-4232-aa61-8d93503e56a1", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/918df0b3-d323-4639-948b-7ddaa8f761ec?api-version=2017-08-31", - "x-ms-request-id" : "918df0b3-d323-4639-948b-7ddaa8f761ec", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg37780/providers/Microsoft.ContainerService/managedClusters/aks70663f58\",\n \"location\": \"centralus\",\n \"name\": \"aks70663f58\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns536211\",\n \"fqdn\": \"mp1dns536211-ca0bf22b.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns536211-ca0bf22b.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0108811\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg37780_aks70663f58_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg37780_aks70663f58_centralus/providers/Microsoft.Network/publicIPAddresses/7fa7fbdc-1806-4454-a7c4-c610c7587f25\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg37780_aks70663f58_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks70663f58-agentpool\",\n \"clientId\": \"ed1a7238-dd0e-457f-a49f-99e3b63b3f6f\",\n \"objectId\": \"6df06e6c-1e55-4bdc-8c0c-9082d6d68675\"\n }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"10s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"5f9fcc6d-1465-46a4-82ca-ced0f92d0c1e\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/4ab30934-7e40-43f1-9b00-e52ab0d9c960?api-version=2017-08-31", + "x-ms-request-id" : "4ab30934-7e40-43f1-9b00-e52ab0d9c960", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg98957/providers/Microsoft.ContainerService/managedClusters/aks85335a3f\",\n \"location\": \"centralus\",\n \"name\": \"aks85335a3f\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns428289\",\n \"fqdn\": \"mp1dns428289-43b5e499.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns428289-43b5e499.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0392603\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg98957_aks85335a3f_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg98957_aks85335a3f_centralus/providers/Microsoft.Network/publicIPAddresses/2c2bb448-e90d-4a80-b7ce-59c71958ed00\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg98957_aks85335a3f_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks85335a3f-agentpool\",\n \"clientId\": \"4764518f-e0cb-4d4d-92bc-b2b15b7c0875\",\n \"objectId\": \"ae78a624-e4b8-4f54-8737-04d7f11227ef\"\n }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"10s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"8923863e-9745-46a5-a215-0dd02eb28107\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/918df0b3-d323-4639-948b-7ddaa8f761ec?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/4ab30934-7e40-43f1-9b00-e52ab0d9c960?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "1a0097c1-140f-4eb1-a4d3-d45444ab8db7" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "94b624ac-2a11-41f2-b889-9f2ca95606c5" }, "Response" : { - "content-length" : "121", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1bed9b18-02ac-42d6-9950-7944c8d50223", - "Date" : "Fri, 08 Apr 2022 08:27:34 GMT", + "x-ms-correlation-request-id" : "c1ae1b1e-27e4-4d57-b567-d73c17102266", + "Date" : "Mon, 25 Jul 2022 04:07:37 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082734Z:1bed9b18-02ac-42d6-9950-7944c8d50223", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040738Z:c1ae1b1e-27e4-4d57-b567-d73c17102266", "Expires" : "-1", - "x-ms-request-id" : "f5309879-1615-4123-a385-c4d55bf5a7e0", - "Body" : "{\n \"name\": \"b3f08d91-23d3-3946-948b-7ddaa8f761ec\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:27:01.43Z\"\n }", + "x-ms-request-id" : "f1a4c9e3-8750-4167-bed3-1841ca838799", + "Body" : "{\n \"name\": \"3409b34a-407e-f143-9b00-e52ab0d9c960\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:07:05.0333333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/918df0b3-d323-4639-948b-7ddaa8f761ec?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/4ab30934-7e40-43f1-9b00-e52ab0d9c960?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "ddecd999-6ef0-4346-ba2a-a4a22247a142" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2b76e6e7-8e66-40d4-94cc-6bbeabb79ad2" }, "Response" : { - "content-length" : "121", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", "StatusCode" : "200", - "x-ms-correlation-request-id" : "b866a6ea-8876-4576-9823-132afd49cefb", - "Date" : "Fri, 08 Apr 2022 08:28:05 GMT", + "x-ms-correlation-request-id" : "5d5e238e-8e71-47fa-8626-9cbd99ecb293", + "Date" : "Mon, 25 Jul 2022 04:08:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082805Z:b866a6ea-8876-4576-9823-132afd49cefb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040809Z:5d5e238e-8e71-47fa-8626-9cbd99ecb293", "Expires" : "-1", - "x-ms-request-id" : "dd43c440-1a97-4903-8d01-cc9c4ccd3080", - "Body" : "{\n \"name\": \"b3f08d91-23d3-3946-948b-7ddaa8f761ec\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:27:01.43Z\"\n }", + "x-ms-request-id" : "469fbdbe-83fe-44fa-9faa-49939191f651", + "Body" : "{\n \"name\": \"3409b34a-407e-f143-9b00-e52ab0d9c960\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:07:05.0333333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/918df0b3-d323-4639-948b-7ddaa8f761ec?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/4ab30934-7e40-43f1-9b00-e52ab0d9c960?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "ed655ede-6cdc-4392-a6ba-059577f5540a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7719f067-b63e-4af3-bfbd-7a73f8fd434b" }, "Response" : { - "content-length" : "165", + "content-length" : "170", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1fa52b87-b5ea-48fe-a1fd-19b5d5561c1d", - "Date" : "Fri, 08 Apr 2022 08:28:35 GMT", + "x-ms-correlation-request-id" : "84dcbcc5-83a9-48ee-b726-b42fe3c98e48", + "Date" : "Mon, 25 Jul 2022 04:08:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082836Z:1fa52b87-b5ea-48fe-a1fd-19b5d5561c1d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040840Z:84dcbcc5-83a9-48ee-b726-b42fe3c98e48", "Expires" : "-1", - "x-ms-request-id" : "63fb7015-7fdd-44b5-8fb2-f36fd502825d", - "Body" : "{\n \"name\": \"b3f08d91-23d3-3946-948b-7ddaa8f761ec\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:27:01.43Z\",\n \"endTime\": \"2022-04-08T08:28:17.9718614Z\"\n }", + "x-ms-request-id" : "6e69a3c5-6541-4ff3-b71e-c6d325c88560", + "Body" : "{\n \"name\": \"3409b34a-407e-f143-9b00-e52ab0d9c960\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T04:07:05.0333333Z\",\n \"endTime\": \"2022-07-25T04:08:31.4265359Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg37780/providers/Microsoft.ContainerService/managedClusters/aks70663f58?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg98957/providers/Microsoft.ContainerService/managedClusters/aks85335a3f?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5bb4a22d-d4fd-432c-8cf3-f0dfc37f3b1c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "24a4098e-9e2c-4c9a-9f69-ee611a1aa91a" }, "Response" : { - "content-length" : "3423", + "content-length" : "3699", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d4318e51-02e2-4542-868c-f9b994b6e4fe", - "Date" : "Fri, 08 Apr 2022 08:28:36 GMT", + "x-ms-correlation-request-id" : "81c825de-cd2f-44f9-bf90-afff71b13018", + "Date" : "Mon, 25 Jul 2022 04:08:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082837Z:d4318e51-02e2-4542-868c-f9b994b6e4fe", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040840Z:81c825de-cd2f-44f9-bf90-afff71b13018", "Expires" : "-1", - "x-ms-request-id" : "5eadab65-bc8b-4e89-8284-a0a59de11d1d", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg37780/providers/Microsoft.ContainerService/managedClusters/aks70663f58\",\n \"location\": \"centralus\",\n \"name\": \"aks70663f58\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns536211\",\n \"fqdn\": \"mp1dns536211-ca0bf22b.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns536211-ca0bf22b.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0108811\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg37780_aks70663f58_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg37780_aks70663f58_centralus/providers/Microsoft.Network/publicIPAddresses/7fa7fbdc-1806-4454-a7c4-c610c7587f25\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg37780_aks70663f58_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks70663f58-agentpool\",\n \"clientId\": \"ed1a7238-dd0e-457f-a49f-99e3b63b3f6f\",\n \"objectId\": \"6df06e6c-1e55-4bdc-8c0c-9082d6d68675\"\n }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"10s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"5f9fcc6d-1465-46a4-82ca-ced0f92d0c1e\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "x-ms-request-id" : "82f929a2-32f8-4087-808d-609e1f1dd73c", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg98957/providers/Microsoft.ContainerService/managedClusters/aks85335a3f\",\n \"location\": \"centralus\",\n \"name\": \"aks85335a3f\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns428289\",\n \"fqdn\": \"mp1dns428289-43b5e499.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns428289-43b5e499.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0392603\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg98957_aks85335a3f_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg98957_aks85335a3f_centralus/providers/Microsoft.Network/publicIPAddresses/2c2bb448-e90d-4a80-b7ce-59c71958ed00\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg98957_aks85335a3f_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks85335a3f-agentpool\",\n \"clientId\": \"4764518f-e0cb-4d4d-92bc-b2b15b7c0875\",\n \"objectId\": \"ae78a624-e4b8-4f54-8737-04d7f11227ef\"\n }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"10s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"8923863e-9745-46a5-a215-0dd02eb28107\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg37780?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg98957?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "aafa50cc-091a-498b-a3ac-3ae7c6994365", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "af05d2c1-1386-4ae3-a590-acfa3387f769", "Content-Type" : "application/json" }, "Response" : { @@ -878,17 +956,17 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "StatusCode" : "202", - "x-ms-correlation-request-id" : "8eb15c23-6ebd-4956-9ed7-09a7acee3b3d", - "Date" : "Fri, 08 Apr 2022 08:28:42 GMT", + "x-ms-correlation-request-id" : "1cd1def6-8287-40ed-8625-129e4c8241f3", + "Date" : "Mon, 25 Jul 2022 04:08:44 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220408T082843Z:8eb15c23-6ebd-4956-9ed7-09a7acee3b3d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040845Z:1cd1def6-8287-40ed-8625-129e4c8241f3", "Expires" : "-1", - "x-ms-request-id" : "8eb15c23-6ebd-4956-9ed7-09a7acee3b3d", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQUNTUkczNzc4MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" + "x-ms-request-id" : "1cd1def6-8287-40ed-8625-129e4c8241f3", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQUNTUkc5ODk1Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" }, "Exception" : null } ], - "variables" : [ "javaacsrg37780", "aks70663f58", "dns536211", "ap0108811", "ap1149380" ] + "variables" : [ "javaacsrg98957", "aks85335a3f", "dns428289", "ap0392603", "ap191651a" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canAutoScaleKubernetesCluster.json b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canAutoScaleKubernetesCluster.json index 74aee3e5604d..2d6e9e2dd589 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canAutoScaleKubernetesCluster.json +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canAutoScaleKubernetesCluster.json @@ -1,64 +1,64 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg45020?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg27921?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "29698429-be1e-4a65-a3e7-5958e22aa6e0", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f03b0e7e-0985-4c39-afdc-b474d0edf8ce", "Content-Type" : "application/json" }, "Response" : { "content-length" : "225", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "698068db-5101-44a0-a108-ad65a0f3c2ae", - "Date" : "Fri, 08 Apr 2022 08:29:43 GMT", + "x-ms-correlation-request-id" : "a2057b23-8a72-41d3-9b13-d8f312e8abad", + "Date" : "Mon, 25 Jul 2022 03:54:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T082943Z:698068db-5101-44a0-a108-ad65a0f3c2ae", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035439Z:a2057b23-8a72-41d3-9b13-d8f312e8abad", "Expires" : "-1", - "x-ms-request-id" : "698068db-5101-44a0-a108-ad65a0f3c2ae", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg45020\",\"name\":\"javaacsrg45020\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "a2057b23-8a72-41d3-9b13-d8f312e8abad", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg27921\",\"name\":\"javaacsrg27921\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e5305e55-f173-4d56-bddf-1824ae0e91cd", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9bfe5544-de0f-4abb-b304-5aea2cd24427", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "4068", + "content-length" : "4438", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "6f781be3-26eb-4d02-9d48-6666ec3a168d", - "Date" : "Fri, 08 Apr 2022 08:30:02 GMT", + "x-ms-correlation-request-id" : "c804bf7e-a30c-423f-97e5-4882fa02284d", + "Date" : "Mon, 25 Jul 2022 03:54:48 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083002Z:6f781be3-26eb-4d02-9d48-6666ec3a168d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035449Z:c804bf7e-a30c-423f-97e5-4882fa02284d", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/082f815b-f8d1-4106-a5e9-02898104cb92?api-version=2017-08-31", - "x-ms-request-id" : "082f815b-f8d1-4106-a5e9-02898104cb92", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1\",\n \"location\": \"centralus\",\n \"name\": \"aks444194f1\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns514264\",\n \"fqdn\": \"mp1dns514264-f293a8e7.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns514264-f293a8e7.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap043798a\",\n \"count\": 3,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1936710\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 3,\n \"minCount\": 1,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap227971a\",\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 10,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg45020_aks444194f1_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"ef4ca008-a750-4f46-ac7b-159ac02a9015\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", + "x-ms-request-id" : "9697f293-1873-4263-864a-af9544b4a9ce", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042\",\n \"location\": \"centralus\",\n \"name\": \"aks69811042\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns926852\",\n \"fqdn\": \"mp1dns926852-1e05d123.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns926852-1e05d123.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0037358\",\n \"count\": 3,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1015729\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 3,\n \"minCount\": 1,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap293068f\",\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 10,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg27921_aks69811042_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"6af4b930-b8d4-4689-a667-c919022887c2\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/082f815b-f8d1-4106-a5e9-02898104cb92?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8022f0cc-e77c-4d38-8188-126394bb65e6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f48c9fd7-ed92-48a1-95da-666fb8ae0609" }, "Response" : { "content-length" : "126", @@ -66,25 +66,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8250a078-3102-4bfb-ae1b-6a10ad461d22", - "Date" : "Fri, 08 Apr 2022 08:30:33 GMT", + "x-ms-correlation-request-id" : "e1a42346-8922-41ba-ac1d-3227317e1e08", + "Date" : "Mon, 25 Jul 2022 03:55:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083033Z:8250a078-3102-4bfb-ae1b-6a10ad461d22", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035519Z:e1a42346-8922-41ba-ac1d-3227317e1e08", "Expires" : "-1", - "x-ms-request-id" : "cc0e7b99-2e09-4637-8cdf-0bd24c246a66", - "Body" : "{\n \"name\": \"5b812f08-d1f8-0641-a5e9-02898104cb92\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:30:01.8733333Z\"\n }", + "x-ms-request-id" : "7133d738-b40c-4cae-8477-d8d8effbbd6a", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/082f815b-f8d1-4106-a5e9-02898104cb92?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "80079cf3-823a-46de-a129-09a066e8cf3b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c310ab86-c70d-46fd-b8af-db647269492e" }, "Response" : { "content-length" : "126", @@ -92,25 +92,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "x-ms-correlation-request-id" : "55d5328b-595a-4a23-90d1-8804f36751d4", - "Date" : "Fri, 08 Apr 2022 08:31:03 GMT", + "x-ms-correlation-request-id" : "21e02da7-781e-40f5-aa3f-761e055ad488", + "Date" : "Mon, 25 Jul 2022 03:55:49 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083103Z:55d5328b-595a-4a23-90d1-8804f36751d4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035549Z:21e02da7-781e-40f5-aa3f-761e055ad488", "Expires" : "-1", - "x-ms-request-id" : "1917cb20-1780-4c6c-a2f5-7dca18d1fc77", - "Body" : "{\n \"name\": \"5b812f08-d1f8-0641-a5e9-02898104cb92\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:30:01.8733333Z\"\n }", + "x-ms-request-id" : "c5732ae5-c424-4d3d-9dc0-6a6012cd7f91", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/082f815b-f8d1-4106-a5e9-02898104cb92?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "fa46d9d0-245d-4444-9822-5547655b0f8b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1437af1f-aebd-4ecd-9d76-86b4639a5669" }, "Response" : { "content-length" : "126", @@ -118,25 +118,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a95bb318-7a3d-4889-ad25-8b39e26e9939", - "Date" : "Fri, 08 Apr 2022 08:31:33 GMT", + "x-ms-correlation-request-id" : "28e7127d-ceef-4b68-bd23-0813bed930db", + "Date" : "Mon, 25 Jul 2022 03:56:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083134Z:a95bb318-7a3d-4889-ad25-8b39e26e9939", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035620Z:28e7127d-ceef-4b68-bd23-0813bed930db", "Expires" : "-1", - "x-ms-request-id" : "d7b9b9ba-96fb-42e8-b914-3773d58921d3", - "Body" : "{\n \"name\": \"5b812f08-d1f8-0641-a5e9-02898104cb92\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:30:01.8733333Z\"\n }", + "x-ms-request-id" : "d866f21b-7673-447c-bee6-c0e3ef99a53c", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/082f815b-f8d1-4106-a5e9-02898104cb92?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a90ba4ed-6df2-4a9f-9658-3e2fadc6d7d7" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "77b2cdc7-5421-4f72-989b-59c47dfc453d" }, "Response" : { "content-length" : "126", @@ -144,25 +144,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "x-ms-correlation-request-id" : "705f4f00-3176-4af7-918d-7282f69096c1", - "Date" : "Fri, 08 Apr 2022 08:32:04 GMT", + "x-ms-correlation-request-id" : "8b15704d-8bbe-46f7-8a37-df3b2e1d4c69", + "Date" : "Mon, 25 Jul 2022 03:56:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083204Z:705f4f00-3176-4af7-918d-7282f69096c1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035650Z:8b15704d-8bbe-46f7-8a37-df3b2e1d4c69", "Expires" : "-1", - "x-ms-request-id" : "1394b2b7-201a-4382-91b9-ef676f5d7fc8", - "Body" : "{\n \"name\": \"5b812f08-d1f8-0641-a5e9-02898104cb92\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:30:01.8733333Z\"\n }", + "x-ms-request-id" : "96de8f48-710f-4af2-b4a2-2aa73a55bfef", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/082f815b-f8d1-4106-a5e9-02898104cb92?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "2c3c46fd-7e21-46a2-a96f-15b93eabebdc" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b563d9d8-c240-4f05-9f83-e2aa9819b967" }, "Response" : { "content-length" : "126", @@ -170,25 +170,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "x-ms-correlation-request-id" : "81fc1f3f-de6c-4b09-9205-4e7182a10e5a", - "Date" : "Fri, 08 Apr 2022 08:32:34 GMT", + "x-ms-correlation-request-id" : "bdbdae62-5280-48e6-91b1-0e78f132edfd", + "Date" : "Mon, 25 Jul 2022 03:57:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083234Z:81fc1f3f-de6c-4b09-9205-4e7182a10e5a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035721Z:bdbdae62-5280-48e6-91b1-0e78f132edfd", "Expires" : "-1", - "x-ms-request-id" : "fa032fb7-c5f4-4166-a8ec-8b43b6a1bfa5", - "Body" : "{\n \"name\": \"5b812f08-d1f8-0641-a5e9-02898104cb92\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:30:01.8733333Z\"\n }", + "x-ms-request-id" : "6c2f89b1-fa4a-49fa-a524-eb73e097fe59", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/082f815b-f8d1-4106-a5e9-02898104cb92?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5c332702-d2f4-4bd5-bcf2-c751eba703f2" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a58e98f2-e3ff-40e0-bdcf-c78d3239fc4f" }, "Response" : { "content-length" : "126", @@ -196,25 +196,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "x-ms-correlation-request-id" : "95f0d5a9-7793-40e3-9c3a-8114e1ad15e0", - "Date" : "Fri, 08 Apr 2022 08:33:05 GMT", + "x-ms-correlation-request-id" : "c7066159-64f0-4f59-b3f1-ce4fe6feaf79", + "Date" : "Mon, 25 Jul 2022 03:57:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083305Z:95f0d5a9-7793-40e3-9c3a-8114e1ad15e0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035751Z:c7066159-64f0-4f59-b3f1-ce4fe6feaf79", "Expires" : "-1", - "x-ms-request-id" : "38af708c-0368-4b8b-9bb8-0bb69be71228", - "Body" : "{\n \"name\": \"5b812f08-d1f8-0641-a5e9-02898104cb92\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:30:01.8733333Z\"\n }", + "x-ms-request-id" : "d040a608-e4ad-41a7-9d86-59024d17e0db", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/082f815b-f8d1-4106-a5e9-02898104cb92?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "65de7b65-907a-4dac-9dca-69b16636d14c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ba8dbbfe-7c62-41a8-8a4a-f252b038182a" }, "Response" : { "content-length" : "126", @@ -222,25 +222,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a905c288-6eb0-4298-91d2-fb95ec8a19f1", - "Date" : "Fri, 08 Apr 2022 08:33:35 GMT", + "x-ms-correlation-request-id" : "ab7e1ee8-2b7c-4125-907e-b79388a4ccf9", + "Date" : "Mon, 25 Jul 2022 03:58:21 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083335Z:a905c288-6eb0-4298-91d2-fb95ec8a19f1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035821Z:ab7e1ee8-2b7c-4125-907e-b79388a4ccf9", "Expires" : "-1", - "x-ms-request-id" : "0ea782be-766e-4d7b-ab65-8cd34ac08e88", - "Body" : "{\n \"name\": \"5b812f08-d1f8-0641-a5e9-02898104cb92\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:30:01.8733333Z\"\n }", + "x-ms-request-id" : "6922b667-0b2e-4a1a-8c0d-55a942c5e620", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/082f815b-f8d1-4106-a5e9-02898104cb92?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "c29b7f64-df57-49af-872a-a89609d30cd2" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "27a12ca1-3801-48e1-abca-a738f7b81886" }, "Response" : { "content-length" : "126", @@ -248,25 +248,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "x-ms-correlation-request-id" : "227eb4df-effd-4270-be67-b325d43e5c6d", - "Date" : "Fri, 08 Apr 2022 08:34:05 GMT", + "x-ms-correlation-request-id" : "576d93de-68dd-4665-9240-42d054754ce3", + "Date" : "Mon, 25 Jul 2022 03:58:51 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083405Z:227eb4df-effd-4270-be67-b325d43e5c6d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035851Z:576d93de-68dd-4665-9240-42d054754ce3", "Expires" : "-1", - "x-ms-request-id" : "4687762e-3f64-4cfc-99af-9b8b85df392a", - "Body" : "{\n \"name\": \"5b812f08-d1f8-0641-a5e9-02898104cb92\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:30:01.8733333Z\"\n }", + "x-ms-request-id" : "c0c287b8-ac8d-47a4-97db-c7e71bcd20af", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/082f815b-f8d1-4106-a5e9-02898104cb92?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8e0c47b0-bcb1-449d-8a25-aa32d942d198" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4416335d-64ad-47d3-acae-e110f3d19550" }, "Response" : { "content-length" : "126", @@ -276,394 +276,420 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "x-ms-correlation-request-id" : "765ec3c8-c3cf-4eb0-81a5-b6315b471a55", - "Date" : "Fri, 08 Apr 2022 08:34:36 GMT", + "x-ms-correlation-request-id" : "25a9bc32-f949-4544-99a5-459517275b91", + "Date" : "Mon, 25 Jul 2022 03:59:22 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083436Z:765ec3c8-c3cf-4eb0-81a5-b6315b471a55", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035922Z:25a9bc32-f949-4544-99a5-459517275b91", "Expires" : "-1", - "x-ms-request-id" : "569cb7c3-bdf3-4a90-a7f8-bd44820402c0", - "Body" : "{\n \"name\": \"5b812f08-d1f8-0641-a5e9-02898104cb92\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:30:01.8733333Z\"\n }", + "x-ms-request-id" : "45f17549-1b9b-4069-a0df-d419b43e3a8c", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/082f815b-f8d1-4106-a5e9-02898104cb92?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "12bc2ef2-b5d2-4d92-9268-334c14c79758" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "59c201d9-e7bd-46a6-afc4-dd53807d09b2" }, "Response" : { - "content-length" : "170", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2cde8bfb-5b0d-4cf2-a647-4b3059667d12", - "Date" : "Fri, 08 Apr 2022 08:35:06 GMT", + "x-ms-correlation-request-id" : "49ad929d-fca3-498a-a4ec-9915eb6b5b3b", + "Date" : "Mon, 25 Jul 2022 03:59:53 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083506Z:2cde8bfb-5b0d-4cf2-a647-4b3059667d12", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035953Z:49ad929d-fca3-498a-a4ec-9915eb6b5b3b", "Expires" : "-1", - "x-ms-request-id" : "9a40d0ce-67f6-4cb0-b3ed-d5b4599a3b03", - "Body" : "{\n \"name\": \"5b812f08-d1f8-0641-a5e9-02898104cb92\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:30:01.8733333Z\",\n \"endTime\": \"2022-04-08T08:34:38.1028364Z\"\n }", + "x-ms-request-id" : "d7051f4c-3def-499e-9141-7e8461eb82d1", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "48551b53-13dd-463a-89e7-8f082c15dd71" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "128be3ee-2c7e-4086-9e5a-c4f07d5f5263" }, "Response" : { - "content-length" : "4716", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", - "x-ms-correlation-request-id" : "af8d7d7e-e224-473f-99d3-84e13cc6f100", - "Date" : "Fri, 08 Apr 2022 08:35:06 GMT", + "x-ms-correlation-request-id" : "98b205d4-2988-4c0c-8786-aef2b5fe66cd", + "Date" : "Mon, 25 Jul 2022 04:00:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083507Z:af8d7d7e-e224-473f-99d3-84e13cc6f100", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040024Z:98b205d4-2988-4c0c-8786-aef2b5fe66cd", "Expires" : "-1", - "x-ms-request-id" : "93c4f02b-4b58-41d3-9ab2-3d7a815dc4ea", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1\",\n \"location\": \"centralus\",\n \"name\": \"aks444194f1\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns514264\",\n \"fqdn\": \"mp1dns514264-f293a8e7.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns514264-f293a8e7.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap043798a\",\n \"count\": 3,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1936710\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 3,\n \"minCount\": 1,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap227971a\",\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 10,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg45020_aks444194f1_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg45020_aks444194f1_centralus/providers/Microsoft.Network/publicIPAddresses/930d0d8c-3d9f-4d57-b5eb-a0f4f7a2ed03\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg45020_aks444194f1_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks444194f1-agentpool\",\n \"clientId\": \"493b6135-f533-45c7-9328-5c7a9b78ef76\",\n \"objectId\": \"e3889296-a6a5-44b8-b596-6bff6719d5bf\"\n }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"ef4ca008-a750-4f46-ac7b-159ac02a9015\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "x-ms-request-id" : "09e25a66-ab23-4537-84a9-a12c28dc4e82", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1/listClusterAdminCredential?api-version=2022-04-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e56d3430-b3e5-4109-91a9-3c9ef6cb150c", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2931e8d7-fce3-4cad-a578-90dfd7b57c48" }, "Response" : { - "content-length" : "13025", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", "Pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb5f5b22-8c9a-4133-841f-2d244c2a500d", - "Date" : "Fri, 08 Apr 2022 08:35:07 GMT", + "x-ms-correlation-request-id" : "25f6b9ba-d06c-4028-af5f-07e7966a3949", + "Date" : "Mon, 25 Jul 2022 04:00:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083507Z:cb5f5b22-8c9a-4133-841f-2d244c2a500d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040055Z:25f6b9ba-d06c-4028-af5f-07e7966a3949", "Expires" : "-1", - "x-ms-request-id" : "2c1786f0-c761-4957-83d4-88c054f1ea99", - "Body" : "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterAdmin\",\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUXpkYVUwaGhNakZ1UWtoT1pqRnJlVUprVFU1R1ZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUV3BCTUUxRVozZFBSRWwzVFZSV1lVZEJPSGxOUkZWNVRVUlJkMDlFUVRSTmVrRjRUbFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSTUNrZ3lOVXhRV1ROeFQzQnVhR1JSTjJKUFYzRnlLME4wUlV4dldUVlJVMFF4WkZGSVRIVmhUMDVGYlRsVVQzWmxjRVExTHpkeWVHTlZWMVJXTmk5SVp6TUtURk4yUkRKeU0zWlFOU3RRWlZKUGRUQnBPRXBGVWtrelJEWkNVVko1YkhWcVRWWkZjamw0U2sxUlUwOVViRFEyTDJoaVNqVnllbVJ1Y1RSSE5VUkhZUXBhYVRSalNGbFNMelpGZGpOMU9HUXhOMnBNUkVsek4yRjZNbVo2ZUhaMUwySXZaMk51ZDJ0aFNtbFRiMnRDUzFaR1ptTXlVazU2ZDA5cGFqVjVlSFkyQ2tVd1VXWndTMlI2WW1ReVZHdFFXVUZFVDNjMFZIcERNbEYxVkVKSU9UVXJWWGR3UVVONVUySkpUbEJUYlUxd1FqVlNVRW8wU25kdldDdEllRXhXVlZJS1IyZGhkWHBUWkd0UE5XbzVVMWxWYTNobmVHWnhlakZWU21aMlNYRXJhRVJOU0VWMlpXZENkSFpWV1RaVE4wWTRlakJUYms1V2FFRlBRalZTU1RSeE1RcGpaMGhFT0VwVlZFMWxlalptWjNBd0x6WjVZakJqVmxVNE9VNTZOR1ZsVHpKTk1scHZUVWhUWmxobmFrVTFURVZ6Y0ZoQ09VdG5iMkpKTVdzdk1USkVDaTlVZFU5b01USjJiVVJKZDBselVUbE9NbVEyT1V4WFpFbExRV1ZFUW1nMlpqVjNXa1ZKVnpsQmVFRlNObmhqYmtKa2RXeGtjeTlHWW5GbU5UTTBNMVlLSzJwVlVVbDBTV3hqVVVSWFFqRjBVR05zYWtSRFZESkZWWHBVWVROeGIzVlFaalpaWTFsNVEwODFjR0pIUnpoNlQzZ3hibFpvY0ZaWVIzTjNaMmhRVUFwSk9YQkNkVUk1TTJGUWF6SXJjRXgwWlZOUmREQjJUa3N2U25Oa1YxSlJZMXBVU2tKSVVrMUVjRWxVVjB0VE9FRmhhRkJCVFRkT2EybDNhRVpLTkZrdkNqVkVUWGN3TTJkaWQyd3ZUR0U1Wms5eVkwNXBiMlJzUjNOUVkzSXhPRzFXSzFsV1REVnJPV05DUWxWNWJHMVNVMVV6Tm5SVE0xcGpXVU5MZFdSRmVWTUtXSGRpTldGaWRVNUpNWE56TTA1VlJXSm9NekoxYTFsSFlXRkhiMlZtYTBRNE1EWnlWMUpKVWxSM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWb1dGSTFkVXBxU3pZd2QySndVVTlNQ2pnMFRYSlpjVTFSVFRsemQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTFoyZEVha0V2WkRKWlpHOVlRa2xDY1dScFFXOXpWRTlaZG5vS2JHSkhNMGx6Vlc5bU9WQmpSbTVwVjFwbFJVUXpUV1pwU2xsdFZUTktWWFpyUkRZNFlWbHpVVFpyWlVKM2VEazBVemRZZUVFMmJsaHFhMjltUTJ4dlV3bzNNM0ZVVEZOaVlUSTFRMk4yTkcwMVowdFdOekl3Y25SaE4yTkRVMGg0TjJKWVdXc3JSM3BKZVZseWNVdG9kbFY1TUZSR2RWZHFSSG95WWxOamFuaGxDa3BwWTFoS2JWSm5lbFF5UldNNVJXeDZjVGh0ZVdONk1YSXhNbU0wUWtONU5EWnZUV2s0V2tKTE1XdExabUpIVm5jNFNFSnNlblZWUTBwaFJISlpVRk1LTlRkMGEwSlhWelZNTUhSc1NVeERWMFpqVkZscWRrNVRSM2ROYVhZNFkzZG1XVmsyVlVVMFVXcHFkVmwxTW0xeGJFOWpPWEZUZGswck9HUlJUbTR6UlFwVlIzQkdjRnBwVjNWUk4yTTJkbmxHT0dNMWF6a3hlREUwZVRBd2JXMXVURlZDYzA0NWQyaFFhekZGUW1acVZFazNiemhEZGpWVU1tczRWbmxzVDJ0MENscE9jMHA0VnpkSlVHRnFNMUZuVjFWVk9XOVdlR05ZZFdOR2RtNDVjeTloYW1sdldsUlROMGwxVURRNFYyYzVRelI0VEhsNk4zWmxaV05PZFhCamRuQUtRM2RtT0RKcEwzbFJORUZLUm1sVU5qZHdaRTVwZGt4MVZHSlRWRTB6VGpKbmVqWmFiMVE0Vm1WNFdVODBabmxVWlUxUFdHUkpUMHhLZVdOV2VtSktRUXBoVFZWV2F6TTFUREl4ZDNWRVp6QmFXV04zVGtsMU9HbDNXbWxsV0RaMlUxZ3dZMkZ3TXk5d1FtVTFVMnhSWkd4VFVGVjZSekZNT0VvdmN6VnRSV2xXQ2padFpsQXpSMlZLY2xsemVUSnJXRE5WVUVKck4yNVJkVUpYZEZSdFNqbFVjMUJXVVRkM2FHSlJkVmxoUTJwRGFURTFkM04xV1N0dVpsZElWbG92YlRJS2FVMVZlV292UzI1dlYyNUNSWGhuWkZKNlQyaHBOVWw0VERZM05WUmxia1IwV1UwMGNXOTNiMUJhWkRaa1FscFhTbU5ZWkRScU1rWkpiMDFyWW1rdldncEVUMVpzU3pkS05rcExiR3ByZEdKMkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL21wMWRuczUxNDI2NC1mMjkzYThlNy5oY3AuY2VudHJhbHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBha3M0NDQxOTRmMQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogYWtzNDQ0MTk0ZjEKICAgIHVzZXI6IGNsdXN0ZXJBZG1pbl9qYXZhYWNzcmc0NTAyMF9ha3M0NDQxOTRmMQogIG5hbWU6IGFrczQ0NDE5NGYxCmN1cnJlbnQtY29udGV4dDogYWtzNDQ0MTk0ZjEKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyQWRtaW5famF2YWFjc3JnNDUwMjBfYWtzNDQ0MTk0ZjEKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJWVU5NVm5OMk1FeDFWWEpXTjB4cVZEbE5jWHBrUkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRXcEJNRTFFWjNkUFJFbDNUVlJXWVVaM01IbE9SRUV3VFVSbmQwOUVUWGROVkZaaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJNTjNaa0sxTlliVmxqZVRWS1kwMDJSR3RTTUhJS1pGTjBVVEYxV1hkWVExRTVZMFZ6TTBKNkwzWnhhekUyWkZKcmQxaGpaek5OYUZCeGVFVllPWHBuZG5RNGVEWTBXbXB2WkRKVWFFeENZbU5uU21KUlJ3bzBWRlZPVTNGeFkxWmxSM1pGWlVkYU0wNDBOa3BXWjJOUmRXeHVUMGRsYTFscVJEQTVha1oyYkhBM04zZExSRFJpZWpNeFNETkdabEJWWjFSRVZrMVVDbXhIVUdwalkyUXpZMUlyTmxSSEwwcDRUbUZ5VEN0M1VUY3dSWGt5YW5JM2MzWmlNamhEZFhkb0sxWjJTSGh0YjJ0TFJEY3llWGt3YlUxNGRGb3pVRFFLYnpobk9XTjFka1Y1YTNoeldrMHdkMlZMZWxSTk56UnVRVlZLVVRoMGMyNXhhbmNyVlVkMmRuQXJReloxVTFJNVYySnNZa3MyYVZORk0wVjBRV2h3Y3dwVFdXd3dRVGRpYzBwdVUzTmtPRkZaYTJOdWQyWkpaRGxKWVVoTGRHRmxSV3A0YUZGd2NVeFZUekUyYjBoYU5FZEhaVm80ZW1kMlVGSXZjRE01V1dveENrZGxPVEZ6TlhOS1JHeHhSelJyVVdkQlRscFhSSEJzVVdWbmVISlpVamRXTTBSS1RWRnhRa05xYjJZdlIyOTBWRVoxY1VsdmVEVnBjMlJqYlhveE4yMEtMelpZU21Sc09XaEtRM1YxVUVsRlRGRlNaWEFyVERacE1XVm5PREZqWkRObUwwTldTekoyUVVKdFYwTkpZMlp5TURONU1tRkZPV3hPUlRRMlluTlFkUXBvTkZsTGN5OTNlVzlOYWxCbWJta3dPV3d5U1ZscEwzUmhjbXhwYldWRU4yazRVRFpZY1d4T2FuQjRielpOTldSVGRHOVFhRU5rZW13Mk5rdFJUMjVEQ2tsbWJubGplV3B3YzNVelUwMXpXWFJNTDIxNFFsWlRNQ3R1ZDBFMk1taFRZVkpzUkVkRWEzRklVblpNZDFKRVNYSnpSbFJEVlZoTlZFRldaemdyVDFVS2FIbzVVblJTY1ZKSVFtOU9iRGRhVDJOdWNsb3dhVWQxVFcxV1VYZzRTRzlZUW1JclVGbE9jWFZtYjFsblExZHBSRXhCV2t4MlUwMW9UMjFrZG1WR1JRcGtMMHBHYm1oUFltUkpUWGxSVVRkSE1uaHRaMlJSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE5HWkVodE5HMU5jbklLVkVKMWJFRTBkbnBuZVhScGIzaEJlako2UVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZhYzJwaGFtMXliRVptVlZkWlRISTBaM2h5U1FwMVEwTklVU3RtT1N0VWJqSnNRMlJpYkU4eU56bEJaVkJxVmpaWU5rSjZUMHhUWVdsSVdVb3pVRmt6YWpWbU5HcE1ObGR2YlZoc1J6TXdabmRKUkdsM0NqZFFRVkJqU3pKTGFXTTJSa2gyWmpWVmJGbFBNVTlXUmpBeVVHaGthbHBMWjAwM05UZHFaRGRHS3pkVVJWUldkSE1yWkhKUVdTdEdaRWgyVm10a1VsSUtTaXRNYXpWaFJFRTJLMjl1YW1RMGVsVllXR05LTUdsRFlrcHNSa1ZRYmxwQ1VGbHZiRkkwUmtOdVJXZDJSSFJyWWxGSVZHeE5aM0ZwV1hGSWJFUjZPQXBaYVVwTk4zSXdlbWh0T1hweGIydDBZMWRXVmxKeVFpdHhUbGhMTXpaNGMyWlNWR1l3TVdaT1VXWTJlSEl6UzFGSlNERjNhVXhMTHpGWlNUVklTbkJKQ2xRNWJWQnhUM0lyZVhNNGN6RjBNemNyYWsxSU9WcFlWelV6VkRKSWNuSXdWVTlhZVRkUGVISmlTbTFoTDA1aGNGQnBlR1pzT0dadFJGRnhSbEIyUkZRS1YwaHVjVlprTDFsc1FWWkpUVGhWUjFkb1MzUmhOemRSV2tRNVNHSTVUVGh5YUcwNFFWSnpja05SZGtKNVRDdERZMU14TjFCUE9VeHFlbHBRZDBFMlJBcDFTSEVyTTNSMWFrNXpVR2R1T0Zod2RHWTNVV3B1VUZoUVN5dG5NaTlOTTNBd01HcERRa013ZUU0clZWYzRNV0ZEVWtSaVFVWmlhRzVEWW5aTmJuQTNDbThyWVVkME9YaFJORWh3ZUdJd2RVcDZNV012V0RGc1JUSTJORUY0TjI0ME1UaGlhVE4yTnpoVFZrcExTMkk1WjFCc1lsTjJTRlo0V0ROT1EzbG1URVlLTkVaVlJHMUtiMGR6YWxOUVVYaHBURzA0UkRWQlExY3pkMGdyZHpWdmJWWTJNVXh5TmtkNGMzbzJOMmxaYmxoNFFtOXhUMGxOYm00eVIyNXNURXBqUWdwRlZ6bEZZMlZQYUcxRlpGQTRhaTl0YUhkTFRFRlJOamh5VWpSNVUyMHpZVUkwVDJadmEzUjRZbll5UTFwTGFUVjFTVTFoWTBoeGFqWmxWVk16VWl0SkNuTkxhRGN5TXpBMVdqRXJLMG8xUzNCQloweFVZVTFqUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCZVNzM00yWnJiRFZ0U0UxMVUxaEVUMmMxUldSTE0xVnlWVTVpYlUxR2QydFFXRUpNVG5kakx6YzJjRTVsYmxWYUNrMUdNMGxPZWtsVU5uTlNSaTlqTkV3M1prMWxkVWRaTmtoa2F6UlRkMWN6U1VOWE1FSjFSVEZFVlhGeGJrWllhSEo0U0dodFpIcGxUMmxXV1VoRlRIQUtXbnBvYm5CSFNYYzVVRmw0WWpWaFpTczRRMmNyUnpnNU9WSTVlRmg2TVVsRmR6RlVSVFZTYWpRelNFaGtNMFZtZFd0NGRubGpWRmR4ZVM5elJVODVRZ3BOZEc4Mkt6ZE1NamwyUVhKelNXWnNZbmc0V25GS1EyY3JPWE56ZEVwcVRXSlhaSG9yUzFCSlVGaE1jbmhOY0UxaVIxUk9UVWhwY3pCNlR5dEtkMFpEQ2xWUVRHSktObTg0VUd4Q2NqYzJabWQxY210clpsWnROVmQ1ZFc5cmFFNTRURkZKWVdKRmJVcGtRVTh5TjBOYU1ISklaa1ZIU2toS09FaDVTR1pUUjJnS2VYSlhibWhKT0ZsVlMyRnBNVVIwWlhGQ01tVkNhRzV0WmswMFRIb3daalprTDFkSk9WSnVkbVJpVDJKRFVUVmhhSFZLUlVsQlJGZFdaelphVlVodlRRcGhNa1ZsTVdSM2VWUkZTMmRSYnpaSUwzaHhURlY0WW5GcFMwMWxXWEpJV0Vwek9XVTFkaXRzZVZoYVpsbFRVWEp5YW5sQ1F6QkZXSEZtYVN0dmRGaHZDbEJPV0Voa015OTNiRk4wY25kQldteG5hVWhJTmpsT09IUnRhRkJhVkZKUFQyMDNSRGR2WlVkRGNsQTRUWEZFU1hvek5UUjBVRnBrYVVkSmRqZFhjVFVLV1hCdVp5czBka1FyYkRad1ZGazJZMkZQYWs5WVZYSmhSRFJSYm1NMVpYVnBhMFJ3ZDJsSU5UaHVUVzgyWWt4ME1HcE1SMHhUTHpWelVWWlZkRkJ3T0FwQlQzUnZWVzFyV2xGNFp6VkxhREJpZVRoRlVYbExOMEpWZDJ4R2VrVjNSbGxRVUdwc1NXTXZWV0pWWVd0U2QyRkVXbVV5Vkc1S05qSmtTV2h5YWtwc0NsVk5aa0kyUm5kWEwyb3lSR0Z5YmpaSFNVRnNiMmQ1ZDBkVE56QnFTVlJ3Ym1JemFGSklabmxTV2pSVWJUTlRSRTFyUlU5NGRITmFiMGhWUTBGM1JVRUtRVkZMUTBGblJVRjVOblJDWVdSTFpuRmxNU3RyVFVscmRtRnJlalZMT0VWTU5YZDNSVXRSTVZoV1lrWkNOVkZ3SzI5WGRrVXhibGhoYTBvdlRIZEVTUXBsTTB4RFNrSlRaMUJYYWs1cFdWRjJSSEJvWldKRE5uUkZWMGxYVW1KcGRHSjZWR1UxTTNWMVFsWmFjVnBYZGpoV1ZETjFibGR6UjBJMWVVSm9aRFkyQ2pOcGNubG1SM1ZHU2tKRWFITnlkMGQxVFZKTFUySXJLMDQyYW1KRE0ySnlkVGM1Y1Zsd1QwMURSbVJIV0dSQ1JWSklkRGN5THpOWGN6VTNXSGRaUTJVS2RsVm9ibTFqY0daRVdHVldMMGs1VlRrM1QxSkdiSGg2TjJRclowcDJXVXhwWWswMFdFUldaREZtVG0xTFlqWmlaU3RNTVZOaFkzTlJRVkZNWXpkWVJRcHlUV1JOZUZCQ05IUkpUWEpQYWxaa2RGQjNTbEZ5Y0VGRldqbEZTRVp1YXl0UlUzTnlNMUpKYldWaFV6VmhZbFZqTWxWeVR6UkdXRkZGWm1wdllsQXpDbkZNVTBSamEzQkpOSE5YVW1sTE5XUlVjeTlLV1RVMlZFOTZUSGhNTWpoV2IyVnVUVk5yY25obE5taHFXR1V5TkdKa05YZEJhaXRKWkhJMmNHdHVRbkVLV1hKQlNuVjVlQ3RVVTFSdFRWQjZTRU0zZGtWM05HSTJjakV3UW5ORlJYVTFaMVUzUkZWMmRXWkhiMmRCTDJSR2NtbG1kVU5GYW5CUllWUklWRXA0UXdwVmVHY3liV3MzVlhkMk0xQktWbmh4TWpCaU1tVnliMFF6TTNKNVFWbGFSak5VVDJSa1UzbDVkMkZGTTBzMGJsWk9MM0pKTkRGaU5qSmlWV3NyTUNzM0NreFBkVmhtUkdwSGNXSkZkek0yYVVkMVZVTk5kVVJ1YlRjMVMzTnllVk50ZUc5WlVUaDNaVGxPYUZKMVFpdFhUVXhFTjFCcmRtdzFTRzlrUlVGQ1VGUUtjV293TkcxbVR6UkRaWGxUYlRWaldVMXlZMkpTWm5KeEsyMVRXbUpXWW5OWVRDdE1PVmxwTmt4VWIzUlBkbllyZWprelQxZzBRMXBqV1ZsVVpHUkdaZ3A2TXprMU1uZFhaVWRuSzBsMllUWXZWVEZETUZoTVFtaEhWVXhOZVVaR01ERTNVRE12YTFZMFFXRkNiMmxNYVRCaE5FVkRaMmRGUWtGT1lqRlFhMjloQ21abVpGWXpSMUJpVFZRdmVVTXhOR1JEV1ZKTVRUWXZhakEzTVVWbFIycDZUbmN5ZFc5bGRrUllRMmRGYkU5SFNISmlTM1ZzVjFkb2RYWk9TalZoVEVzS2FrZzBVV2xKVmt3NWVqaGhTVlJwVFVocGJ6WXhTVU5XZDB4alRuRmlXVmR4YldVMVdrMHZPR1JFYlRSdGVrVlVNMmRyU1RkNFRHbHFOVTFKUTNsUVJncDRURVpIV21KeVVIQXZjVWRPWkdob05qRXpUa2REY1RoVFpYTmtXR3hTV0hKVlNsQjJOalpaZVhCTVkybHFUVzlMUlN0UFNrRkxUR3BXWTJnMGNsQmpDa2xqUjNCdGIycGFibTluTWtsU2RFSnZSR1Z0V1VsdlFYaG5OV2x3V0VKRlJpdFFRV1ZWU1c1R1oybGxWbTk2UlUwNVZHdElOMlU1UjFGRVZUQTJWMG9LTm05cWQzaDZNbFZzT1c1aWJXaDRhRVpvUjJaT05UWkpOVlJ5ZFdOQ2RWaExaMDgzTlhsaE0wbzBjVU0yVFRSdVYyOVBOazFWUzJoa2IwOVJOM0phTHdwSVJqaHZRMHB0V25SdGN5dFBaakJEWjJkRlFrRlFUR1V6V0VOTmNIWnFka0pOYjNGNFFXNUtNbTE2U1V4NU5YQkhTQzlsWm5GdVQydHVNMDlsTUU1TUNuTlJPR0ZRUVhGaVFYRmxjSE1yT0ZKRk1YbDJNVzFzYWxGM2NYZ3hObEZoZEZSdGRtUm9UR2hpYUc1WWRuRjJSRFZUWjJRcmRYVjJXbnBPYkhkS1JsVUtjWE15YkN0RFFtZEVja1pPTUROMlVrZzNOMEZWTmxOQldFNHhXa1pKVVVST1lrdGhjRFJIUzJJek9VNXpaRXMzUVZwTk9USlhlaTlNU0V4MmFrVXhOZ3BMWWtOQ01IVlBiR1J4Vkc4eWVWTXhibUp5TWpGUk5GbE9XamRwY2tGa2NsQnhZVlJYVVRaYVVFUjFhVUpsUkc1YWFsaDFkMWRDU1hNMFdTOUxNVEZLQ2toMVJtUmxTR3haWjBSNGRXeFRVRmtyUkZOalRVUldZVTFSY0dsUWExRXZjVGM0VFZodE5UTnVkR2hhZEZFNVRHRnphRGhUVlRsaFJsbE5UM2haY0dFS2NYZFBNMnBWVkZsRWJVZGtlVkUwUWpFclMxaHhObkpyUlV0UE1tbEJURk42WkVSdloxTXJaRXhrYTBOblowVkNRVWxpUW5SbGQwVXdZVlpHZVZkVk9BcFhOVXR1TjJGS2VHUTJOMk0yYVd4Q1NGWlBVVFJvSzBKSllXeE9TMmwwUVVSTWVqRnhiRkE0YkRsTWJHbGlhblFySzBwaVIwUXZSekZQTms4NVRtTkVDblZhZEhkcFVsVklSMm8wUmtwWlZEWXpTbUZzVmxKb1Z5dDZjMDVUV0hKME1pOXlNMnhUY21WT2NISmFXU3M0YkRSNldXTnRPR04zVXpBclRGQXlhM1VLYkhwTlEwRnBNa1p5VjFSbWJERXZja3hFWm1RNFJ6TldhbFZPT1RsVUwwTm1NMUV3UmpsMFkwOUlSWFpRWW01MWRrbDFPRXhZTDNRMU5tVmtOazFuVlFwRVZVNDVSVFpKWm5OUk5WTkhhMFpLYms5QlZucFljMnMxVVd0a1pEWmpWMFU0VlZKYWJHSllRbFowV1VzNU5HNURUVFo0YmxsRmQyaGllVlp1V1VsdkNtSnJNMmRWY1hWd00xbHFjMnhLVTNCWk0wNW1WMUkyYVRGSE9FVXhSRTA0VEU5cGVtbHlhalpwVFRjNU5HSllVWFpTYUdKMWNISnFPSFZvWjJzMGRXWUthRzVIVXpCQk1FTm5aMFZCUkVSVlJHTkZja0puWWxkU2VXY3JTVTUxTWpoWGMyUmtRamR2YTJwNGFrSjVVWE50T1dObVVrUnFjbHAwVjJGbFMyWktUUXB0WkhrdmRrZzFhRTlOUm14NE0zQkVkbXd2WkRsT1QyRXhSVVp5WWpsMVFYbDVLell4Tm5STE9EQTRLMk15V1c1cE55OU1hRUZLTjJFd1lYbFNMelZNQ2k5elJtOXdZM0ZJUXk5R2FYZDBkbTk2ZGpsU1RuRnNjVzgwVml0alpGcG9ZMFZoV21JemQxTjNha2hVYjJSVVdtbFNWbVJQWlN0Mk9Vd3dlSFZzZEhjS2MxTXdOMEp2WkZOWVJHeFlNRUpQVEdKdFlqWlBiekEzV1hWbU5VTXZSRXg0UkhWTGFrSnNWbGM1VTJGU05YRm1NakZ0Um1SdVZHTmFiblJ4VDB3NGJ3cEJkVWRWUVZjNVFWZHVVMWhRTjJNcmVUaFVVVmRIU0ZNMGFFWm1SbUpLVW1VMVNsZDBWMUZZUVN0cGNsUndLelpuVWtoWEx5OU5Obk5VT0dscVNteElDbUk0VTJObVIxY3ZWV2hhU21aS1pHdzVjbE5RT1ZsU1pUY3JZMlo0ZVV4b1ZWRkxRMEZSUW5kSmRXNXphMjgzUWxORlFuQm9kMVU1TUZkQ1pVVktOVmdLY3pCUFUzZE5UVlJNYzFSUFZVaEVTSFJaWVRod1FtMVdiMGMyU25oclMybExaRU40WlZKNU1XMWxWVmhCTldkSVVsUldhekpCUkRodU1taEtPV3BNZVFwWU1GUkVSbUppVG5KeGFsbGpSRkZzVFhOdFJERjNja1F2UkdwdmFrOTJkMDB2VERBMllrNTBPRlJITTBGaWNtTlNNbU5CVjJkSVVWVjNVbGRxSzBsT0NrOXFZbmxCU205U1ZteHlWVzFUUkdKd2NVNHhaRE50VjNZNWJsZGFiVEpGWWxkalRqbEhOMUl2UVdrMEwwMXphbEptZUUxSFZIZHFaelpLTVhOeGIwMEtiMFl6UmpkS2JHRmxSVm93UWpOME1VMUdVazlPVG5NMFUwVkhTamcyYjJsRGQycEtURE5QUm5GcVJWbDZkVE0zUzNGRGFGSnJjRU5XTnpCR1VVSkpSQW8yVWxsYVJ6VndRazlNVFVod2VHSlFaSFZaVlVOTU0wOTZUbVV4Y3pONFluVllOV2Q0WkZkTVUwSndZV1J5YmpoSWFtSnBLMlkyTDJGSmVXc0tMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogNmYzN2Q3YjM2ZmMyNGFiYzM3YThlYzMwNjRjODg2ZWIzMzc5NjA1ZDUxODllNGRmYjI4Nzk0NTY5ODFiZjQ1ZTIwZThlZTVhM2I1ZjcxMmI2ZTI2Y2VlYzdiYjc1NzU1Y2Y2NWYwOWQ5OTAzMzQwYWNhMjc0OTk2YjkyYjZmMmQK\"\n }\n ]\n }", + "x-ms-request-id" : "9634ac77-ea26-4cb7-a3ee-862253a05d9c", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1?api-version=2022-04-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "b132694d-e2fc-4a1a-8dce-a4a2fcc1f299", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "87c4f816-4379-4a43-8395-75f1fea125aa" }, "Response" : { - "content-length" : "4673", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", "Pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "x-ms-correlation-request-id" : "0a178c4e-88c2-4e2d-a10e-22a2178c9eb4", - "Date" : "Fri, 08 Apr 2022 08:35:12 GMT", + "x-ms-correlation-request-id" : "8187249d-ea23-489e-aac6-2cb5eb2d2f92", + "Date" : "Mon, 25 Jul 2022 04:01:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083512Z:0a178c4e-88c2-4e2d-a10e-22a2178c9eb4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040125Z:8187249d-ea23-489e-aac6-2cb5eb2d2f92", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c456470b-98bb-4f7d-b981-3a622e6e4f29?api-version=2017-08-31", - "x-ms-request-id" : "c456470b-98bb-4f7d-b981-3a622e6e4f29", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1\",\n \"location\": \"centralus\",\n \"name\": \"aks444194f1\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns514264\",\n \"fqdn\": \"mp1dns514264-f293a8e7.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns514264-f293a8e7.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap043798a\",\n \"count\": 3,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1936710\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap227971a\",\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 10,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg45020_aks444194f1_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg45020_aks444194f1_centralus/providers/Microsoft.Network/publicIPAddresses/930d0d8c-3d9f-4d57-b5eb-a0f4f7a2ed03\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg45020_aks444194f1_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks444194f1-agentpool\",\n \"clientId\": \"493b6135-f533-45c7-9328-5c7a9b78ef76\",\n \"objectId\": \"e3889296-a6a5-44b8-b596-6bff6719d5bf\"\n }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"ef4ca008-a750-4f46-ac7b-159ac02a9015\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "x-ms-request-id" : "34939eb3-1b5a-4a32-8c6c-f44586b900c7", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c456470b-98bb-4f7d-b981-3a622e6e4f29?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/9697f293-1873-4263-864a-af9544b4a9ce?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "10dbce7d-ef6c-438d-9e00-3cf37b620e73" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "59e1e9d4-63c0-4b34-b6b0-d2b7271fdd71" }, "Response" : { - "content-length" : "126", + "content-length" : "170", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", - "x-ms-correlation-request-id" : "347223f3-f5fe-42cb-a62d-01a1dbcc7049", - "Date" : "Fri, 08 Apr 2022 08:35:42 GMT", + "x-ms-correlation-request-id" : "5b021457-4d5c-4fee-afe5-a8dbd5644c64", + "Date" : "Mon, 25 Jul 2022 04:01:55 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083543Z:347223f3-f5fe-42cb-a62d-01a1dbcc7049", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040156Z:5b021457-4d5c-4fee-afe5-a8dbd5644c64", "Expires" : "-1", - "x-ms-request-id" : "4caff7ed-9c15-4d20-b972-3899d8f65513", - "Body" : "{\n \"name\": \"0b4756c4-bb98-7d4f-b981-3a622e6e4f29\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:11.0433333Z\"\n }", + "x-ms-request-id" : "ba2d625a-8ded-4773-8933-194de245f638", + "Body" : "{\n \"name\": \"93f29796-7318-6342-864a-af9544b4a9ce\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T03:54:47.7933333Z\",\n \"endTime\": \"2022-07-25T04:01:53.4959772Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c456470b-98bb-4f7d-b981-3a622e6e4f29?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "500de48f-4c37-4e19-9f5c-fdbf90a361e8" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1c67ad6e-5b6e-49d2-85c0-3c1457c123d0" }, "Response" : { - "content-length" : "126", + "content-length" : "5086", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "x-ms-correlation-request-id" : "569906d7-75e1-4f14-ae00-7e2ede46cae4", - "Date" : "Fri, 08 Apr 2022 08:36:13 GMT", + "x-ms-correlation-request-id" : "79c3f700-2fda-4440-8bd4-a6253e4f0459", + "Date" : "Mon, 25 Jul 2022 04:01:57 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083613Z:569906d7-75e1-4f14-ae00-7e2ede46cae4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040157Z:79c3f700-2fda-4440-8bd4-a6253e4f0459", "Expires" : "-1", - "x-ms-request-id" : "c8b1dea6-e08e-4386-b09a-887d05d194ac", - "Body" : "{\n \"name\": \"0b4756c4-bb98-7d4f-b981-3a622e6e4f29\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:11.0433333Z\"\n }", + "x-ms-request-id" : "40d5e375-a221-4827-9adc-3cf91d79b3f2", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042\",\n \"location\": \"centralus\",\n \"name\": \"aks69811042\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns926852\",\n \"fqdn\": \"mp1dns926852-1e05d123.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns926852-1e05d123.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0037358\",\n \"count\": 3,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1015729\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 3,\n \"minCount\": 1,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap293068f\",\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 10,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg27921_aks69811042_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg27921_aks69811042_centralus/providers/Microsoft.Network/publicIPAddresses/31120770-8313-40bf-8f81-df3db8816ca6\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg27921_aks69811042_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks69811042-agentpool\",\n \"clientId\": \"523ba390-ef67-41fb-8fb5-7bdd09a419d9\",\n \"objectId\": \"67373636-2f1c-436e-8f0d-f0ab0d6aefb2\"\n }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"6af4b930-b8d4-4689-a667-c919022887c2\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c456470b-98bb-4f7d-b981-3a622e6e4f29?api-version=2017-08-31", + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042/listClusterAdminCredential?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5d2e1a61-22bc-4bd8-b162-765c7743ac52" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e6df515e-43de-4df5-9ae3-0d17a68a84a7", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "170", + "content-length" : "13025", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f3706611-817a-4051-9cb3-2370a2f71d7d", - "Date" : "Fri, 08 Apr 2022 08:36:43 GMT", + "x-ms-correlation-request-id" : "a809cf75-c926-45ca-8404-acba131c15cc", + "Date" : "Mon, 25 Jul 2022 04:01:57 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083643Z:f3706611-817a-4051-9cb3-2370a2f71d7d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040158Z:a809cf75-c926-45ca-8404-acba131c15cc", "Expires" : "-1", - "x-ms-request-id" : "e9afcda3-92e9-40e7-bcf9-a7b746589e69", - "Body" : "{\n \"name\": \"0b4756c4-bb98-7d4f-b981-3a622e6e4f29\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:35:11.0433333Z\",\n \"endTime\": \"2022-04-08T08:36:19.9320577Z\"\n }", + "x-ms-request-id" : "762a05c3-114b-4ab7-a3b4-5122d2292cbe", + "Body" : "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterAdmin\",\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSV21SMWVIZHNSWGRzZVZVelNFczVOamhEYzAwcmFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUV3BCTTAxcVZYZE5lbEV4VFdwU1lVZEJPSGxOUkZWNVRVUmplVTVVUVhwT1ZGVjVUa1p2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSWUNrSlVRak5vTkRaU2VVVm9lRVp6Y0ZKSlFubE5jbGQ2T1dsTldUZHBVRVZvVGtWemVUZFBhRVpETTJrM1ZsUlBZM0UxV2xScWFtNTBZbXBJU0c5R1ZHVUtRa2REZUdwbGNpdHlWMUZuYVVKNlMwZGlTbmRwUmtSWlZYTTBjbmxGZFZOcGFtb3ZaWFJEZFdSb1VXb3lZMWRoVmt0ak0wTTBjalZVWjNKWFIyaFpkZ3BKVVdobU1HMW5hWFYwYmpodmRFaGpVRGwzVUhsWlNsUk1lR0Z2YkhNdmJHNTFXU3RQZVVndmVHUjJTV3BJVjNKRlVVWkdNV3BHZVZSdVR6RnZRbWxUQ25OTVUwcHZjblJ2UlhBd1VGRkxhMnBOWlVsU05rTkdia1JaTTB4SE5VMXFPVEpEUnpWR1VtdGhZVUZFYlZFelJVdzBWVUphYVZKUVlYQk9hM2xPYUcwS01XeHZhbE5KTTNKT2EycGlkMFJ6VjJOWk5FNTRXRk00V2tseU5GZEVMMkpyZFhWUmFuSlpXREV5VTJWa1NsbE5aV2xITjFjcksweG9ZWGRNYUdWTFNncE5XVFZuUm1oMmJFVnFOVnBsTURGWFdsTmtZalp3TTI5T1QxcEVRWE5MU0VZelkzbEZjbE5VZEU1YWVqaDJWalJHV1VsSGVHdGxPR0V6UkZsdWQwRkxDa0p6VVVoM1JGa3dXV3R2YmtJMlQycEZUMjlTUlZkdEwyZHhUemd4YzNsUk1ETk1WemRhYlhOQlVuUm5jMDlYT0dkeE1IaFNkamg1VW1Wckx6bFNkRkFLVW5Oa1FrcDNZMUZ1YVN0VVZYWlBPVkZSVnpsNGIwbDFWa0phVkVOcVYwdGtPRThyU21NclJ5dE1VeXQ1S3l0TlNITk5VRFZIVG5ZeGRXRjFjVVo2V2dwVlRWWlVlWGxSVDJ0YWMzcHBVa1F6V2tkNmNXUjJaamRCUTA1cU5XWjFaRU53TDIwMVVuRnBhR1ZLVGxwUlVHbHRkbTlQYTJWMWIyRmhObmt2WjAxbENrTnNSVGh2VW1SbUsyWjFVSFJzV1d4MlNrTTVabmcwWjNWbGJtZ3ZTRXRrSzBOd1JEaFRhV2d3ZDFSS2MwbDRVVkY2YW5ack1IQllSWFZFY0RCQ1ZUQUtRVEZwWWt4VU5tSk1NbTVCS3pkMWFubHlWQzlFWjJwRFUxRjNZV2xUYkdWWWVrVjBLMlV5Y21wM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWNFdYaERSbVpNVEhWUk0wdzFRMVpCQ2pGWlVXbHJTMEpEYTBGTmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGQ00ySjFZbWh3YUdGRk1HaE1kVlUyU2poa2VXeFphbUpKZDJvS05XRkJlbXRSYXl0VlVtMVBiMUl3ZW05MWMwcFRPU3RWZVZoT016SnRaa0k1V21aT2FHTllSU3RXU1RKVWJFdFhlbGRuV25SclNVRkdkbXAzYzNSUFVncGtlVEpXZVd4S2JtNHZZMlp6VTFoNk4wTTRSblp2YlROclkzRnljM05WYkVnd1FVSlZPR3hJUkROa2VrRjFjVXRQZFhWVWRsTmhTWHBJVG14MFRFVkpDbE5hVGxZdlVTc3lhSEJSUVhWWE9YaFdUVVI2YkU1TGMyVkZWelJFYnpJelZ6SmFiV3gyUjNkc09FbzNjak5zUTJWblkwWlhiWHBWUlV0S04xZERRMUVLUTBWa1REWlBZVTVhVUdNcmRUVXJSbkJKWkZKQ0sxQkpOazVIWTI5eldUVkNaMUpKYjI1MVYwVXdOVFZ3U0d0WGJFaEVjakUwVVZKdmIyUkZaVEUzYUFwVU4xVnJiVTE0WjA1bk4zWkVjMVVyUVdZeGJWSnZiRVo0Y1hsSlJYa3dha1Z5ZUZFNGRVbzBUV0pZZVRoTVZYVlJNbnBUYldST1ptWm9hbHBDVlZSTkNuWmpTV2d6V0RocU56Vk5XVGxJVjJKdVVHaGpibTlWV25BMVQzTnlTM1I1WTBoMUwwUXhjVUY1YzJGcldUVk9ZbVJYTjJ3eE0wNW9jV2wwV1dkNE1YSUtkMU5sZGxrNEswc3JMemR4VFRKRk5tTldhRU0yY0hwUE5XOW5TMlJQT1doMVVYSXhLM2RCTURSbVIxVkRSV3hrVGtjckszVkpaV2RNUzJGWWJXTk9kd3BxTkhCclVUWTJaSHBtWldoS1pHcENUelZRZUhCUE9YcFZNV2h4TVd0bFZHWkZTbmxGYldVeVEwTkNUR2RGUVU1alZVcFZNbEJHVVdSU056WlljRzFNQ210VmNWZFFWVGwxVm1NeE1VaEhNMlV4Y1VWWGFFUlhOalJZVFROamMwNVVWRnB5WmxGVk5XTnpXbFp5S3pRek5IZzBSRGxGUldaSVRqaHlaak5oU0dNS09XZExWaXMyVGxsQ1kyTkljV3RXTDFBeldDdG5ZMVJoV1dWR1VGSjRObTVJYlNzd1MwRlNaM2RpTVVWTVluQjFORE4xUVhZM2RUWklTRVpVTjNrcldBbzRaREpyYjBOR1NEZDNSMUJNUzNneENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL21wMWRuczkyNjg1Mi0xZTA1ZDEyMy5oY3AuY2VudHJhbHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBha3M2OTgxMTA0Mgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogYWtzNjk4MTEwNDIKICAgIHVzZXI6IGNsdXN0ZXJBZG1pbl9qYXZhYWNzcmcyNzkyMV9ha3M2OTgxMTA0MgogIG5hbWU6IGFrczY5ODExMDQyCmN1cnJlbnQtY29udGV4dDogYWtzNjk4MTEwNDIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyQWRtaW5famF2YWFjc3JnMjc5MjFfYWtzNjk4MTEwNDIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJWV2RxVmpoSmRIRkRibEJLWWs5b09HTlhkbWxFVkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRXcEJNMDFxVlhkTmVsRXhUV3BTWVVaM01IbE9SRUV6VFdwVmQwMTZWVEZOYWxKaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJXVGxCSmFERTFkMjVJVG14cWVtWlJWazVYYlZNS1JEZzFVVzQxY0RCc1VsUkZPREpQTlU1UFpEQjRUR3d4WVRGbFUydGtiRkJvVUVkb09FZEZjRVJNYVRjelQwdFhjRW81VDBjNVZDOUhWVzFXTVZac1R3cE5hMFpMV0ZwaFJtNHpjeTlhZDBvMkwwOXpiMUZrTUUxTVpVSnZNRTQzVEN0cGQzWkNjRFY0T1ZZNWVsWnlSbXRLYm5BemVFRjRZMjV3Y0c5R1ZXUTNDbHBXUVdKRFZWZGFOR1JKV25kUk5ESk9jMk55ZWk5TFNtNWtNVE5QUkdZeGNFMXllRU5aZW1wRGJVVjVTVk5IZUdsVmJqVmphekl4YXpGbUwxUkpRM2NLUVd4c1NsZHBPRFpyWWs5R05IWjVTVGxZWkhGdkwyeFpjRlZLUzBsVFoyOUpiMnRUYnpNM05UQnpObXhRZW1kVk1EY3JRMm8xZEZKNldYQnVhVlJZVVFwS1RtcFJORUZ0WW1wU1VFSlJNMDVJWm5WalMzQkVPVWh5U21GeVowOUlXV050YlZwWFoyMXVlWFY0T1dJMUsza3dWRE14ZFdGMlZGTnJWV1V4Y3pCTkNpOVpVMkU0UzFSdWJuTXhVVTVZWVRRd2FEZFRjR2wzYUZoMUsxVlJZMGhhY21aVGRqRkNZWEp1ZWxGdVdIWXZWRkpNYlZSVE9WQkJWRVl6V0dOb1ZFSUtabGRzWXpSWFNHZFJaVk16U0hwclMwTXZjMEYzYTA5S1NIbGhXV2RpUVdsa2RHcDFUVGRXVFZGWlNsUmtSbmd5YTFwRUwzTTNZVVpVTDNkQmEwUmpSZ3BTWVRaRVJIWm9SbXczY0RkS2VuUjVibVowY3paWlVIQTVWVmRVZFdrNFpHSkhVR3cwYVRkMWR6WmxTRTVRUjNCQ2VUWXpWVTlNTUV4aWMxSkxiazlaQ2tKTE0xVXpjbkZoUjFWT1IzYzNUMkpSVTNvM1NtaEVWa3A1ZUZKSFNUQTBSMHM0U0dGSVUyUkRjRFYwYzJoM1MzSkxja0ZITWtWaU0zVjROMUpaVjNRS1oxaFRjVFEyVWxKQk5FWlJXbE14VDFoQmVrZ3JiM3BCTW5SSk1HbE5jWFJrYVhKMGJ5dDRTbk16VW10NVR6ZFhOemR6VlhJcmRXRXJXa3N5V21Sb0x3cFNTbkpVYlRsWVNXRjNiblpyZDIweVZIVm9WVWRSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbFJHYWtWSlZqaHpkVFVLUkdOMmEwcFZSRlpvUTB0UmIwVkxVVUY2UVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZETlVsck1XWlFPVkV3ZG1wRVdpOXJXWGswYkFwcGNWbHRZa3NyY1ZSS05GaEpiRXhUV2toWWRXaFZhVW96YzNaaGJrSjZaVGxOY0RaMFEwbHBMMmN2ZGxsTk5rSkVjMkV3T1VsUWMybHdOalJ6Vm1WRkNsSk9ZbGR3V0dSdGNYUjZNMkZJUTNkUlVTODRjMUUxYzJSdGRHOWxhbGhrYlZWS1lqVTFWek5wTVc1NWFteHRkazlVTVdaelRsWmpjVTl0ZUhOV09VSUtiRUpKWVdRM1NrMXZaWG80WWxwUUsweDFRemxaUkdrd1NVSm5jV0ZTUmpkMFZsSnVNRTlZVTFSaWJtcHlORlF2T0ZVNU1tNDNTV3hJTWl0TFlVSmxNQW92YVdoRFdVWTFVV2hZTVVKWVZWRkhaUzl0TUV4QlpsWnVkR1Z0TXpKbVZsZE5MM0JRTmt0TVJXdFVkbU5uZUVkaVZEQnlWbGx1VFVzMlNXOXBOeXM0Q2s1UU9UTTJhMEpoUkRBck0zWndTVk5MVkRGYVRFMVZhbkIxTkRWUU5rWjZkWFU0YXpKaFZWSnNiSEE0VEZRelVrMURkakZ6Wm14VFIyRTROVmRhVjFnS1JrNTRURFl5YWxCemVYZG5SM3BoTTNsbUwwcHRjV3QzWkhsUlVVUlNhRWhNTVVSWVZYWlBSRk5aZUZsVlRWcDROR0pRYmpVclIyOWlhMnhMZG1KbWNBcG9jVE15WkRGd1dEVlBXSFpKWmtwc1NrWk9kbVJrUm5SUVdUbENUVk5wWjBZMU0zWjVUSEpNYkdSS1FpdEZhRGhMVUU5WWFHNW1ka3BsU1VGcmNuQjJDbmxRYmxGSlEwYzVOa3hVVVZkaWMzRnpWWGhuUlhjMWJXWlJSMlZIYVV0NmFuRk5URlZRTWtONVZ6SlRWVUk0WjNkaFpGcFhNR28yTDJSVVJtVjFLMm9LUmpOdVZVZHJabEZtV205TGNYSnVibFZFVFZGQmFuUjJPVWhTU25oYWRsQm9hVFkyUlhKa2RrUk1NU3RrYW1oM05XSldNV3RwVXk5bFoxQk5ORFJsY0FwdGVVcDBTMEkxUzJZclVpdEdPR1ZEUWpoelZFaFRZVWRuVDFsTldESlRUMHhOZFVoUE1rbFdTMHBxU1hsbU1HbDZaMUEzVjBKTmFWVXdkV2xCWW1OMENqUTNOMFI1Vmt0UFlWbDVZMHhtUkhneldtdE5jaXN3UFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCTVZSVWVVbGtaV05LZUhwYVdUZ3pNRVpVVm5Cclp5OVBWVW9yWVdSS1ZWVjRVRTVxZFZSVWJtUk5VelZrVjNSWUNtdHdTRnBVTkZSNGIyWkNhRXRSZVRSMU9YcHBiSEZUWmxSb2RsVXZlR3hLYkdSV1dsUnFTa0pUYkRKWGFGbzVOMUF5WTBObGRucHlTMFZJWkVSRE0yY0tZVTVFWlhrdmIzTk1kMkZsWTJaV1ptTXhZWGhhUTFvMlpEaFJUVmhLTm1GaFFsWklaVEpXVVVkM2JFWnRaVWhUUjJORlQwNXFZa2hMT0M5NWFWb3paQXBrZW1jek9XRlVTemhSYlUwMGQzQm9UV2xGYUhOWmJFb3JXRXBPZEZwT1dDOHdlVUZ6UVVwYVUxWnZkazl3UjNwb1pVdzRhVkJXTTJGeFVEVlhTMVpEQ2xOcFJXOUxRMHRLUlhGT0t5dGtURTl3VkRnMFJrNVBMMmR2SzJKVll6SkxXalJyTVRCRFZGa3dUMEZLYlRRd1ZIZFZUbnBTTXpkdVEzRlJMMUkyZVZjS2NUUkVhREpJU25CdFZtOUtjRGh5YzJaWEsyWnpkRVU1T1dKdGNqQXdjRVpJZEdKT1JGQXlSVzEyUTJzMU5UZE9WVVJXTW5WT1NXVXdjVmx6U1ZZM2RncHNSVWhDTW1Fek1ISTVVVmR4TlRnd1NqRTNMekF3VXpWck1IWlVkMFY0WkRFelNWVjNXREZ3V0U5R2FEUkZTR3QwZURnMVEyZDJOMEZOU2tScFVqaHRDbTFKUjNkSmJtSlpOMnBQTVZSRlIwTlZNMUpqWkhCSFVTODNUekpvVlM4NFFVcEJNMEpWVjNWbmR6YzBVbHBsTm1WNVl6ZGpjRE0zWWs5dFJEWm1Wa1lLYXpkdmRraFhlR28xWlVsMU4zTlBibWg2VkhoeFVXTjFkREZFYVRsRE1qZEZVM0I2YlVGVGRERk9Oalp0YUd4RVVuTlBlbTB3UlhNcmVWbFJNVk5qY3dwVlVtbE9UMEpwZGtJeWFEQnVVWEZsWW1KSlkwTnhlWEYzUW5Sb1J6azNjMlV3VjBaeVdVWXdjWFZQYTFWUlQwSlZSMVYwVkd4M1RYZ3ZjVTEzVG5KVENrNUpha3R5V0ZseE4yRlFjMU5pVGpCYVRXcDFNWFVyTjBaTEwzSnRkbTFUZEcxWVdXWXdVMkV3TlhaV2VVZHpTamMxVFVwMGF6ZHZWa0pyUTBGM1JVRUtRVkZMUTBGblFYSnFOSFpDUjJ4d1VFc3paa2hEYm1STFRtZFhRakJFVkhCRFFrdzBjWFJVTldkSWFuQnBSVTlhSzJVcmFXRXZTVk5uYWxsVFNubHNkZ3BYY25WbVRsaG5keXRsY0ZwMVVIcE1ZWEZvVlVSdmFWbFZiVlJUYzNwWVpubGpkRTVPWXpWeGJqbE9SRFphVkhGUWNuRTFSMFUxTTFjclYwcGhNak5JQ214bFUyUm9MMHRsYTBOSWFWRnVTbGhOWm10TmJUSk5WWHBRVVhvMEwyc3ZOMDQ0U213M1ptcG9lWGQxU3pOaU5raHdlVUpRV0ROWlRTdGFURVJCV21rS2VGQTNRMFJKWW1KU1UxZHlUR3NyY3pWWmRUTkJORzVDU1ZwS1VsazRiREpWVkZSQ1Jrc3ZTRTVTT0M5d1JtUnVkRWRVYm14aGR6ZHNVbUYwVkVwRlVRb3JPVXRtYmtaRFdVNXdhSGQxVDNGNE9VVkdXbkl4VFU0MFJucGpWVUZ5TUdOcVNFVldSV2x4TDJWeU5YVndXR1FyVEhwMFIyWm5WM2hzYUdWaWRFaG5DbWRUVEdvME0xQTJSazl3WlVWS05VZE1SVGxOT1dsdE1VdFdTSFppUVdScFdIZGpLMnd3ZFd0cWNVaFlNMHAzZUdSQmIycGxNbE5GVlVKblJFeFNWWElLTVZORU0xWm1lRGRWTW5aQlQyZG1Wa1JTYWt3NFEyUTNRWEZHVW5KaFVGUlZiVXAxZFZKeFVWSjFNRzVXTVd4eWNHbFBORU5zV2toQ1JGcFhhR2RHT0Fwa1JTOHljbnBUYTFKdU0wOUtRMFJzT1N0Q1VYTlFVSFJ1WjA1alRtNTVTVWcxYUdWbE5VbFpWbWxyVW5oalpHY3lNRmgwU0c1Nk4wWm5jalJGU0hjeENuWmxXVTVSWjNkQ1dYZENkMmxWU1U0eFRFdGlSbkl5Wm1WRFZuZHpia3RZYlZaUFVucFZPSGhKWTJzM1luZzNiR3d2Ym1wWmMwWldRbFZTYVV4a1Fpc0tjRGhQVGs5MWFGWnFLMkpyWjFOMGFUZDZWemg1Ym1wMVJWUkxLemsxVVdKSGFHcDJiWG80T1ZaSGRrWkpXRUoxVGxZeE1UVjNiVVpGVGxFeE4ydHBTUXB2ZGpsTlRVdFZaMjVKTVRsdmNFeExObGhFY0VkMVJGWk9abEpxZERObFEwMU9WbGswUWxOV1MwRXlkek5pUlhWQlVVdERRVkZGUVRkMFZsbFBhSFpsQ2pOTlUxSXZSblp5U2xodmFTOW9RM2hVVEd4VFZWVjFTR05wUzBGd2QxaEpXVVV4ZGpkNGQyUXlObEpqVURCM09XRm1hV3h6ZUd0UGNHbHZPVVJYZEZvS2JpOWhWWFF5UVN0UlFUY3pVblZVYjBGUmF6UkxiV0p2U2tOWmMwUnRVa3h1ZVcxSk4zSnZRWE5tTkROMlFtZzNiSEp6ZVhGQ2IwODBMMWxQUVRJemVBcDFTM0ExTTBWTVMzbEdOVGQ2ZVU1NlptcG9ka0pRVW5kRWRGUkNla0pGV0d4RllXUlhWWGxhUld4NWJqazJOMU56UVRnMWFVOTFPVVJwYUhWQ2NFMVlDalZITjBabk5GcDBPR2t3UW1sME4ySjZkbkZJZW5OeksyZEtabFlyTjBwMGFVeE1lWFUxUzNCMGExTldZVkZNVTFsclMyNHdaMjVpYUZWTkwxSlZhbXdLVWxWTmJ6UmxhRUZWWWpkd2NXcEhVSGRFZEZWd2NFRnlaVUZrYWtGeldFZzVZU3RMTkZSbmNHMVNPVEk0VmxFMVRqbGpRWEF2ZFhoM2FWUnljamRrUXdvdlNtRkRRWEEwTUdGV1dXTTBVVXREUVZGRlFUVkpaMUJRVFhScFRESlBVRlp5Um1acGNTOHpRM0ZqY1hKa1lYSlpkbTkwYkUxelJVMVFNRFZvTkRWVUNrZHZLMmhyWTFFeFJrMUVXa0VyWTBkNldqaDVUM1JQVmtKYWJWZGlkbXR2YmtORVpWaDBSR1ZxVEZGTllWUlZSU3N6VDNsRk5HVmxTVlZHV1VsNU5rMEtZMDQyTDNSb1JGcExUV3RNVmk5alUxVkpPSE5oWjNKR1ZqSlVhMUZrZEhWS2JURTBPRWRXUW1kUlpVNXNlamRUWTBsUWQweFZTMDFCTkd3cmVIcEpUQXByUnpsWk9WSXhOMVZTWWtWMlZEaG9SRk5pWldOa2JrRjBSRzlpTUN0eVZIWTFNVEZEVVRac1FXaHZjVU12YTNrNWR5czBOMnRRV1dOUVdIZHlTekU1Q2tKbWJsUXdObE4xTXpGTFpqVnNSMm94T0RKc1RTdDNPRmR0YVV0M1FTOW5VSEI2U0haS1RtdEZjRWxrV25WM2ExcG5kMGswY0d4V1lWaERUVEZOTUUwS1YweFJVM2d2YkU4d1ZqWk5OMnhJUVdwRWVtMVlaVWhTYkdOdGRHY3JiVmx5ZUVnMU1HdExiVTlSUzBOQlVVSTJha2xhUlRaMVFXdE1PR3R2TUVwSFRRcElWM1YyUzJsdFVEQk9abTlXZGxWa1NEUTRZMHBPT1RSaGMwOTNNR0ZEVVdZemJrZEZVSHBEVkRRdlYyOXNhbVE0YmxvMVYwVm5XWGxLU0hWMGFtVTJDamQyVERkTllVaExVbXQ2U0d4U05IZDZiRll3TTFGdVoyeGFUbkI1TkRsdWVHRlpZbTluVW05b05ESnhja0pTVURkSlYzTlNUa2gyYVRadlZERXdTSFVLU20wd2NFVkhka2R5U0ZweEswaEpNMkZtZHpOR1pEUm1aVEI0Y0Roa0wzQnBRbTAwUVdORGFVUnRNMkpVTDNOdFRrdERaMUozU0ZCbFVHUnZWV0ZhUVFwNVl6aHplbk5ZUkVsMFNtdDZaVEEwVm5KRE5rRm5aM0ZUU1djNGNucHFaVU5pYzFGemVETTBlRmhOVUZZelpVbHVZMVIwWWtWWldXdERiQ3RKV1c4dkNsbzVURWRRWTBGb1VqRkNZMVl3VnpKNFZFOU5la3RsV2pkWlZUVnZNMUJWTW10NFVqaEpSMkp2V0hJMGRIcEhla05RWWxkd2VGbzRVRlUxWjNkWlZISUtUMEZEUWtGdlNVSkJVVU5SUkhKVFRWQnBha2RrY0hkRmNXZHlkMEZpZUZsdGMyWnphbFZYT0ZCeVp6ZzRlbnBTU2swM0wwSkdhV1ZvWVhaNmJIaDBaUW95WWtoNlNUZzNSMFF6VVRaWlQxZDJaMmRIZVUxd00wZDZXRVptYXpSeE1sb3dhbkpwVDBJM1NWcE5MMlpHTTFJeVREaFhZbTFHV2xKU1JGVldRWEZSQ2tONWREZGFLMUJFY0VoNk5qSTBPVXRhS3pjM1JreGtObmRqWkdGM2JteHZVRXh4YTJaS1ZuSkdPRUoxZURKUk4xWndSREJSUkdaS09VZGhMMGhNV2k4S2FIcHhPV3RQTTJ0MlNIVTRhVTlrVVhST1ExWTFXa1pXVjBsNFQwTlZNRFkxWjA1aVUwNXpNMjlzUjFFMFNFOTJkMVpxVm1kUlkzVnVVekZMV0V0V1pncFpWbGx4WlZsM2RXNVNUbTFvTmxGRU1tRkxaRXd5VkUxRk1HaFdUbmhRSzBsT01HNDBMMDlPTkVWbk5XcDVObTlMUzNGa0sybFBkVkowVlZBclltZFdDbWQxVTFReGFsUnhUV1p0Um1STVVVcEdMMmx3UkhKbFVYQkhVVEpvYnpCQ1FXOUpRa0ZSUTJkU1JtZEVlRUZPWnpsNldIaG5XbE5WWkdaSlJISnRZMndLUms4eEwySm5WbE5PU25ocFQzUmxUMHRKU1d4NmVsaGFlWEk1YlVwRGFtUkxhVkYzVjJsbFVHeEdjMDFsVFVoWGJrbHZVRFkxVTJobGNXTmlRMUZJT1FvNFlVd3dTMHRMT0ZFclNXaGxXako2U0RsSVFUTldLemw0VUd0cFRIUklhVEk0TkRCMVIxZDBiV1phY0haaGFraDZNVzFHWkdSamRqVnNjSGRNT1RWc0NtdHpjWGxYVjNKQ09GcGhVMFZoY25Wc2MxZGpOekJsV1VoMkt6WmthV3A2UVV0bk5tUjFRMUZVT1hjeldIZzFPV0prV0VKaVJsUTJkRVJvTDFFd1kwTUtWVEJuVVVOTlpVZ3pVRGxOTVRJME0xTkhTMFJVTm1ObFRFTnVOR05wWVRRNU9WVXdiMlp2ZDNaTFkxSnBOVVppTUhOR2RrWXhXVGh5WW1KTldIWTFkZ3BGYVdaU1EwWm1ZbTlqVjJwV1pVMXhOVE5SZFVjNVkxWkdia1ExVVU5NlVWZHlLekUyUkU5Q1ZGQkhjbVJuTUVOaFJqTTRTbWx5Y2tZMmFsWUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogOGY1NzhlN2YyMzlhMmE5YTdmMzhmYzQ1OGM3Y2I3YjdiY2JlN2M4MjUxMzVlNWM5ZGZkM2YwMDExZmI1OWZiNGJhZjdkNTNmNGZmYmQ2Y2M2ZWUyOGMwZTc5OWUwMTdkNzNkYjVmYWEyNTI3OTRhZDE1YTBhYTFhOWE3MzMyMGYK\"\n }\n ]\n }", "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1?api-version=2022-04-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "b576f927-2327-41fd-9314-02503c32bba2" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "685766ac-48f4-4367-9d5d-e26961541621", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "4677", + "content-length" : "5043", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", - "x-ms-correlation-request-id" : "eca5a7f1-fcf1-4175-8e97-665ed98c161f", - "Date" : "Fri, 08 Apr 2022 08:36:44 GMT", + "x-ms-correlation-request-id" : "6d72ee57-d3bd-4e39-bd03-023f8ce2f217", + "Date" : "Mon, 25 Jul 2022 04:02:06 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083644Z:eca5a7f1-fcf1-4175-8e97-665ed98c161f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040206Z:6d72ee57-d3bd-4e39-bd03-023f8ce2f217", "Expires" : "-1", - "x-ms-request-id" : "7f720bef-bc1c-40a4-8f0c-a866fefa3d88", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1\",\n \"location\": \"centralus\",\n \"name\": \"aks444194f1\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns514264\",\n \"fqdn\": \"mp1dns514264-f293a8e7.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns514264-f293a8e7.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap043798a\",\n \"count\": 3,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1936710\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap227971a\",\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 10,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg45020_aks444194f1_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg45020_aks444194f1_centralus/providers/Microsoft.Network/publicIPAddresses/930d0d8c-3d9f-4d57-b5eb-a0f4f7a2ed03\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg45020_aks444194f1_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks444194f1-agentpool\",\n \"clientId\": \"493b6135-f533-45c7-9328-5c7a9b78ef76\",\n \"objectId\": \"e3889296-a6a5-44b8-b596-6bff6719d5bf\"\n }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"ef4ca008-a750-4f46-ac7b-159ac02a9015\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/155c31d7-7351-41f0-b21c-945298a1824b?api-version=2017-08-31", + "x-ms-request-id" : "155c31d7-7351-41f0-b21c-945298a1824b", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042\",\n \"location\": \"centralus\",\n \"name\": \"aks69811042\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns926852\",\n \"fqdn\": \"mp1dns926852-1e05d123.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns926852-1e05d123.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0037358\",\n \"count\": 3,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1015729\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap293068f\",\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 10,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg27921_aks69811042_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg27921_aks69811042_centralus/providers/Microsoft.Network/publicIPAddresses/31120770-8313-40bf-8f81-df3db8816ca6\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg27921_aks69811042_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks69811042-agentpool\",\n \"clientId\": \"523ba390-ef67-41fb-8fb5-7bdd09a419d9\",\n \"objectId\": \"67373636-2f1c-436e-8f0d-f0ab0d6aefb2\"\n }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"6af4b930-b8d4-4689-a667-c919022887c2\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1/agentPools/ap1936710?api-version=2022-04-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/155c31d7-7351-41f0-b21c-945298a1824b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "9d16e6bb-b015-4d82-82ca-efcaa38b391d", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "99d13c30-8519-4f5f-b955-ba14753063bc" }, "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "c9838e08-2b45-4b24-976f-144ef753461b", - "Date" : "Fri, 08 Apr 2022 08:36:44 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "2f2dfce3-1f7c-4616-b8dc-f1a10b5c11d8", + "Date" : "Mon, 25 Jul 2022 04:02:36 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083645Z:c9838e08-2b45-4b24-976f-144ef753461b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040236Z:2f2dfce3-1f7c-4616-b8dc-f1a10b5c11d8", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/76f94bf1-87fa-407f-8cae-221fbe660fac?api-version=2017-08-31", - "x-ms-request-id" : "76f94bf1-87fa-407f-8cae-221fbe660fac", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/76f94bf1-87fa-407f-8cae-221fbe660fac?api-version=2017-08-31" + "x-ms-request-id" : "0634db95-95d6-4bc3-aa65-c02dc35ca996", + "Body" : "{\n \"name\": \"d7315c15-5173-f041-b21c-945298a1824b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:03.5966666Z\"\n }", + "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1/agentPools/ap227971a?api-version=2022-04-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/155c31d7-7351-41f0-b21c-945298a1824b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "fa0827e5-d4a5-47fa-b685-5073fa1eed4b", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "cf134b60-4c4e-4662-aa1c-541b14e3d67b" }, "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "7693dab3-31bb-4531-9fff-54b1e462716a", - "Date" : "Fri, 08 Apr 2022 08:36:44 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "ad7047bc-a458-4fb3-87e5-c2aba727dfac", + "Date" : "Mon, 25 Jul 2022 04:03:06 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083645Z:7693dab3-31bb-4531-9fff-54b1e462716a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040307Z:ad7047bc-a458-4fb3-87e5-c2aba727dfac", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/94aeb6f1-9b5e-4e10-82c8-3db17c6a6a4f?api-version=2017-08-31", - "x-ms-request-id" : "94aeb6f1-9b5e-4e10-82c8-3db17c6a6a4f", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/94aeb6f1-9b5e-4e10-82c8-3db17c6a6a4f?api-version=2017-08-31" + "x-ms-request-id" : "d1b50f49-b664-461d-a02a-c6fe5994452b", + "Body" : "{\n \"name\": \"d7315c15-5173-f041-b21c-945298a1824b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:03.5966666Z\"\n }", + "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1/agentPools/ap2804779?api-version=2022-04-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/155c31d7-7351-41f0-b21c-945298a1824b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "29e86a9c-a169-4174-a51d-cbf171f3abd6", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d206668b-6ca1-404b-9959-052dd2c1125c" }, "Response" : { - "content-length" : "775", + "content-length" : "170", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "94d1d65c-5184-45b7-91fb-e8867039681e", - "Date" : "Fri, 08 Apr 2022 08:36:47 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "0596975b-fe1f-444a-b6f9-37a391c9023e", + "Date" : "Mon, 25 Jul 2022 04:03:36 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083648Z:94d1d65c-5184-45b7-91fb-e8867039681e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040337Z:0596975b-fe1f-444a-b6f9-37a391c9023e", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/f1f62717-b41d-41a0-9c57-bc91e84498d9?api-version=2017-08-31", - "x-ms-request-id" : "f1f62717-b41d-41a0-9c57-bc91e84498d9", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1/agentPools/ap2804779\",\n \"name\": \"ap2804779\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n }", + "x-ms-request-id" : "6c96dde1-5d2d-4d21-8141-7ea57824225c", + "Body" : "{\n \"name\": \"d7315c15-5173-f041-b21c-945298a1824b\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T04:02:03.5966666Z\",\n \"endTime\": \"2022-07-25T04:03:29.6365546Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/76f94bf1-87fa-407f-8cae-221fbe660fac?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8c40cdbe-8592-4b39-b503-d386e2f62fe3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0b354b26-6b92-4055-bb90-5d2be1cbb955" }, "Response" : { - "content-length" : "121", + "content-length" : "5047", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "x-ms-correlation-request-id" : "7988a935-38b6-4180-bdc5-4468f26ab5ec", - "Date" : "Fri, 08 Apr 2022 08:37:14 GMT", + "x-ms-correlation-request-id" : "17a45337-cad5-45be-97a4-dc2b3beeacb1", + "Date" : "Mon, 25 Jul 2022 04:03:37 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083715Z:7988a935-38b6-4180-bdc5-4468f26ab5ec", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040338Z:17a45337-cad5-45be-97a4-dc2b3beeacb1", "Expires" : "-1", - "x-ms-request-id" : "e243dd58-6c23-4192-ba13-6a1811a0a4a0", - "Body" : "{\n \"name\": \"f14bf976-fa87-7f40-8cae-221fbe660fac\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:36:44.92Z\"\n }", + "x-ms-request-id" : "6e68e742-ec16-40f3-b769-0c80540a3a10", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042\",\n \"location\": \"centralus\",\n \"name\": \"aks69811042\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns926852\",\n \"fqdn\": \"mp1dns926852-1e05d123.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns926852-1e05d123.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0037358\",\n \"count\": 3,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1015729\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap293068f\",\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 10,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg27921_aks69811042_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg27921_aks69811042_centralus/providers/Microsoft.Network/publicIPAddresses/31120770-8313-40bf-8f81-df3db8816ca6\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg27921_aks69811042_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks69811042-agentpool\",\n \"clientId\": \"523ba390-ef67-41fb-8fb5-7bdd09a419d9\",\n \"objectId\": \"67373636-2f1c-436e-8f0d-f0ab0d6aefb2\"\n }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"6af4b930-b8d4-4689-a667-c919022887c2\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/94aeb6f1-9b5e-4e10-82c8-3db17c6a6a4f?api-version=2017-08-31", + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042/agentPools/ap293068f?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "964255d1-ee95-4920-bed4-d8ead4c39ef6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "be5f36d9-0b2f-4cf9-bc4a-b2c77e7e1adb", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "170", + "content-length" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c78ead19-8560-4779-abba-2abcf417784f", - "Date" : "Fri, 08 Apr 2022 08:37:14 GMT", + "StatusCode" : "202", + "x-ms-correlation-request-id" : "e747da9b-fc51-404a-8dd9-271e0c5bd653", + "Date" : "Mon, 25 Jul 2022 04:03:38 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083715Z:c78ead19-8560-4779-abba-2abcf417784f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040338Z:e747da9b-fc51-404a-8dd9-271e0c5bd653", "Expires" : "-1", - "x-ms-request-id" : "a452fe02-956d-4db3-9ad5-e4c780095f49", - "Body" : "{\n \"name\": \"f1b6ae94-5e9b-104e-82c8-3db17c6a6a4f\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:36:44.9233333Z\",\n \"endTime\": \"2022-04-08T08:37:00.6803233Z\"\n }", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/e5c90d7e-1f0c-4b3c-a67b-d6c4b8fa9d9f?api-version=2017-08-31", + "x-ms-request-id" : "e5c90d7e-1f0c-4b3c-a67b-d6c4b8fa9d9f", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/e5c90d7e-1f0c-4b3c-a67b-d6c4b8fa9d9f?api-version=2017-08-31" + }, + "Exception" : null + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042/agentPools/ap1015729?api-version=2022-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "25115d53-ce6b-480a-91bb-a377aa75adc9", "Content-Type" : "application/json" }, + "Response" : { + "content-length" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "StatusCode" : "202", + "x-ms-correlation-request-id" : "299ffc4b-c4d9-4cd8-8d5b-c1a3d181a45a", + "Date" : "Mon, 25 Jul 2022 04:03:38 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040338Z:299ffc4b-c4d9-4cd8-8d5b-c1a3d181a45a", + "Expires" : "-1", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/572f249d-b752-49c6-8791-6c95aef52b51?api-version=2017-08-31", + "x-ms-request-id" : "572f249d-b752-49c6-8791-6c95aef52b51", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/572f249d-b752-49c6-8791-6c95aef52b51?api-version=2017-08-31" + }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/94aeb6f1-9b5e-4e10-82c8-3db17c6a6a4f?api-version=2017-08-31", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042/agentPools/ap2944537?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "08f72f4e-3a33-4ad0-b773-9a420d326bde" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9f08711d-b33d-41c3-b435-3dff58f5ccf3", + "Content-Type" : "application/json" }, "Response" : { + "content-length" : "820", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "204", - "x-ms-correlation-request-id" : "a6aba7be-fb78-437e-a856-639682106046", - "Date" : "Fri, 08 Apr 2022 08:37:15 GMT", + "StatusCode" : "201", + "x-ms-correlation-request-id" : "fa2ca0d1-dc69-4eaf-afc1-3e5443990c16", + "Date" : "Mon, 25 Jul 2022 04:03:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083715Z:a6aba7be-fb78-437e-a856-639682106046", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040340Z:fa2ca0d1-dc69-4eaf-afc1-3e5443990c16", "Expires" : "-1", - "x-ms-request-id" : "c55a1855-3263-4cad-87f4-bd7a2ab23f46", - "Body" : "", - "Content-Type" : "application/json", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/94aeb6f1-9b5e-4e10-82c8-3db17c6a6a4f?api-version=2017-08-31" + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/168d1590-df6e-4b67-928b-fc734d2fbf68?api-version=2017-08-31", + "x-ms-request-id" : "168d1590-df6e-4b67-928b-fc734d2fbf68", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042/agentPools/ap2944537\",\n \"name\": \"ap2944537\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n }", + "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/f1f62717-b41d-41a0-9c57-bc91e84498d9?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/572f249d-b752-49c6-8791-6c95aef52b51?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "6c71d7f0-e937-46dd-86ea-569a3d035978" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0004a2e5-4606-46e7-9bc7-0bf6c633efd7" }, "Response" : { "content-length" : "170", @@ -671,181 +697,181 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ba1ba31-6b06-4cd8-947b-1e0c38b76580", - "Date" : "Fri, 08 Apr 2022 08:37:17 GMT", + "x-ms-correlation-request-id" : "adde3396-02db-4ecf-b780-d23aa658e3b4", + "Date" : "Mon, 25 Jul 2022 04:04:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083718Z:6ba1ba31-6b06-4cd8-947b-1e0c38b76580", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040409Z:adde3396-02db-4ecf-b780-d23aa658e3b4", "Expires" : "-1", - "x-ms-request-id" : "32a6da53-0ccf-493d-a6c5-87dd8546dd30", - "Body" : "{\n \"name\": \"1727f6f1-1db4-a041-9c57-bc91e84498d9\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:36:47.8733333Z\",\n \"endTime\": \"2022-04-08T08:37:04.6352555Z\"\n }", + "x-ms-request-id" : "c26953c1-68e4-46be-9826-5ba1892c3a9e", + "Body" : "{\n \"name\": \"9d242f57-52b7-c649-8791-6c95aef52b51\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T04:03:38.6233333Z\",\n \"endTime\": \"2022-07-25T04:04:03.1038297Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1/agentPools/ap2804779?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/e5c90d7e-1f0c-4b3c-a67b-d6c4b8fa9d9f?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "889208bd-8a9d-46f1-8508-1878c6d2bec0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "625c6401-3fed-473d-9b6b-ff55866f0e68" }, "Response" : { - "content-length" : "776", + "content-length" : "165", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a403e2f4-75d8-4b7d-acab-d3cd93d22c47", - "Date" : "Fri, 08 Apr 2022 08:37:18 GMT", + "x-ms-correlation-request-id" : "571d62ab-1897-471a-b3cd-c1cc004f7947", + "Date" : "Mon, 25 Jul 2022 04:04:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083719Z:a403e2f4-75d8-4b7d-acab-d3cd93d22c47", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040409Z:571d62ab-1897-471a-b3cd-c1cc004f7947", "Expires" : "-1", - "x-ms-request-id" : "82157696-8945-4cd8-bdc6-43348c7521ae", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg45020/providers/Microsoft.ContainerService/managedClusters/aks444194f1/agentPools/ap2804779\",\n \"name\": \"ap2804779\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n }", + "x-ms-request-id" : "56709152-e68c-4c4b-828f-f8923d22f207", + "Body" : "{\n \"name\": \"7e0dc9e5-0c1f-3c4b-a67b-d6c4b8fa9d9f\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T04:03:38.55Z\",\n \"endTime\": \"2022-07-25T04:03:52.8580909Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/76f94bf1-87fa-407f-8cae-221fbe660fac?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/572f249d-b752-49c6-8791-6c95aef52b51?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "2cd93223-4b8c-4ada-8222-214c4d99e462" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "68dddaae-793c-461f-b979-ced57f766cae" }, "Response" : { - "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c9402ee0-5439-43f4-a18d-c14ca73363ec", - "Date" : "Fri, 08 Apr 2022 08:37:45 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", + "StatusCode" : "204", + "x-ms-correlation-request-id" : "a97b90d5-fb45-48ee-98fb-0e2d20702fbb", + "Date" : "Mon, 25 Jul 2022 04:04:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083745Z:c9402ee0-5439-43f4-a18d-c14ca73363ec", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040409Z:a97b90d5-fb45-48ee-98fb-0e2d20702fbb", "Expires" : "-1", - "x-ms-request-id" : "bff47c18-d0bd-4bca-a06f-5f511299f350", - "Body" : "{\n \"name\": \"f14bf976-fa87-7f40-8cae-221fbe660fac\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:36:44.92Z\"\n }", - "Content-Type" : "application/json" + "x-ms-request-id" : "b359682b-737c-4a67-8134-8a360e40c240", + "Body" : "", + "Content-Type" : "application/json", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/572f249d-b752-49c6-8791-6c95aef52b51?api-version=2017-08-31" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/76f94bf1-87fa-407f-8cae-221fbe660fac?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/e5c90d7e-1f0c-4b3c-a67b-d6c4b8fa9d9f?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "556568d2-431f-43da-9530-e0c5552dba9e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0b823bcf-9655-40f1-aa0d-7a1157623b91" }, "Response" : { - "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f561af4c-e29f-4a15-849e-a1a52e74fb6e", - "Date" : "Fri, 08 Apr 2022 08:38:15 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", + "StatusCode" : "204", + "x-ms-correlation-request-id" : "078d019b-e1b1-4e8d-94ad-409f36dc83d1", + "Date" : "Mon, 25 Jul 2022 04:04:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083816Z:f561af4c-e29f-4a15-849e-a1a52e74fb6e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040409Z:078d019b-e1b1-4e8d-94ad-409f36dc83d1", "Expires" : "-1", - "x-ms-request-id" : "711bbdda-deea-4569-8187-9dcea625b2c2", - "Body" : "{\n \"name\": \"f14bf976-fa87-7f40-8cae-221fbe660fac\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:36:44.92Z\"\n }", - "Content-Type" : "application/json" + "x-ms-request-id" : "5a56e471-2c2c-438b-ba32-1081e6769d9a", + "Body" : "", + "Content-Type" : "application/json", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/e5c90d7e-1f0c-4b3c-a67b-d6c4b8fa9d9f?api-version=2017-08-31" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/76f94bf1-87fa-407f-8cae-221fbe660fac?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/168d1590-df6e-4b67-928b-fc734d2fbf68?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "b7ae57ee-f5b4-4280-874f-510a0531ccb7" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "86d69893-8087-4e7b-bf2c-fb772b42c398" }, "Response" : { - "content-length" : "121", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e14b798-38d7-4f2a-affe-303792dee0bd", - "Date" : "Fri, 08 Apr 2022 08:38:47 GMT", + "x-ms-correlation-request-id" : "26177099-0a9a-434d-9d3d-3d046122e471", + "Date" : "Mon, 25 Jul 2022 04:04:09 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083847Z:8e14b798-38d7-4f2a-affe-303792dee0bd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040410Z:26177099-0a9a-434d-9d3d-3d046122e471", "Expires" : "-1", - "x-ms-request-id" : "9e3b0f13-a5fa-4d7e-87e0-d7373451bdfe", - "Body" : "{\n \"name\": \"f14bf976-fa87-7f40-8cae-221fbe660fac\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:36:44.92Z\"\n }", + "x-ms-request-id" : "340fc7d7-89fc-442e-a8a6-c4a6b7faadf1", + "Body" : "{\n \"name\": \"90158d16-6edf-674b-928b-fc734d2fbf68\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:03:39.8366666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/76f94bf1-87fa-407f-8cae-221fbe660fac?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/168d1590-df6e-4b67-928b-fc734d2fbf68?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "aaf35904-cd45-4a13-b5d5-6aaab77cc4b7" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3aa76b5a-1e44-4e54-9d3d-2a6a6d131523" }, "Response" : { - "content-length" : "165", + "content-length" : "169", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c80297b-a0a2-4b5a-83f9-e16100f415e3", - "Date" : "Fri, 08 Apr 2022 08:39:17 GMT", + "x-ms-correlation-request-id" : "0ff88194-b4eb-49ec-80d1-0d8acca04dbd", + "Date" : "Mon, 25 Jul 2022 04:04:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083917Z:3c80297b-a0a2-4b5a-83f9-e16100f415e3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040440Z:0ff88194-b4eb-49ec-80d1-0d8acca04dbd", "Expires" : "-1", - "x-ms-request-id" : "a99fe4d3-ece3-4065-81e0-4cab2d6e4729", - "Body" : "{\n \"name\": \"f14bf976-fa87-7f40-8cae-221fbe660fac\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:36:44.92Z\",\n \"endTime\": \"2022-04-08T08:39:10.9263155Z\"\n }", + "x-ms-request-id" : "afecaa40-646e-417a-9c7f-b1c526e2e9ac", + "Body" : "{\n \"name\": \"90158d16-6edf-674b-928b-fc734d2fbf68\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T04:03:39.8366666Z\",\n \"endTime\": \"2022-07-25T04:04:12.247561Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/76f94bf1-87fa-407f-8cae-221fbe660fac?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042/agentPools/ap2944537?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a4c0155e-78af-4b6b-bc1a-68ba57555865" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c3fa13f5-0601-425e-a0bf-037112c2c394" }, "Response" : { + "content-length" : "821", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "204", - "x-ms-correlation-request-id" : "0904062a-c47e-49f8-9647-8ed189df69c5", - "Date" : "Fri, 08 Apr 2022 08:39:18 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "01d90371-0393-4f93-ab1e-4418b1cf1e46", + "Date" : "Mon, 25 Jul 2022 04:04:41 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083918Z:0904062a-c47e-49f8-9647-8ed189df69c5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040441Z:01d90371-0393-4f93-ab1e-4418b1cf1e46", "Expires" : "-1", - "x-ms-request-id" : "100ddb5c-44f0-43cf-b229-ca3a969781eb", - "Body" : "", - "Content-Type" : "application/json", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/76f94bf1-87fa-407f-8cae-221fbe660fac?api-version=2017-08-31" + "x-ms-request-id" : "340a47ed-08ac-4565-b659-dff423187e5b", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg27921/providers/Microsoft.ContainerService/managedClusters/aks69811042/agentPools/ap2944537\",\n \"name\": \"ap2944537\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n }", + "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg45020?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg27921?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0168ce5e-cefb-4d93-ab98-acfe0449f6a2", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ceefe02f-f493-44f8-8c5d-f938c093ce26", "Content-Type" : "application/json" }, "Response" : { @@ -854,17 +880,17 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "StatusCode" : "202", - "x-ms-correlation-request-id" : "d2cb5e1f-f428-4432-96e3-0868c76e7b81", - "Date" : "Fri, 08 Apr 2022 08:39:21 GMT", + "x-ms-correlation-request-id" : "833ad5c4-4962-4209-9365-b2e2e9110338", + "Date" : "Mon, 25 Jul 2022 04:04:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083921Z:d2cb5e1f-f428-4432-96e3-0868c76e7b81", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040446Z:833ad5c4-4962-4209-9365-b2e2e9110338", "Expires" : "-1", - "x-ms-request-id" : "d2cb5e1f-f428-4432-96e3-0868c76e7b81", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQUNTUkc0NTAyMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" + "x-ms-request-id" : "833ad5c4-4962-4209-9365-b2e2e9110338", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQUNTUkcyNzkyMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" }, "Exception" : null } ], - "variables" : [ "javaacsrg45020", "aks444194f1", "dns514264", "ap043798a", "ap1936710", "ap227971a", "ap2804779" ] + "variables" : [ "javaacsrg27921", "aks69811042", "dns926852", "ap0037358", "ap1015729", "ap293068f", "ap2944537" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canCRUDKubernetesCluster.json b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canCRUDKubernetesCluster.json index d521b98613be..dfb79e45ace1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canCRUDKubernetesCluster.json +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canCRUDKubernetesCluster.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg51617?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg87061?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a19cf57d-5f4d-4136-9ef7-75eb30585011", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e7f7a55f-be70-4383-9e51-71c4a9caad22", "Content-Type" : "application/json" }, "Response" : { @@ -14,51 +14,51 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "eb90ebd3-1704-48e5-bc15-715c3dc16bc7", - "Date" : "Fri, 08 Apr 2022 08:29:43 GMT", + "x-ms-correlation-request-id" : "5d320ac4-8995-418d-b0f7-de01cfe8b59b", + "Date" : "Mon, 25 Jul 2022 03:54:38 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T082943Z:eb90ebd3-1704-48e5-bc15-715c3dc16bc7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035439Z:5d320ac4-8995-418d-b0f7-de01cfe8b59b", "Expires" : "-1", - "x-ms-request-id" : "eb90ebd3-1704-48e5-bc15-715c3dc16bc7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg51617\",\"name\":\"javaacsrg51617\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "5d320ac4-8995-418d-b0f7-de01cfe8b59b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg87061\",\"name\":\"javaacsrg87061\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "52fece93-ca69-45b7-a4e0-31a40857d3e7", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "558304ae-6c5a-4130-b74a-ea7acfe315f6", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "3266", + "content-length" : "3589", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "x-ms-ratelimit-remaining-subscription-writes" : "1198", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "90686649-3286-4b36-9679-1d1122941dc2", - "Date" : "Fri, 08 Apr 2022 08:29:53 GMT", + "x-ms-correlation-request-id" : "4916923f-807f-428e-a8e6-246e3c979500", + "Date" : "Mon, 25 Jul 2022 03:54:52 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T082953Z:90686649-3286-4b36-9679-1d1122941dc2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035453Z:4916923f-807f-428e-a8e6-246e3c979500", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/af7aadd6-f6d1-4bc4-8385-2deced1bd39f?api-version=2017-08-31", - "x-ms-request-id" : "af7aadd6-f6d1-4bc4-8385-2deced1bd39f", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c\",\n \"location\": \"centralus\",\n \"name\": \"aks2809084c\",\n \"tags\": {\n \"tag1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns199935\",\n \"fqdn\": \"mp1dns199935-ddf6dcfb.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns199935-ddf6dcfb.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0620401\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"pool.name\": \"ap0620401\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap148964c\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"pool.name\": \"ap148964c\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCP7RV2bWZE2/IJNlkEEPHLcoRE1dp3j9f8Y9CzFbIilbJBN0ifJYJfPfdfqcDbxCs7q3nJ+ZHjCtRpAWZ42/gqRHqz+ALzg0tBnijNhfeGXYCoUXiAKiguc3R/jexELOhYZcEOlYt4eU2BEJ4kGs7oXCqqh+yfDg/qu5MpoSz1DQ==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg51617_aks2809084c_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"7466b15f-ecfb-4c86-96d4-304c2ffa1b30\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", + "x-ms-request-id" : "7f8824d9-3b69-4a8f-97e0-f34f879ec60c", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84\",\n \"location\": \"centralus\",\n \"name\": \"aks72698a84\",\n \"tags\": {\n \"tag1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns976668\",\n \"fqdn\": \"mp1dns976668-086f40b5.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns976668-086f40b5.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0374601\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"pool.name\": \"ap0374601\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1316930\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"pool.name\": \"ap1316930\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCAtWO2eWKPaRX7uhBzxXhKONUaL8d+YQXjwAmFRiZcID1RA3/fkeMgPxw8BpmeaYTmmepSPTvejEOhxnOQ7eLK/jagtKOADLT42XAZyFz+v0q6d5jXe1LrmTMkMY+ubWIpj3+mSpP1lSgmP09ncjJDKDJohuIWCbhkN6WXe1g2cw==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg87061_aks72698a84_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"c23d9852-89fc-4b8b-bca1-e93b439c6532\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/af7aadd6-f6d1-4bc4-8385-2deced1bd39f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0e363066-5288-45f7-beaf-63eb47442efc" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "50add5a6-1872-43eb-83e7-668fb1e1eb62" }, "Response" : { "content-length" : "126", @@ -68,23 +68,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ec6f1635-b21f-4141-ab51-bab5c99f1d8d", - "Date" : "Fri, 08 Apr 2022 08:30:23 GMT", + "x-ms-correlation-request-id" : "4346642f-22d0-43fe-b475-6560f0b8c7ab", + "Date" : "Mon, 25 Jul 2022 03:55:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083024Z:ec6f1635-b21f-4141-ab51-bab5c99f1d8d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035523Z:4346642f-22d0-43fe-b475-6560f0b8c7ab", "Expires" : "-1", - "x-ms-request-id" : "06a2e3bc-cbac-4ed1-9b48-31d7136e80dc", - "Body" : "{\n \"name\": \"d6ad7aaf-d1f6-c44b-8385-2deced1bd39f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:52.3266666Z\"\n }", + "x-ms-request-id" : "a9d9a136-2d09-4f3d-a6c9-99192666e8a1", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/af7aadd6-f6d1-4bc4-8385-2deced1bd39f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "54f45f24-c831-4a34-9d2f-40b2d6053b7f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a78d3a9f-a3fa-4dfe-ad56-77295da52c66" }, "Response" : { "content-length" : "126", @@ -94,23 +94,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6dbc9f6f-8287-47c3-9a53-12aeaf37e6a2", - "Date" : "Fri, 08 Apr 2022 08:30:54 GMT", + "x-ms-correlation-request-id" : "4cd4a3a9-a820-4364-a331-266648a2a3f6", + "Date" : "Mon, 25 Jul 2022 03:55:53 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083054Z:6dbc9f6f-8287-47c3-9a53-12aeaf37e6a2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035554Z:4cd4a3a9-a820-4364-a331-266648a2a3f6", "Expires" : "-1", - "x-ms-request-id" : "4db7d041-31e2-4112-be00-132a629fbf02", - "Body" : "{\n \"name\": \"d6ad7aaf-d1f6-c44b-8385-2deced1bd39f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:52.3266666Z\"\n }", + "x-ms-request-id" : "3794e7dd-ec3c-4b8d-af3d-4b49e950b222", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/af7aadd6-f6d1-4bc4-8385-2deced1bd39f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a8f226fc-7186-4f15-8c8c-af22f5a3cc5e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "668e5979-6632-417c-ae90-b0eceb9ce439" }, "Response" : { "content-length" : "126", @@ -120,23 +120,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e6d8c869-5db9-4874-8a8b-08bfca749823", - "Date" : "Fri, 08 Apr 2022 08:31:25 GMT", + "x-ms-correlation-request-id" : "f68dd27a-c8dd-4023-bb88-13d9a317efad", + "Date" : "Mon, 25 Jul 2022 03:56:24 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083125Z:e6d8c869-5db9-4874-8a8b-08bfca749823", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035624Z:f68dd27a-c8dd-4023-bb88-13d9a317efad", "Expires" : "-1", - "x-ms-request-id" : "8a6b8118-9807-47f0-a6c9-0834cff2e09e", - "Body" : "{\n \"name\": \"d6ad7aaf-d1f6-c44b-8385-2deced1bd39f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:52.3266666Z\"\n }", + "x-ms-request-id" : "62be8ee3-b351-4e42-aa51-16a1702860bf", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/af7aadd6-f6d1-4bc4-8385-2deced1bd39f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "b2e93a19-20a3-4863-8b66-7e3d8040d91f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5e951f4d-cc52-450a-9ca6-a94459b30395" }, "Response" : { "content-length" : "126", @@ -146,23 +146,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "x-ms-correlation-request-id" : "99f587ae-0431-41c6-a519-40f4a76df39e", - "Date" : "Fri, 08 Apr 2022 08:31:54 GMT", + "x-ms-correlation-request-id" : "0bd32dbe-8021-4940-a6e5-9b1b8d1a5bbe", + "Date" : "Mon, 25 Jul 2022 03:56:53 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083155Z:99f587ae-0431-41c6-a519-40f4a76df39e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035654Z:0bd32dbe-8021-4940-a6e5-9b1b8d1a5bbe", "Expires" : "-1", - "x-ms-request-id" : "161ddf69-049f-4db3-9384-ce5ca279ff4e", - "Body" : "{\n \"name\": \"d6ad7aaf-d1f6-c44b-8385-2deced1bd39f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:52.3266666Z\"\n }", + "x-ms-request-id" : "fb4da549-18d7-452e-9a18-4ccfa840f933", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/af7aadd6-f6d1-4bc4-8385-2deced1bd39f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "cfbb51af-de10-4124-83d6-732f6892f57a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "63295edd-0acf-47cd-814f-c2839b3048c5" }, "Response" : { "content-length" : "126", @@ -172,23 +172,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "x-ms-correlation-request-id" : "11e28ca3-3402-4bcf-9194-bf9839f2bc94", - "Date" : "Fri, 08 Apr 2022 08:32:24 GMT", + "x-ms-correlation-request-id" : "05c3d64d-a7fa-48cc-ae32-8bf50c489638", + "Date" : "Mon, 25 Jul 2022 03:57:24 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083225Z:11e28ca3-3402-4bcf-9194-bf9839f2bc94", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035724Z:05c3d64d-a7fa-48cc-ae32-8bf50c489638", "Expires" : "-1", - "x-ms-request-id" : "b8d2aa70-7889-4621-8bd9-dfd70bcce7df", - "Body" : "{\n \"name\": \"d6ad7aaf-d1f6-c44b-8385-2deced1bd39f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:52.3266666Z\"\n }", + "x-ms-request-id" : "752e9e76-df61-4cda-8945-a754db6b3366", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/af7aadd6-f6d1-4bc4-8385-2deced1bd39f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a3ebf8b0-ab1b-4be7-af38-11a1a0d0449f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "22e8a0c8-83de-4695-92f7-de45e2e6b7dd" }, "Response" : { "content-length" : "126", @@ -198,23 +198,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1289bc31-49ec-4eef-83ee-a15666606c2f", - "Date" : "Fri, 08 Apr 2022 08:32:55 GMT", + "x-ms-correlation-request-id" : "704af0e6-dff4-43e5-8398-5b83ad4b9ea3", + "Date" : "Mon, 25 Jul 2022 03:57:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083256Z:1289bc31-49ec-4eef-83ee-a15666606c2f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035755Z:704af0e6-dff4-43e5-8398-5b83ad4b9ea3", "Expires" : "-1", - "x-ms-request-id" : "e6988326-8bdb-4a0d-bc9a-45258deab6d9", - "Body" : "{\n \"name\": \"d6ad7aaf-d1f6-c44b-8385-2deced1bd39f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:52.3266666Z\"\n }", + "x-ms-request-id" : "65d24322-ceaf-4f76-8d13-b530a4840895", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/af7aadd6-f6d1-4bc4-8385-2deced1bd39f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a4c17fd9-b775-4704-bcc3-bd9ab4044684" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e5a7ee56-6f4f-463f-9efe-082ede2ee095" }, "Response" : { "content-length" : "126", @@ -224,23 +224,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "x-ms-correlation-request-id" : "abdbcd52-c4de-4758-b271-2648808cefb7", - "Date" : "Fri, 08 Apr 2022 08:33:25 GMT", + "x-ms-correlation-request-id" : "6dd22eaa-22bc-47c2-a63d-9e7a8b0b4345", + "Date" : "Mon, 25 Jul 2022 03:58:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083326Z:abdbcd52-c4de-4758-b271-2648808cefb7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035825Z:6dd22eaa-22bc-47c2-a63d-9e7a8b0b4345", "Expires" : "-1", - "x-ms-request-id" : "0a4b0226-f62a-43ad-a20e-d3650ed981ad", - "Body" : "{\n \"name\": \"d6ad7aaf-d1f6-c44b-8385-2deced1bd39f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:52.3266666Z\"\n }", + "x-ms-request-id" : "831b783f-2563-446a-82f8-3237e81e044a", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/af7aadd6-f6d1-4bc4-8385-2deced1bd39f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "49419d26-6e00-47de-a9aa-437d4aafc354" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6ac6ca7a-3399-4fc4-922a-c69042f436b6" }, "Response" : { "content-length" : "126", @@ -250,23 +250,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "x-ms-correlation-request-id" : "3bda2180-9d02-4215-ba23-887db1bd9af0", - "Date" : "Fri, 08 Apr 2022 08:33:56 GMT", + "x-ms-correlation-request-id" : "af4b8120-33c6-4abe-8d91-4612af787273", + "Date" : "Mon, 25 Jul 2022 03:58:55 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083356Z:3bda2180-9d02-4215-ba23-887db1bd9af0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035855Z:af4b8120-33c6-4abe-8d91-4612af787273", "Expires" : "-1", - "x-ms-request-id" : "8346ebde-e025-4c56-a8bd-f74170d39c32", - "Body" : "{\n \"name\": \"d6ad7aaf-d1f6-c44b-8385-2deced1bd39f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:52.3266666Z\"\n }", + "x-ms-request-id" : "8f8bac13-38b5-4737-bb36-b732147f2999", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/af7aadd6-f6d1-4bc4-8385-2deced1bd39f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "28ddada2-71b9-4102-b904-ebddb1ef0077" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1de1e7dc-6f01-4700-a728-9e81099fda70" }, "Response" : { "content-length" : "126", @@ -274,25 +274,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "x-ms-correlation-request-id" : "05d7dce7-8808-4398-993c-27dda4ef1ec2", - "Date" : "Fri, 08 Apr 2022 08:34:27 GMT", + "x-ms-correlation-request-id" : "6e4ce5a7-3560-4762-b211-7e48e19021bf", + "Date" : "Mon, 25 Jul 2022 03:59:26 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083427Z:05d7dce7-8808-4398-993c-27dda4ef1ec2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035927Z:6e4ce5a7-3560-4762-b211-7e48e19021bf", "Expires" : "-1", - "x-ms-request-id" : "f221a885-68a8-4389-9b31-09c61808d299", - "Body" : "{\n \"name\": \"d6ad7aaf-d1f6-c44b-8385-2deced1bd39f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:52.3266666Z\"\n }", + "x-ms-request-id" : "423a99c6-0d74-445d-8953-8ae8241c8b87", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/af7aadd6-f6d1-4bc4-8385-2deced1bd39f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "92860854-cb28-4496-bf4c-bc80cc1fbbe9" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "176802b6-8727-456a-8657-e27c17fd7238" }, "Response" : { "content-length" : "126", @@ -300,104 +300,103 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2675d25f-2492-4072-8028-f64e12a7ab81", - "Date" : "Fri, 08 Apr 2022 08:34:56 GMT", + "x-ms-correlation-request-id" : "87f4647b-5f32-4516-beef-62e855d3d655", + "Date" : "Mon, 25 Jul 2022 03:59:56 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083457Z:2675d25f-2492-4072-8028-f64e12a7ab81", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035957Z:87f4647b-5f32-4516-beef-62e855d3d655", "Expires" : "-1", - "x-ms-request-id" : "d83f710e-3bc0-4ecf-86bd-a604efbec646", - "Body" : "{\n \"name\": \"d6ad7aaf-d1f6-c44b-8385-2deced1bd39f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:52.3266666Z\"\n }", + "x-ms-request-id" : "d763174e-1a97-49e9-bdbf-26400b953c2f", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/af7aadd6-f6d1-4bc4-8385-2deced1bd39f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8ed8d923-9e88-425e-9b89-a88d725c9974" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1e797413-911a-4a74-b10a-11b685362a36" }, "Response" : { - "content-length" : "170", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "x-ms-correlation-request-id" : "15749975-bd32-4bbb-8227-25a990fdcc26", - "Date" : "Fri, 08 Apr 2022 08:35:27 GMT", + "x-ms-correlation-request-id" : "94df259b-6be8-4018-85b6-9647c47c9713", + "Date" : "Mon, 25 Jul 2022 04:00:26 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083527Z:15749975-bd32-4bbb-8227-25a990fdcc26", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040027Z:94df259b-6be8-4018-85b6-9647c47c9713", "Expires" : "-1", - "x-ms-request-id" : "0859d394-2a5e-468b-b15d-ad69b26a72bb", - "Body" : "{\n \"name\": \"d6ad7aaf-d1f6-c44b-8385-2deced1bd39f\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:29:52.3266666Z\",\n \"endTime\": \"2022-04-08T08:35:06.1007654Z\"\n }", + "x-ms-request-id" : "43649313-4e4d-48d3-a4c9-806d2f1cda15", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "fb7e92a7-b980-4149-9ff8-8fd4bb2d4cb3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "71e69165-c6de-49b9-b78e-8c69cb46fb61" }, "Response" : { - "content-length" : "3913", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "x-ms-correlation-request-id" : "920769b8-721d-40ee-8a3e-3f77ad496a73", - "Date" : "Fri, 08 Apr 2022 08:35:27 GMT", + "x-ms-correlation-request-id" : "eb53eb9b-0ed3-40c4-9386-605fb58b75f1", + "Date" : "Mon, 25 Jul 2022 04:00:58 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083528Z:920769b8-721d-40ee-8a3e-3f77ad496a73", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040058Z:eb53eb9b-0ed3-40c4-9386-605fb58b75f1", "Expires" : "-1", - "x-ms-request-id" : "a7b065f6-3c81-4def-b3bb-a5f37e60bf3d", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c\",\n \"location\": \"centralus\",\n \"name\": \"aks2809084c\",\n \"tags\": {\n \"tag1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns199935\",\n \"fqdn\": \"mp1dns199935-ddf6dcfb.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns199935-ddf6dcfb.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0620401\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"pool.name\": \"ap0620401\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap148964c\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"pool.name\": \"ap148964c\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCP7RV2bWZE2/IJNlkEEPHLcoRE1dp3j9f8Y9CzFbIilbJBN0ifJYJfPfdfqcDbxCs7q3nJ+ZHjCtRpAWZ42/gqRHqz+ALzg0tBnijNhfeGXYCoUXiAKiguc3R/jexELOhYZcEOlYt4eU2BEJ4kGs7oXCqqh+yfDg/qu5MpoSz1DQ==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg51617_aks2809084c_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg51617_aks2809084c_centralus/providers/Microsoft.Network/publicIPAddresses/2648cf0f-62d2-4715-96e9-98f3b1100956\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg51617_aks2809084c_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks2809084c-agentpool\",\n \"clientId\": \"65cdde92-5745-4710-b851-29771e374526\",\n \"objectId\": \"68dbeb1c-8fdc-408d-a300-882d968c63b4\"\n }\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"7466b15f-ecfb-4c86-96d4-304c2ffa1b30\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "x-ms-request-id" : "48a67693-03e4-40f8-8469-6b1070a17168", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c/stop?api-version=2022-04-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "88b5a6a7-5b4b-4ad7-9589-7f6222be0a88", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8eb2838b-4527-4ff0-9f61-34851790cd09" }, "Response" : { - "content-length" : "0", + "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "abe37374-29b2-4cf0-aa67-5ef21585d408", - "Date" : "Fri, 08 Apr 2022 08:35:28 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "31f839cb-f3c5-444f-affa-d0d2fc7b5365", + "Date" : "Mon, 25 Jul 2022 04:01:28 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083529Z:abe37374-29b2-4cf0-aa67-5ef21585d408", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040129Z:31f839cb-f3c5-444f-affa-d0d2fc7b5365", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", - "x-ms-request-id" : "066cfb18-4deb-4f11-8bb8-68da64551026", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31" + "x-ms-request-id" : "7710a4dd-5241-4266-99d0-8337f42f84b5", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", + "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "1fa0033d-78f3-4572-9f7c-14943236e937" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5468756d-f8d7-4873-95af-7460cd5c1d0f" }, "Response" : { "content-length" : "126", @@ -405,77 +404,104 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", - "x-ms-correlation-request-id" : "9f38061e-0d8e-41f9-908b-bc42855ed52d", - "Date" : "Fri, 08 Apr 2022 08:35:58 GMT", + "x-ms-correlation-request-id" : "8cd1a521-2bb6-4536-afdf-9f0cac9621dd", + "Date" : "Mon, 25 Jul 2022 04:01:58 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083559Z:9f38061e-0d8e-41f9-908b-bc42855ed52d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040159Z:8cd1a521-2bb6-4536-afdf-9f0cac9621dd", "Expires" : "-1", - "x-ms-request-id" : "ef68a489-70fa-467b-8d2c-7005e82610bc", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", + "x-ms-request-id" : "a5a7c428-4794-4135-b90b-25ced146ae73", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7f8824d9-3b69-4a8f-97e0-f34f879ec60c?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "6eceb06c-fef4-4afe-a8d0-5e4556934e4e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5d73aa3d-662f-4e9f-9819-65ea5cb0c3bc" }, "Response" : { - "content-length" : "126", + "content-length" : "170", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e722cec8-410c-4102-a3e7-3e92bcc11fd7", - "Date" : "Fri, 08 Apr 2022 08:36:29 GMT", + "x-ms-correlation-request-id" : "1ae4c54e-da83-431f-9446-596405aef5ca", + "Date" : "Mon, 25 Jul 2022 04:02:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083630Z:e722cec8-410c-4102-a3e7-3e92bcc11fd7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040229Z:1ae4c54e-da83-431f-9446-596405aef5ca", "Expires" : "-1", - "x-ms-request-id" : "58ec298a-890e-4773-bd6a-493a7415239e", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", + "x-ms-request-id" : "9084662e-b650-405b-acfd-90d120686002", + "Body" : "{\n \"name\": \"d924887f-693b-8f4a-97e0-f34f879ec60c\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T03:54:51.5133333Z\",\n \"endTime\": \"2022-07-25T04:02:13.6885188Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "51f0d4c0-ba05-4b03-8822-225d1fe98f38" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3a124d7f-5c3e-43b4-a945-2dc73750a174" }, "Response" : { - "content-length" : "126", + "content-length" : "4236", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", - "x-ms-correlation-request-id" : "7df1fd09-d7e7-4884-bbd1-739f78630de8", - "Date" : "Fri, 08 Apr 2022 08:37:00 GMT", + "x-ms-correlation-request-id" : "128a229c-5a10-434a-82ba-feb2d74c26fe", + "Date" : "Mon, 25 Jul 2022 04:02:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083700Z:7df1fd09-d7e7-4884-bbd1-739f78630de8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040230Z:128a229c-5a10-434a-82ba-feb2d74c26fe", "Expires" : "-1", - "x-ms-request-id" : "9ef29402-c747-47bf-a792-f3ad97a40a2f", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", + "x-ms-request-id" : "e4c15dfa-c44c-4c99-ad85-746ced843d5d", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84\",\n \"location\": \"centralus\",\n \"name\": \"aks72698a84\",\n \"tags\": {\n \"tag1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns976668\",\n \"fqdn\": \"mp1dns976668-086f40b5.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns976668-086f40b5.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0374601\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"pool.name\": \"ap0374601\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1316930\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"pool.name\": \"ap1316930\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCAtWO2eWKPaRX7uhBzxXhKONUaL8d+YQXjwAmFRiZcID1RA3/fkeMgPxw8BpmeaYTmmepSPTvejEOhxnOQ7eLK/jagtKOADLT42XAZyFz+v0q6d5jXe1LrmTMkMY+ubWIpj3+mSpP1lSgmP09ncjJDKDJohuIWCbhkN6WXe1g2cw==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg87061_aks72698a84_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg87061_aks72698a84_centralus/providers/Microsoft.Network/publicIPAddresses/671f700b-12f5-44af-ab09-c034d043e0dc\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg87061_aks72698a84_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks72698a84-agentpool\",\n \"clientId\": \"4f196bcd-c004-4221-bc45-e4bf30a0cf8e\",\n \"objectId\": \"778087af-d736-4f6c-9de5-894da6da2ff4\"\n }\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"c23d9852-89fc-4b8b-bca1-e93b439c6532\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null + }, { + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84/stop?api-version=2022-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "61d04eaa-1e30-4246-a5fa-f3c8d968b9f6", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "0", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "Pragma" : "no-cache", + "retry-after" : "0", + "StatusCode" : "202", + "x-ms-correlation-request-id" : "18b5ef49-5d3b-4078-9f7c-4aaf5b358a34", + "Date" : "Mon, 25 Jul 2022 04:02:30 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040230Z:18b5ef49-5d3b-4078-9f7c-4aaf5b358a34", + "Expires" : "-1", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/13119c07-c155-4bed-b85c-7538a0c16312?api-version=2017-08-31", + "x-ms-request-id" : "13119c07-c155-4bed-b85c-7538a0c16312", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/13119c07-c155-4bed-b85c-7538a0c16312?api-version=2017-08-31" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/13119c07-c155-4bed-b85c-7538a0c16312?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "cda72fdf-9217-4cae-a72b-0d771850669b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ea2c29b0-3da2-40a6-8819-cbfd12bb52da" }, "Response" : { "content-length" : "126", @@ -485,23 +511,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "x-ms-correlation-request-id" : "cbe2c4c8-002e-46a1-a15a-a68f457b6ca0", - "Date" : "Fri, 08 Apr 2022 08:37:30 GMT", + "x-ms-correlation-request-id" : "7f0ae20a-f17d-4d65-b815-ec0a675ab169", + "Date" : "Mon, 25 Jul 2022 04:03:00 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083731Z:cbe2c4c8-002e-46a1-a15a-a68f457b6ca0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040301Z:7f0ae20a-f17d-4d65-b815-ec0a675ab169", "Expires" : "-1", - "x-ms-request-id" : "6ae3a361-c044-45dd-bfb2-98d65cf733bb", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", + "x-ms-request-id" : "f2ccbd89-0069-4ec2-8ed6-4b49618801b1", + "Body" : "{\n \"name\": \"079c1113-55c1-ed4b-b85c-7538a0c16312\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:30.6466666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/13119c07-c155-4bed-b85c-7538a0c16312?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "80e6d6db-a620-4d29-b665-696b19b31036" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9d27b1d5-2886-41a0-a0aa-530a28cbef40" }, "Response" : { "content-length" : "126", @@ -509,25 +535,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "x-ms-correlation-request-id" : "740473c9-bdce-46c1-b686-a0e87af1fd67", - "Date" : "Fri, 08 Apr 2022 08:38:00 GMT", + "x-ms-correlation-request-id" : "3a8892a7-89f9-4e60-8132-488252cb11b9", + "Date" : "Mon, 25 Jul 2022 04:03:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083801Z:740473c9-bdce-46c1-b686-a0e87af1fd67", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040332Z:3a8892a7-89f9-4e60-8132-488252cb11b9", "Expires" : "-1", - "x-ms-request-id" : "9a3c6db1-27db-45c8-8245-45a5dd740a63", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", + "x-ms-request-id" : "d05c8e64-eec1-4b05-a244-156e5b514a38", + "Body" : "{\n \"name\": \"079c1113-55c1-ed4b-b85c-7538a0c16312\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:30.6466666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/13119c07-c155-4bed-b85c-7538a0c16312?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8851a384-626d-458a-9fe2-8835c1560010" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4a0cac8e-e1ba-4812-8f1b-7fad093fa116" }, "Response" : { "content-length" : "126", @@ -535,25 +561,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "x-ms-correlation-request-id" : "9acf27d6-61cc-4fa2-9182-e08084b5675b", - "Date" : "Fri, 08 Apr 2022 08:38:31 GMT", + "x-ms-correlation-request-id" : "7ce73948-2306-4470-a7c0-747a851cb1e6", + "Date" : "Mon, 25 Jul 2022 04:04:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083832Z:9acf27d6-61cc-4fa2-9182-e08084b5675b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040402Z:7ce73948-2306-4470-a7c0-747a851cb1e6", "Expires" : "-1", - "x-ms-request-id" : "5dcd6694-4527-4502-a69f-4a36c47f1d2d", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", + "x-ms-request-id" : "e3deb101-e2a7-4a05-b758-bcf106272fdb", + "Body" : "{\n \"name\": \"079c1113-55c1-ed4b-b85c-7538a0c16312\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:30.6466666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/13119c07-c155-4bed-b85c-7538a0c16312?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "4f5810ad-d2ba-4f42-bc5f-47292e992b5d" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1b190296-484d-4bae-b21b-665bdb1b465a" }, "Response" : { "content-length" : "126", @@ -561,313 +587,339 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", - "x-ms-correlation-request-id" : "0b50451d-af6a-4767-8c72-f34bb2e59780", - "Date" : "Fri, 08 Apr 2022 08:39:02 GMT", + "x-ms-correlation-request-id" : "56b6ce39-823f-47f0-93d2-50da2a13cf4b", + "Date" : "Mon, 25 Jul 2022 04:04:31 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083903Z:0b50451d-af6a-4767-8c72-f34bb2e59780", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040432Z:56b6ce39-823f-47f0-93d2-50da2a13cf4b", "Expires" : "-1", - "x-ms-request-id" : "ee46b8b0-2143-4416-b9a5-ffeef4f87393", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", + "x-ms-request-id" : "54ffc369-819d-4932-89c1-904cbbb25433", + "Body" : "{\n \"name\": \"079c1113-55c1-ed4b-b85c-7538a0c16312\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:30.6466666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/13119c07-c155-4bed-b85c-7538a0c16312?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e2106d88-8851-4fa6-b1fd-c59b3ca2d219" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "805a77a7-6421-4839-a64a-4c3ba67c3412" }, "Response" : { - "content-length" : "126", + "content-length" : "170", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", - "x-ms-correlation-request-id" : "aace5926-0556-49d7-9417-514045bbcc9b", - "Date" : "Fri, 08 Apr 2022 08:39:32 GMT", + "x-ms-correlation-request-id" : "a43422ec-0489-4d0b-835d-3d64fb1b0749", + "Date" : "Mon, 25 Jul 2022 04:05:02 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083933Z:aace5926-0556-49d7-9417-514045bbcc9b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040503Z:a43422ec-0489-4d0b-835d-3d64fb1b0749", "Expires" : "-1", - "x-ms-request-id" : "7f2340de-0e17-4268-a1fc-a321277f7a8f", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", + "x-ms-request-id" : "e69dfcbc-75ae-4163-a8ea-44f522b6e6e9", + "Body" : "{\n \"name\": \"079c1113-55c1-ed4b-b85c-7538a0c16312\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T04:02:30.6466666Z\",\n \"endTime\": \"2022-07-25T04:04:39.5878735Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/13119c07-c155-4bed-b85c-7538a0c16312?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e683e1e8-29a7-4a55-a9e7-03d71a4dae8a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7181144d-d517-48fe-ba68-4cbaeb5ab2a8" }, "Response" : { - "content-length" : "126", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1358311b-beb8-4d27-9092-9095445ab686", - "Date" : "Fri, 08 Apr 2022 08:40:04 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "StatusCode" : "204", + "x-ms-correlation-request-id" : "89e29d57-ad5a-4f97-931d-ef33246b3871", + "Date" : "Mon, 25 Jul 2022 04:05:02 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084004Z:1358311b-beb8-4d27-9092-9095445ab686", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040503Z:89e29d57-ad5a-4f97-931d-ef33246b3871", "Expires" : "-1", - "x-ms-request-id" : "61edbd55-2027-4a9e-acbc-b66f5a38a1c3", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", - "Content-Type" : "application/json" + "x-ms-request-id" : "9297f708-b9af-4550-bce3-70c6077fca47", + "Body" : "", + "Content-Type" : "application/json", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/13119c07-c155-4bed-b85c-7538a0c16312?api-version=2017-08-31" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "2cf00942-dd76-48ca-bf93-63ada92bf2b2" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b5ecc093-a8f8-427f-a244-b9741587fbed", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "126", + "content-length" : "4236", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", - "x-ms-correlation-request-id" : "57fcd23a-2ffd-41c4-a876-600ea5880a0f", - "Date" : "Fri, 08 Apr 2022 08:40:35 GMT", + "x-ms-correlation-request-id" : "2f88d3ef-6a52-454d-a003-a7758c43cdf2", + "Date" : "Mon, 25 Jul 2022 04:05:03 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084035Z:57fcd23a-2ffd-41c4-a876-600ea5880a0f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040504Z:2f88d3ef-6a52-454d-a003-a7758c43cdf2", "Expires" : "-1", - "x-ms-request-id" : "564c9587-b3e7-4ad8-bab8-0913fb19cd30", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", + "x-ms-request-id" : "0680798c-48bd-4828-9986-8739e0a92cf3", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84\",\n \"location\": \"centralus\",\n \"name\": \"aks72698a84\",\n \"tags\": {\n \"tag1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns976668\",\n \"fqdn\": \"mp1dns976668-086f40b5.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns976668-086f40b5.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0374601\",\n \"count\": 0,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"pool.name\": \"ap0374601\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1316930\",\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"pool.name\": \"ap1316930\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCAtWO2eWKPaRX7uhBzxXhKONUaL8d+YQXjwAmFRiZcID1RA3/fkeMgPxw8BpmeaYTmmepSPTvejEOhxnOQ7eLK/jagtKOADLT42XAZyFz+v0q6d5jXe1LrmTMkMY+ubWIpj3+mSpP1lSgmP09ncjJDKDJohuIWCbhkN6WXe1g2cw==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg87061_aks72698a84_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg87061_aks72698a84_centralus/providers/Microsoft.Network/publicIPAddresses/671f700b-12f5-44af-ab09-c034d043e0dc\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg87061_aks72698a84_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks72698a84-agentpool\",\n \"clientId\": \"4f196bcd-c004-4221-bc45-e4bf30a0cf8e\",\n \"objectId\": \"778087af-d736-4f6c-9de5-894da6da2ff4\"\n }\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"c23d9852-89fc-4b8b-bca1-e93b439c6532\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84/start?api-version=2022-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "55242673-94c6-4f98-875d-9fa691dd42db", "Content-Type" : "application/json" }, + "Response" : { + "content-length" : "0", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "Pragma" : "no-cache", + "retry-after" : "0", + "StatusCode" : "202", + "x-ms-correlation-request-id" : "135499e1-60e1-4179-9503-08c0fe99e0b7", + "Date" : "Mon, 25 Jul 2022 04:05:04 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040505Z:135499e1-60e1-4179-9503-08c0fe99e0b7", + "Expires" : "-1", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", + "x-ms-request-id" : "fe9c9994-c6a9-4238-8f9e-b584c558975b", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31" + }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8f1dd45c-35a3-469b-bef4-3c3384408413" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b91a219a-d120-408d-92fb-89ddf134ffb9" }, "Response" : { - "content-length" : "126", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "200", - "x-ms-correlation-request-id" : "fe6cb648-92ca-4c55-9e9a-fe98983c04e5", - "Date" : "Fri, 08 Apr 2022 08:41:05 GMT", + "x-ms-correlation-request-id" : "50acd965-a2f6-4ce4-ab44-75429c09193f", + "Date" : "Mon, 25 Jul 2022 04:05:34 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084105Z:fe6cb648-92ca-4c55-9e9a-fe98983c04e5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040535Z:50acd965-a2f6-4ce4-ab44-75429c09193f", "Expires" : "-1", - "x-ms-request-id" : "5976c7f6-b2c7-4f0d-aab5-df8ca23acf23", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", + "x-ms-request-id" : "b8deb2ab-35ea-44c6-a251-dce23b7f95dd", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8ef79f56-663b-4e9b-a360-40118894685b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4eaa626c-1a5f-48ef-a9a2-57b2162e0530" }, "Response" : { - "content-length" : "126", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ceeb7522-7b28-4af7-bec7-2c35a324feb6", - "Date" : "Fri, 08 Apr 2022 08:41:35 GMT", + "x-ms-correlation-request-id" : "c6c2e64d-bc4b-4ba1-8db1-05701f8b37e8", + "Date" : "Mon, 25 Jul 2022 04:06:06 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084136Z:ceeb7522-7b28-4af7-bec7-2c35a324feb6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040606Z:c6c2e64d-bc4b-4ba1-8db1-05701f8b37e8", "Expires" : "-1", - "x-ms-request-id" : "dc944b47-6fd2-4cba-9600-b6bbe1d40a45", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", + "x-ms-request-id" : "171b3a66-49d8-42ce-9b9c-35f492b4ab70", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5dde7806-a5eb-42aa-adcc-4904ccd40e06" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0077e56f-72bb-4a84-a888-a1a6d5424754" }, "Response" : { - "content-length" : "126", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf5822ba-a949-444f-bb4b-885a10d9377d", - "Date" : "Fri, 08 Apr 2022 08:42:07 GMT", + "x-ms-correlation-request-id" : "9d2ac218-e099-4a71-9660-88a389ed51f8", + "Date" : "Mon, 25 Jul 2022 04:06:37 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084207Z:bf5822ba-a949-444f-bb4b-885a10d9377d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040637Z:9d2ac218-e099-4a71-9660-88a389ed51f8", "Expires" : "-1", - "x-ms-request-id" : "cc885c8e-2265-402b-8616-3687dc66345a", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", + "x-ms-request-id" : "dccc68f6-a6bf-44f9-9da4-9f0bf3fecf3e", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d9c72cc8-7fcb-48c8-a7d1-c6e63e70332f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8e14a083-680c-4ff1-95e7-f88ac21b3376" }, "Response" : { - "content-length" : "126", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", - "x-ms-correlation-request-id" : "53f16961-acf4-4e16-97e0-544c82319dc1", - "Date" : "Fri, 08 Apr 2022 08:42:38 GMT", + "x-ms-correlation-request-id" : "08291eea-cf10-433b-ae60-c4e7e60a8748", + "Date" : "Mon, 25 Jul 2022 04:07:07 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084238Z:53f16961-acf4-4e16-97e0-544c82319dc1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040708Z:08291eea-cf10-433b-ae60-c4e7e60a8748", "Expires" : "-1", - "x-ms-request-id" : "1e5d7925-e8df-408c-b71f-3c869bc97daa", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\"\n }", + "x-ms-request-id" : "9fd961da-f22e-4e8b-9c32-9869e20605ba", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "04defb56-d480-4a1a-9de1-999bde3f793e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "28b7f82b-8829-4c90-8d86-c2f70fc922c5" }, "Response" : { - "content-length" : "170", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", - "x-ms-correlation-request-id" : "992718ab-38e5-43b6-b89c-055a7397ad5a", - "Date" : "Fri, 08 Apr 2022 08:43:09 GMT", + "x-ms-correlation-request-id" : "abfdf8bf-1f8c-40cf-88a7-56c96556cb0c", + "Date" : "Mon, 25 Jul 2022 04:07:38 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084309Z:992718ab-38e5-43b6-b89c-055a7397ad5a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040739Z:abfdf8bf-1f8c-40cf-88a7-56c96556cb0c", "Expires" : "-1", - "x-ms-request-id" : "028aa53c-c29d-4a39-9259-5cfd76387a73", - "Body" : "{\n \"name\": \"18fb6c06-eb4d-114f-8bb8-68da64551026\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:35:28.9366666Z\",\n \"endTime\": \"2022-04-08T08:43:03.8621384Z\"\n }", + "x-ms-request-id" : "2b5ba146-9490-4bb0-8582-e67004b83436", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "2e701983-8433-425c-9bb5-3bfc5bbd2577" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "fbe04b5e-13dd-4696-af13-caf851aae431" }, "Response" : { + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "204", - "x-ms-correlation-request-id" : "71463055-51f2-47e9-aff9-ea3cfa8fbe64", - "Date" : "Fri, 08 Apr 2022 08:43:10 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "a644db2e-e50a-4525-bde7-1ee900873046", + "Date" : "Mon, 25 Jul 2022 04:08:09 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084310Z:71463055-51f2-47e9-aff9-ea3cfa8fbe64", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040809Z:a644db2e-e50a-4525-bde7-1ee900873046", "Expires" : "-1", - "x-ms-request-id" : "31ac1dd3-08d6-4cb8-9aed-187f8d7f0faa", - "Body" : "", - "Content-Type" : "application/json", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/066cfb18-4deb-4f11-8bb8-68da64551026?api-version=2017-08-31" + "x-ms-request-id" : "7e432d11-d986-48b1-a1b4-4d360b78c0f5", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", + "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d627721a-316d-42dd-9c01-a27bfc05964b", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "79096357-b3ba-47bd-b73c-0a633fcbd575" }, "Response" : { - "content-length" : "3913", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", - "x-ms-correlation-request-id" : "acd0e2c4-d15b-4f7c-a7d4-ad00ea140370", - "Date" : "Fri, 08 Apr 2022 08:43:10 GMT", + "x-ms-correlation-request-id" : "d419b9e4-7a67-431b-913d-d5cd5d701d9d", + "Date" : "Mon, 25 Jul 2022 04:08:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084310Z:acd0e2c4-d15b-4f7c-a7d4-ad00ea140370", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040840Z:d419b9e4-7a67-431b-913d-d5cd5d701d9d", "Expires" : "-1", - "x-ms-request-id" : "6c9eca0b-832d-4000-a9ef-5cf33546c70d", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c\",\n \"location\": \"centralus\",\n \"name\": \"aks2809084c\",\n \"tags\": {\n \"tag1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns199935\",\n \"fqdn\": \"mp1dns199935-ddf6dcfb.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns199935-ddf6dcfb.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0620401\",\n \"count\": 0,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"pool.name\": \"ap0620401\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap148964c\",\n \"count\": 0,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"pool.name\": \"ap148964c\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCP7RV2bWZE2/IJNlkEEPHLcoRE1dp3j9f8Y9CzFbIilbJBN0ifJYJfPfdfqcDbxCs7q3nJ+ZHjCtRpAWZ42/gqRHqz+ALzg0tBnijNhfeGXYCoUXiAKiguc3R/jexELOhYZcEOlYt4eU2BEJ4kGs7oXCqqh+yfDg/qu5MpoSz1DQ==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg51617_aks2809084c_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg51617_aks2809084c_centralus/providers/Microsoft.Network/publicIPAddresses/2648cf0f-62d2-4715-96e9-98f3b1100956\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg51617_aks2809084c_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks2809084c-agentpool\",\n \"clientId\": \"65cdde92-5745-4710-b851-29771e374526\",\n \"objectId\": \"68dbeb1c-8fdc-408d-a300-882d968c63b4\"\n }\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"7466b15f-ecfb-4c86-96d4-304c2ffa1b30\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "x-ms-request-id" : "53ed53e7-30d4-49ca-80db-100c5e288414", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c/start?api-version=2022-04-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "fcc4cc81-97b3-4455-bf46-c66265b467e0", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "eb1c8cb5-ded9-4e63-8238-7d58255f9d3d" }, "Response" : { - "content-length" : "0", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "8608932f-7926-4101-a2f8-8ee6745d7629", - "Date" : "Fri, 08 Apr 2022 08:43:11 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "46ecbaa2-5cc0-4124-bf6a-bfb71a95b3a1", + "Date" : "Mon, 25 Jul 2022 04:09:11 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084311Z:8608932f-7926-4101-a2f8-8ee6745d7629", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040911Z:46ecbaa2-5cc0-4124-bf6a-bfb71a95b3a1", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31", - "x-ms-request-id" : "c365339b-11dc-4750-b1ef-3ed6c740e037", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31" + "x-ms-request-id" : "b4131cc8-6b38-4d85-a194-c183a8bae6f9", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", + "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "aac24cd6-8571-4d43-9bff-3b2f2dc248b3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "85cd05a8-c274-48e7-90a0-0db3d304cf03" }, "Response" : { "content-length" : "121", @@ -877,23 +929,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", - "x-ms-correlation-request-id" : "47b08173-0086-4b56-b8f8-afdfaf589dc0", - "Date" : "Fri, 08 Apr 2022 08:43:41 GMT", + "x-ms-correlation-request-id" : "5ee3e29c-de99-4a95-85cc-cb6c0074b759", + "Date" : "Mon, 25 Jul 2022 04:09:42 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084341Z:47b08173-0086-4b56-b8f8-afdfaf589dc0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040942Z:5ee3e29c-de99-4a95-85cc-cb6c0074b759", "Expires" : "-1", - "x-ms-request-id" : "9aa18da3-5dd0-4194-910d-6a5137c5a2cb", - "Body" : "{\n \"name\": \"9b3365c3-dc11-5047-b1ef-3ed6c740e037\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:43:11.34Z\"\n }", + "x-ms-request-id" : "459f1f63-25fa-4ac2-ace0-82f7228a4b60", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "6d664e3d-537f-439a-8a15-6eab610f4cff" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9e9dd3cf-4de0-47cf-afb6-7cb32acb28f8" }, "Response" : { "content-length" : "121", @@ -901,25 +953,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1e8bec99-c3d5-45c3-b01a-af3fcd747d93", - "Date" : "Fri, 08 Apr 2022 08:44:11 GMT", + "x-ms-correlation-request-id" : "e18afed9-aa1a-4a99-8971-018c1cb83b3f", + "Date" : "Mon, 25 Jul 2022 04:10:12 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084412Z:1e8bec99-c3d5-45c3-b01a-af3fcd747d93", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041013Z:e18afed9-aa1a-4a99-8971-018c1cb83b3f", "Expires" : "-1", - "x-ms-request-id" : "3e2d98df-62e4-46e4-a4af-8b019943b352", - "Body" : "{\n \"name\": \"9b3365c3-dc11-5047-b1ef-3ed6c740e037\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:43:11.34Z\"\n }", + "x-ms-request-id" : "c35945fc-6a08-4ede-b62e-426cc527eff0", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "ec334ba5-bb48-4990-a610-c48ecec5b2db" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "251ec2f8-3fdd-4f88-abcf-891d3dbf86f4" }, "Response" : { "content-length" : "121", @@ -929,23 +981,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", - "x-ms-correlation-request-id" : "edc31e8b-9315-4841-b933-b0d5d8cd3486", - "Date" : "Fri, 08 Apr 2022 08:44:42 GMT", + "x-ms-correlation-request-id" : "6466385a-0ab8-4d51-9983-40a724c38dbc", + "Date" : "Mon, 25 Jul 2022 04:10:44 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084443Z:edc31e8b-9315-4841-b933-b0d5d8cd3486", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041044Z:6466385a-0ab8-4d51-9983-40a724c38dbc", "Expires" : "-1", - "x-ms-request-id" : "79cc51a1-c0c1-470d-b73f-09337218d8af", - "Body" : "{\n \"name\": \"9b3365c3-dc11-5047-b1ef-3ed6c740e037\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:43:11.34Z\"\n }", + "x-ms-request-id" : "2b1e0127-6e01-4a43-a472-fe841489398b", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "804067f1-74c7-495d-bd40-055b48d95bb0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a4fcb32d-08bb-4a4f-b3f5-c88b7f59043f" }, "Response" : { "content-length" : "121", @@ -955,23 +1007,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", - "x-ms-correlation-request-id" : "fc38cb7d-d4db-4fb3-a2a7-ccbb96692b23", - "Date" : "Fri, 08 Apr 2022 08:45:13 GMT", + "x-ms-correlation-request-id" : "41f58ddb-7b2f-4a24-b4d7-f43728b8bb3d", + "Date" : "Mon, 25 Jul 2022 04:11:14 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084514Z:fc38cb7d-d4db-4fb3-a2a7-ccbb96692b23", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041115Z:41f58ddb-7b2f-4a24-b4d7-f43728b8bb3d", "Expires" : "-1", - "x-ms-request-id" : "186f5353-ef52-4f14-8ce7-ead05484272f", - "Body" : "{\n \"name\": \"9b3365c3-dc11-5047-b1ef-3ed6c740e037\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:43:11.34Z\"\n }", + "x-ms-request-id" : "27360e11-7370-4a49-a148-80d1c584cdc5", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d0ed9cd7-b030-4391-b3f1-94bf2c479547" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b1311596-97ef-47d5-9eee-27b9808a4c93" }, "Response" : { "content-length" : "121", @@ -979,25 +1031,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f7c6fd4f-9d29-49be-95fc-5cd873334d7e", - "Date" : "Fri, 08 Apr 2022 08:45:44 GMT", + "x-ms-correlation-request-id" : "a2e1a581-c9d4-483e-a228-4736d42b03f6", + "Date" : "Mon, 25 Jul 2022 04:11:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084545Z:f7c6fd4f-9d29-49be-95fc-5cd873334d7e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041146Z:a2e1a581-c9d4-483e-a228-4736d42b03f6", "Expires" : "-1", - "x-ms-request-id" : "9725ca7f-af5d-4b8b-9d7c-35564f9ed6c2", - "Body" : "{\n \"name\": \"9b3365c3-dc11-5047-b1ef-3ed6c740e037\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:43:11.34Z\"\n }", + "x-ms-request-id" : "bfabefc8-ea1a-4f38-b14d-769c357bb580", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "901f8665-62c5-4089-9997-4e3c989c2a3e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9da2859b-c90b-4ebb-9b07-b79fdfe25005" }, "Response" : { "content-length" : "121", @@ -1007,208 +1059,208 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", - "x-ms-correlation-request-id" : "efd79753-212c-4b34-854d-8e0eb62327fb", - "Date" : "Fri, 08 Apr 2022 08:46:15 GMT", + "x-ms-correlation-request-id" : "95e3861a-739d-4cfb-bd25-df901af5d774", + "Date" : "Mon, 25 Jul 2022 04:12:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084615Z:efd79753-212c-4b34-854d-8e0eb62327fb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041217Z:95e3861a-739d-4cfb-bd25-df901af5d774", "Expires" : "-1", - "x-ms-request-id" : "dda99808-e6a7-4263-b577-2c1fb5818c2f", - "Body" : "{\n \"name\": \"9b3365c3-dc11-5047-b1ef-3ed6c740e037\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:43:11.34Z\"\n }", + "x-ms-request-id" : "3c244932-812f-4bd1-a352-70bf63a149ed", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "626e029b-2938-46bf-993d-f159a024a76b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "91e4492b-a46f-43c4-a502-0dadfcb56172" }, "Response" : { - "content-length" : "121", + "content-length" : "165", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf34a9f3-ca80-4e77-b3b2-e274404520f2", - "Date" : "Fri, 08 Apr 2022 08:46:46 GMT", + "x-ms-correlation-request-id" : "acd4dcf0-6911-4d10-a371-f1bc1c0e2846", + "Date" : "Mon, 25 Jul 2022 04:12:48 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084646Z:bf34a9f3-ca80-4e77-b3b2-e274404520f2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041248Z:acd4dcf0-6911-4d10-a371-f1bc1c0e2846", "Expires" : "-1", - "x-ms-request-id" : "9df16257-9a07-4f39-811e-1c89cf4ffdc2", - "Body" : "{\n \"name\": \"9b3365c3-dc11-5047-b1ef-3ed6c740e037\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:43:11.34Z\"\n }", + "x-ms-request-id" : "cec76e79-c894-4151-89af-cdf07f0b9045", + "Body" : "{\n \"name\": \"94999cfe-a9c6-3842-8f9e-b584c558975b\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T04:05:04.78Z\",\n \"endTime\": \"2022-07-25T04:12:45.0823543Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "2162c975-a66a-4986-8f1d-419678e9b795" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9a49f164-cbb1-45f0-a0c3-7bf992c13a29" }, "Response" : { - "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9ea9c7e5-9b76-4ff2-9438-d3096a10eac9", - "Date" : "Fri, 08 Apr 2022 08:47:16 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", + "StatusCode" : "204", + "x-ms-correlation-request-id" : "49e5afd2-def3-4ee7-9982-1c45d2f291ec", + "Date" : "Mon, 25 Jul 2022 04:12:49 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084717Z:9ea9c7e5-9b76-4ff2-9438-d3096a10eac9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041249Z:49e5afd2-def3-4ee7-9982-1c45d2f291ec", "Expires" : "-1", - "x-ms-request-id" : "75085edc-63dc-4196-87b2-98e9bc70e0f3", - "Body" : "{\n \"name\": \"9b3365c3-dc11-5047-b1ef-3ed6c740e037\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:43:11.34Z\"\n }", - "Content-Type" : "application/json" + "x-ms-request-id" : "a41b55af-91f6-49ac-97c0-599c708f6bd7", + "Body" : "", + "Content-Type" : "application/json", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/fe9c9994-c6a9-4238-8f9e-b584c558975b?api-version=2017-08-31" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "221a3830-8964-44dd-9f7a-8ac0f3f9cb71" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "60e21a2a-5c9e-4b5f-b76d-0d7c026eb1cb", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "121", + "content-length" : "4236", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", - "x-ms-correlation-request-id" : "4049a14d-9132-4ca5-a61e-280355c47949", - "Date" : "Fri, 08 Apr 2022 08:47:47 GMT", + "x-ms-correlation-request-id" : "95dbc630-d775-4754-9bc1-a972b3512c1a", + "Date" : "Mon, 25 Jul 2022 04:12:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084748Z:4049a14d-9132-4ca5-a61e-280355c47949", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041250Z:95dbc630-d775-4754-9bc1-a972b3512c1a", "Expires" : "-1", - "x-ms-request-id" : "844f365e-0537-4580-8360-352364bc8c78", - "Body" : "{\n \"name\": \"9b3365c3-dc11-5047-b1ef-3ed6c740e037\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:43:11.34Z\"\n }", + "x-ms-request-id" : "1a037712-b268-469e-8ba4-2bae2db85578", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84\",\n \"location\": \"centralus\",\n \"name\": \"aks72698a84\",\n \"tags\": {\n \"tag1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns976668\",\n \"fqdn\": \"mp1dns976668-086f40b5.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns976668-086f40b5.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0374601\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"pool.name\": \"ap0374601\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1316930\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"pool.name\": \"ap1316930\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCAtWO2eWKPaRX7uhBzxXhKONUaL8d+YQXjwAmFRiZcID1RA3/fkeMgPxw8BpmeaYTmmepSPTvejEOhxnOQ7eLK/jagtKOADLT42XAZyFz+v0q6d5jXe1LrmTMkMY+ubWIpj3+mSpP1lSgmP09ncjJDKDJohuIWCbhkN6WXe1g2cw==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg87061_aks72698a84_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg87061_aks72698a84_centralus/providers/Microsoft.Network/publicIPAddresses/671f700b-12f5-44af-ab09-c034d043e0dc\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg87061_aks72698a84_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks72698a84-agentpool\",\n \"clientId\": \"4f196bcd-c004-4221-bc45-e4bf30a0cf8e\",\n \"objectId\": \"778087af-d736-4f6c-9de5-894da6da2ff4\"\n }\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"c23d9852-89fc-4b8b-bca1-e93b439c6532\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84/agentPools/ap230435c?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "b3ad7b10-cbf9-468a-912e-4176848e3fc0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "80a9bbbf-4ba9-4d2a-826b-8d50d2919bca", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "165", + "content-length" : "1061", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a63cb9c7-01e6-408a-90d4-78546a650cd5", - "Date" : "Fri, 08 Apr 2022 08:48:18 GMT", + "StatusCode" : "201", + "x-ms-correlation-request-id" : "0990b055-ddda-46fb-b7ac-a6b61932b956", + "Date" : "Mon, 25 Jul 2022 04:12:52 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084819Z:a63cb9c7-01e6-408a-90d4-78546a650cd5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041253Z:0990b055-ddda-46fb-b7ac-a6b61932b956", "Expires" : "-1", - "x-ms-request-id" : "c1662a23-b13b-45a6-ac91-c28bcbe6c671", - "Body" : "{\n \"name\": \"9b3365c3-dc11-5047-b1ef-3ed6c740e037\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:43:11.34Z\",\n \"endTime\": \"2022-04-08T08:48:02.0295423Z\"\n }", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/2b998842-8a52-4e2a-9050-d184310879da?api-version=2017-08-31", + "x-ms-request-id" : "2b998842-8a52-4e2a-9050-d184310879da", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84/agentPools/ap230435c\",\n \"name\": \"ap230435c\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"state\": \"created\"\n },\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\",\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/2b998842-8a52-4e2a-9050-d184310879da?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "eaf79f5d-a76b-4e0b-8eac-72d40f3a7b39" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6348edb8-5e34-45a5-a604-5ae7497d0456" }, "Response" : { + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "204", - "x-ms-correlation-request-id" : "2c173a57-7b5e-4c86-b746-a56828eb0e66", - "Date" : "Fri, 08 Apr 2022 08:48:18 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "1c7e8ab0-4c82-4a94-b239-686ab68f97c9", + "Date" : "Mon, 25 Jul 2022 04:13:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084819Z:2c173a57-7b5e-4c86-b746-a56828eb0e66", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041323Z:1c7e8ab0-4c82-4a94-b239-686ab68f97c9", "Expires" : "-1", - "x-ms-request-id" : "b53442ac-59b5-4c40-be05-cd597e2e9046", - "Body" : "", - "Content-Type" : "application/json", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operationresults/c365339b-11dc-4750-b1ef-3ed6c740e037?api-version=2017-08-31" + "x-ms-request-id" : "fb9f78b2-a8d8-4c76-a17b-fed2cbb7488d", + "Body" : "{\n \"name\": \"4288992b-528a-2a4e-9050-d184310879da\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:12:53.13Z\"\n }", + "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/2b998842-8a52-4e2a-9050-d184310879da?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "72e8067a-a8d5-43fb-98e7-4833090a4dc5", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7875a19e-0e40-4a7f-8d2a-6377fb8a21a9" }, "Response" : { - "content-length" : "3913", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1246fb1a-8ebf-4f26-b2c4-6f651bb588b6", - "Date" : "Fri, 08 Apr 2022 08:48:19 GMT", + "x-ms-correlation-request-id" : "7354c445-aaa0-4678-98b1-c6eee07ead04", + "Date" : "Mon, 25 Jul 2022 04:13:53 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084820Z:1246fb1a-8ebf-4f26-b2c4-6f651bb588b6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041354Z:7354c445-aaa0-4678-98b1-c6eee07ead04", "Expires" : "-1", - "x-ms-request-id" : "58422c0b-0afa-4715-b181-b7411bb023b3", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c\",\n \"location\": \"centralus\",\n \"name\": \"aks2809084c\",\n \"tags\": {\n \"tag1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns199935\",\n \"fqdn\": \"mp1dns199935-ddf6dcfb.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns199935-ddf6dcfb.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0620401\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"pool.name\": \"ap0620401\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap148964c\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"pool.name\": \"ap148964c\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCP7RV2bWZE2/IJNlkEEPHLcoRE1dp3j9f8Y9CzFbIilbJBN0ifJYJfPfdfqcDbxCs7q3nJ+ZHjCtRpAWZ42/gqRHqz+ALzg0tBnijNhfeGXYCoUXiAKiguc3R/jexELOhYZcEOlYt4eU2BEJ4kGs7oXCqqh+yfDg/qu5MpoSz1DQ==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg51617_aks2809084c_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg51617_aks2809084c_centralus/providers/Microsoft.Network/publicIPAddresses/2648cf0f-62d2-4715-96e9-98f3b1100956\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg51617_aks2809084c_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks2809084c-agentpool\",\n \"clientId\": \"65cdde92-5745-4710-b851-29771e374526\",\n \"objectId\": \"68dbeb1c-8fdc-408d-a300-882d968c63b4\"\n }\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"7466b15f-ecfb-4c86-96d4-304c2ffa1b30\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "x-ms-request-id" : "07cb3fa0-b1d0-4912-9492-f0de9ac57e41", + "Body" : "{\n \"name\": \"4288992b-528a-2a4e-9050-d184310879da\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:12:53.13Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c/agentPools/ap2067261?api-version=2022-04-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/2b998842-8a52-4e2a-9050-d184310879da?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0324c0af-8c64-4cc6-8617-a49b15aed78f", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c29569a8-a797-4f15-b00c-4280915a9e8b" }, "Response" : { - "content-length" : "1016", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "a48a5d27-700b-40d5-8f4e-d3a27d15c71b", - "Date" : "Fri, 08 Apr 2022 08:48:22 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "86ec0580-a234-44d1-af38-f896f319251a", + "Date" : "Mon, 25 Jul 2022 04:14:24 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084823Z:a48a5d27-700b-40d5-8f4e-d3a27d15c71b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041425Z:86ec0580-a234-44d1-af38-f896f319251a", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/20f63de5-8c34-49c0-aab7-d0b6f6b84670?api-version=2017-08-31", - "x-ms-request-id" : "20f63de5-8c34-49c0-aab7-d0b6f6b84670", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c/agentPools/ap2067261\",\n \"name\": \"ap2067261\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"state\": \"created\"\n },\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\",\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n }", + "x-ms-request-id" : "516620ef-3295-49be-815a-0471f5338d69", + "Body" : "{\n \"name\": \"4288992b-528a-2a4e-9050-d184310879da\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:12:53.13Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/20f63de5-8c34-49c0-aab7-d0b6f6b84670?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/2b998842-8a52-4e2a-9050-d184310879da?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "4320626d-d311-44f2-be85-4f0a6c43c3d3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d171fe7c-bf04-4b54-b6b5-07596992c36b" }, "Response" : { "content-length" : "121", @@ -1216,25 +1268,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", - "x-ms-correlation-request-id" : "478bc05a-e2f7-47cc-bbcd-a565a894e4ef", - "Date" : "Fri, 08 Apr 2022 08:48:53 GMT", + "x-ms-correlation-request-id" : "e574eaa5-5929-48cd-8e28-74b916997c8a", + "Date" : "Mon, 25 Jul 2022 04:14:56 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084853Z:478bc05a-e2f7-47cc-bbcd-a565a894e4ef", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041456Z:e574eaa5-5929-48cd-8e28-74b916997c8a", "Expires" : "-1", - "x-ms-request-id" : "386f9a1b-5e24-4a02-b95f-e4c08bbf0f34", - "Body" : "{\n \"name\": \"e53df620-348c-c049-aab7-d0b6f6b84670\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:48:23.14Z\"\n }", + "x-ms-request-id" : "30489dc9-1ef8-4928-877a-0a6c90967ad4", + "Body" : "{\n \"name\": \"4288992b-528a-2a4e-9050-d184310879da\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:12:53.13Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/20f63de5-8c34-49c0-aab7-d0b6f6b84670?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/2b998842-8a52-4e2a-9050-d184310879da?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "57d3bf0a-a194-443d-8cbe-a274989ac9e4" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "503e6d9c-1056-4fba-80f5-a06bd649565c" }, "Response" : { "content-length" : "121", @@ -1244,23 +1296,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", - "x-ms-correlation-request-id" : "82762cfe-e49b-4de0-bf35-f45b40e490f2", - "Date" : "Fri, 08 Apr 2022 08:49:23 GMT", + "x-ms-correlation-request-id" : "121d58ad-fa19-42d6-8f0b-9a39831aceb1", + "Date" : "Mon, 25 Jul 2022 04:15:27 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084924Z:82762cfe-e49b-4de0-bf35-f45b40e490f2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041527Z:121d58ad-fa19-42d6-8f0b-9a39831aceb1", "Expires" : "-1", - "x-ms-request-id" : "a553815b-d55f-426e-b5dc-ca6457994a09", - "Body" : "{\n \"name\": \"e53df620-348c-c049-aab7-d0b6f6b84670\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:48:23.14Z\"\n }", + "x-ms-request-id" : "dde15329-02e7-45a8-a3cc-87b196dd67e1", + "Body" : "{\n \"name\": \"4288992b-528a-2a4e-9050-d184310879da\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:12:53.13Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/20f63de5-8c34-49c0-aab7-d0b6f6b84670?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/2b998842-8a52-4e2a-9050-d184310879da?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5f3ceeda-3811-42c5-b09f-170f083f2fe6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7426b252-882b-4498-b029-e8bcb15f38a8" }, "Response" : { "content-length" : "121", @@ -1270,23 +1322,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", - "x-ms-correlation-request-id" : "aaa8bb3a-9212-4fdf-93a7-fc91f2f06538", - "Date" : "Fri, 08 Apr 2022 08:49:54 GMT", + "x-ms-correlation-request-id" : "470d8147-c773-4823-8ba6-d35c2c220d19", + "Date" : "Mon, 25 Jul 2022 04:15:58 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T084955Z:aaa8bb3a-9212-4fdf-93a7-fc91f2f06538", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041558Z:470d8147-c773-4823-8ba6-d35c2c220d19", "Expires" : "-1", - "x-ms-request-id" : "5b3e7014-e4c5-48b3-ac9e-f316b33b14f9", - "Body" : "{\n \"name\": \"e53df620-348c-c049-aab7-d0b6f6b84670\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:48:23.14Z\"\n }", + "x-ms-request-id" : "531f1e11-46e8-48da-9dc9-f72d5d7296bc", + "Body" : "{\n \"name\": \"4288992b-528a-2a4e-9050-d184310879da\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:12:53.13Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/20f63de5-8c34-49c0-aab7-d0b6f6b84670?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/2b998842-8a52-4e2a-9050-d184310879da?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8c9dc67a-1c3a-4dd0-a984-e98d19b4c0fe" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "528900a2-6e33-4d5d-96bf-bc7db77bf027" }, "Response" : { "content-length" : "121", @@ -1294,183 +1346,183 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a940873-6ef6-4ada-97ac-70246c22d118", - "Date" : "Fri, 08 Apr 2022 08:50:25 GMT", + "x-ms-correlation-request-id" : "8c978785-abae-4ee7-8f61-aea4cf6afad8", + "Date" : "Mon, 25 Jul 2022 04:16:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085026Z:8a940873-6ef6-4ada-97ac-70246c22d118", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041629Z:8c978785-abae-4ee7-8f61-aea4cf6afad8", "Expires" : "-1", - "x-ms-request-id" : "90fe3b2d-2bc7-4055-94da-8b87323b080f", - "Body" : "{\n \"name\": \"e53df620-348c-c049-aab7-d0b6f6b84670\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:48:23.14Z\"\n }", + "x-ms-request-id" : "1b64e5de-1214-4310-842a-925148a850ee", + "Body" : "{\n \"name\": \"4288992b-528a-2a4e-9050-d184310879da\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:12:53.13Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/20f63de5-8c34-49c0-aab7-d0b6f6b84670?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/2b998842-8a52-4e2a-9050-d184310879da?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "63cd97a2-a8a5-4e1b-9e63-7276fe26f7ae" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "97f73d36-84bc-4a2b-b9df-999f1293eee6" }, "Response" : { - "content-length" : "121", + "content-length" : "165", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", - "x-ms-correlation-request-id" : "619b74a0-5e24-4505-ab1f-a37c528c17b4", - "Date" : "Fri, 08 Apr 2022 08:50:56 GMT", + "x-ms-correlation-request-id" : "ce7f1eae-c591-43b6-93e0-860cfcd37c3b", + "Date" : "Mon, 25 Jul 2022 04:17:00 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085056Z:619b74a0-5e24-4505-ab1f-a37c528c17b4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041700Z:ce7f1eae-c591-43b6-93e0-860cfcd37c3b", "Expires" : "-1", - "x-ms-request-id" : "d5bce691-5a03-4705-b2fc-9e3dd06cde24", - "Body" : "{\n \"name\": \"e53df620-348c-c049-aab7-d0b6f6b84670\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:48:23.14Z\"\n }", + "x-ms-request-id" : "c563135e-5bde-449f-a790-89dc333978fa", + "Body" : "{\n \"name\": \"4288992b-528a-2a4e-9050-d184310879da\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T04:12:53.13Z\",\n \"endTime\": \"2022-07-25T04:16:54.8562433Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/20f63de5-8c34-49c0-aab7-d0b6f6b84670?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84/agentPools/ap230435c?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "dd7adcdf-a7f0-4432-89d0-8d57768daf32" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "90c93b52-4bfa-4b41-bb56-a79367b2c122" }, "Response" : { - "content-length" : "121", + "content-length" : "1062", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", - "x-ms-correlation-request-id" : "651a1e66-c493-4f45-8b60-2c7dc56106e9", - "Date" : "Fri, 08 Apr 2022 08:51:27 GMT", + "x-ms-correlation-request-id" : "676da7ce-0fb9-4e8c-aaeb-7379f05ee0ad", + "Date" : "Mon, 25 Jul 2022 04:17:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085127Z:651a1e66-c493-4f45-8b60-2c7dc56106e9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041702Z:676da7ce-0fb9-4e8c-aaeb-7379f05ee0ad", "Expires" : "-1", - "x-ms-request-id" : "a5998273-af5b-43c0-860e-3e36f826a919", - "Body" : "{\n \"name\": \"e53df620-348c-c049-aab7-d0b6f6b84670\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:48:23.14Z\"\n }", + "x-ms-request-id" : "23d37a08-edac-4963-8bbe-170656fa1ff1", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84/agentPools/ap230435c\",\n \"name\": \"ap230435c\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"state\": \"created\"\n },\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\",\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/20f63de5-8c34-49c0-aab7-d0b6f6b84670?api-version=2017-08-31", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "7b6ed8f1-8c0f-4c42-b88b-3957bf5b33cd" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1d600424-3d47-4854-ae86-45925831d719", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "121", + "content-length" : "5050", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b252cf1-fda2-4808-99c0-d2e5c234366e", - "Date" : "Fri, 08 Apr 2022 08:51:58 GMT", + "x-ms-correlation-request-id" : "cfdcc132-f1de-4244-9489-21513c80f864", + "Date" : "Mon, 25 Jul 2022 04:17:09 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085158Z:9b252cf1-fda2-4808-99c0-d2e5c234366e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041710Z:cfdcc132-f1de-4244-9489-21513c80f864", "Expires" : "-1", - "x-ms-request-id" : "caa075da-1bd8-4efe-9284-d310f87a698a", - "Body" : "{\n \"name\": \"e53df620-348c-c049-aab7-d0b6f6b84670\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:48:23.14Z\"\n }", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", + "x-ms-request-id" : "0708598c-881e-47a4-94dd-a844a803ff48", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84\",\n \"location\": \"centralus\",\n \"name\": \"aks72698a84\",\n \"tags\": {\n \"tag2\": \"value2\",\n \"tag3\": \"value3\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns976668\",\n \"fqdn\": \"mp1dns976668-086f40b5.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns976668-086f40b5.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0374601\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"pool.name\": \"ap0374601\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1316930\",\n \"count\": 2,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"state\": \"updated\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap230435c\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"state\": \"created\"\n },\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCAtWO2eWKPaRX7uhBzxXhKONUaL8d+YQXjwAmFRiZcID1RA3/fkeMgPxw8BpmeaYTmmepSPTvejEOhxnOQ7eLK/jagtKOADLT42XAZyFz+v0q6d5jXe1LrmTMkMY+ubWIpj3+mSpP1lSgmP09ncjJDKDJohuIWCbhkN6WXe1g2cw==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg87061_aks72698a84_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg87061_aks72698a84_centralus/providers/Microsoft.Network/publicIPAddresses/671f700b-12f5-44af-ab09-c034d043e0dc\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg87061_aks72698a84_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks72698a84-agentpool\",\n \"clientId\": \"4f196bcd-c004-4221-bc45-e4bf30a0cf8e\",\n \"objectId\": \"778087af-d736-4f6c-9de5-894da6da2ff4\"\n }\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"c23d9852-89fc-4b8b-bca1-e93b439c6532\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/20f63de5-8c34-49c0-aab7-d0b6f6b84670?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "1dafb9d7-0f70-4b88-b97a-1d47e6b525d3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ac764820-b676-48ae-9ba8-f519926b1120" }, "Response" : { - "content-length" : "165", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ab8e5f77-16d9-445a-90b9-b7454a9feb0a", - "Date" : "Fri, 08 Apr 2022 08:52:29 GMT", + "x-ms-correlation-request-id" : "5996ca00-8104-428a-816e-86bc8794794c", + "Date" : "Mon, 25 Jul 2022 04:17:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085229Z:ab8e5f77-16d9-445a-90b9-b7454a9feb0a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041740Z:5996ca00-8104-428a-816e-86bc8794794c", "Expires" : "-1", - "x-ms-request-id" : "8703263f-71b9-4c94-a200-4d4f2fb6f480", - "Body" : "{\n \"name\": \"e53df620-348c-c049-aab7-d0b6f6b84670\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:48:23.14Z\",\n \"endTime\": \"2022-04-08T08:52:21.6117615Z\"\n }", + "x-ms-request-id" : "91956a83-5613-4818-a96a-85a81000f7ba", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c/agentPools/ap2067261?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "ce75c062-c5ee-4336-91be-af4c723a2bf7" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "816f48ba-9ea0-4e51-af5b-af1311a6b853" }, "Response" : { - "content-length" : "1017", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6e693f10-2f02-4afe-9c84-b0f1fbac09e5", - "Date" : "Fri, 08 Apr 2022 08:52:30 GMT", + "x-ms-correlation-request-id" : "0fd28b5e-463c-40bb-b233-45683fcfa953", + "Date" : "Mon, 25 Jul 2022 04:18:11 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085230Z:6e693f10-2f02-4afe-9c84-b0f1fbac09e5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041811Z:0fd28b5e-463c-40bb-b233-45683fcfa953", "Expires" : "-1", - "x-ms-request-id" : "cd5173f4-de3a-4c08-8b2b-48edba018485", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c/agentPools/ap2067261\",\n \"name\": \"ap2067261\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"state\": \"created\"\n },\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\",\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n }", + "x-ms-request-id" : "12c40fae-00a8-4152-9100-10f4295df725", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c?api-version=2022-04-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "6e8ce47d-54e5-46a9-bf15-4e9eefb30cad", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8c3e5325-de1b-419d-bcc2-574241cd73bd" }, "Response" : { - "content-length" : "4680", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", - "x-ms-correlation-request-id" : "4980b3eb-bb39-443a-88d6-064c10cb062f", - "Date" : "Fri, 08 Apr 2022 08:52:37 GMT", + "x-ms-correlation-request-id" : "69cf0995-617f-4996-90e4-fd96517f662d", + "Date" : "Mon, 25 Jul 2022 04:18:42 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085237Z:4980b3eb-bb39-443a-88d6-064c10cb062f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041842Z:69cf0995-617f-4996-90e4-fd96517f662d", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/db8cb87f-c6f8-4225-858b-d954c6ef5ace?api-version=2017-08-31", - "x-ms-request-id" : "db8cb87f-c6f8-4225-858b-d954c6ef5ace", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c\",\n \"location\": \"centralus\",\n \"name\": \"aks2809084c\",\n \"tags\": {\n \"tag2\": \"value2\",\n \"tag3\": \"value3\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns199935\",\n \"fqdn\": \"mp1dns199935-ddf6dcfb.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns199935-ddf6dcfb.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0620401\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"pool.name\": \"ap0620401\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap148964c\",\n \"count\": 2,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"state\": \"updated\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap2067261\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"state\": \"created\"\n },\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCP7RV2bWZE2/IJNlkEEPHLcoRE1dp3j9f8Y9CzFbIilbJBN0ifJYJfPfdfqcDbxCs7q3nJ+ZHjCtRpAWZ42/gqRHqz+ALzg0tBnijNhfeGXYCoUXiAKiguc3R/jexELOhYZcEOlYt4eU2BEJ4kGs7oXCqqh+yfDg/qu5MpoSz1DQ==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg51617_aks2809084c_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg51617_aks2809084c_centralus/providers/Microsoft.Network/publicIPAddresses/2648cf0f-62d2-4715-96e9-98f3b1100956\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg51617_aks2809084c_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks2809084c-agentpool\",\n \"clientId\": \"65cdde92-5745-4710-b851-29771e374526\",\n \"objectId\": \"68dbeb1c-8fdc-408d-a300-882d968c63b4\"\n }\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"7466b15f-ecfb-4c86-96d4-304c2ffa1b30\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "x-ms-request-id" : "0ae4c399-fb27-44a1-ad14-6466f0852ab9", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/db8cb87f-c6f8-4225-858b-d954c6ef5ace?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "4a5a21da-f8bd-4e89-b833-49949befd12f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "15125545-456c-415e-b014-365de8efd19c" }, "Response" : { "content-length" : "121", @@ -1480,23 +1532,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1239c3f0-6c6c-4b0d-919f-0b90d68b65e4", - "Date" : "Fri, 08 Apr 2022 08:53:07 GMT", + "x-ms-correlation-request-id" : "78f2d014-58b1-4561-8ed5-db8692da52ce", + "Date" : "Mon, 25 Jul 2022 04:19:13 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085308Z:1239c3f0-6c6c-4b0d-919f-0b90d68b65e4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041913Z:78f2d014-58b1-4561-8ed5-db8692da52ce", "Expires" : "-1", - "x-ms-request-id" : "d4b5a44f-de25-415b-ade0-4e162b9c6cee", - "Body" : "{\n \"name\": \"7fb88cdb-f8c6-2542-858b-d954c6ef5ace\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:52:35.31Z\"\n }", + "x-ms-request-id" : "b92fd8bb-b6eb-462e-b527-69c16f43fc64", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/db8cb87f-c6f8-4225-858b-d954c6ef5ace?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "ed78ecee-cabe-4bb8-bb7b-9bab6da96ac2" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "85eceafa-813b-4ee8-8cb9-3fbe16e42378" }, "Response" : { "content-length" : "121", @@ -1506,23 +1558,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", - "x-ms-correlation-request-id" : "511f928b-d08e-42d5-9d22-2d7fb6b4578a", - "Date" : "Fri, 08 Apr 2022 08:53:38 GMT", + "x-ms-correlation-request-id" : "bbc41dc2-71c9-42f1-bcd0-3a8e7e3b5b14", + "Date" : "Mon, 25 Jul 2022 04:19:44 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085338Z:511f928b-d08e-42d5-9d22-2d7fb6b4578a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T041945Z:bbc41dc2-71c9-42f1-bcd0-3a8e7e3b5b14", "Expires" : "-1", - "x-ms-request-id" : "436f1e8e-2f16-4481-b9f4-66eac55257ef", - "Body" : "{\n \"name\": \"7fb88cdb-f8c6-2542-858b-d954c6ef5ace\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:52:35.31Z\"\n }", + "x-ms-request-id" : "02df5369-8eb0-489f-8c61-f58bcbf7333f", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/db8cb87f-c6f8-4225-858b-d954c6ef5ace?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d0697461-c80d-4697-97d9-3fedc435522e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c4b7e077-2820-41ac-b5b2-d10c378d697b" }, "Response" : { "content-length" : "121", @@ -1530,25 +1582,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", - "x-ms-correlation-request-id" : "afa60852-bec8-4cb9-8bbe-ac25d51fec74", - "Date" : "Fri, 08 Apr 2022 08:54:09 GMT", + "x-ms-correlation-request-id" : "80eabcbb-9531-4ed5-bdd7-9a7ad8cfcf19", + "Date" : "Mon, 25 Jul 2022 04:20:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085409Z:afa60852-bec8-4cb9-8bbe-ac25d51fec74", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T042016Z:80eabcbb-9531-4ed5-bdd7-9a7ad8cfcf19", "Expires" : "-1", - "x-ms-request-id" : "5a905fa1-9589-431c-a2e3-ec6132bfcab2", - "Body" : "{\n \"name\": \"7fb88cdb-f8c6-2542-858b-d954c6ef5ace\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:52:35.31Z\"\n }", + "x-ms-request-id" : "0738c0f0-86d5-4d9c-8095-5cb29b7df0ef", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/db8cb87f-c6f8-4225-858b-d954c6ef5ace?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "99b918f5-c7ad-4fd7-a7e9-dacd13128393" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3ecff756-5864-4888-a155-5e2cfbe33969" }, "Response" : { "content-length" : "121", @@ -1558,23 +1610,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed0a9fee-e055-476d-a3ef-0c3c8b10c2bf", - "Date" : "Fri, 08 Apr 2022 08:54:39 GMT", + "x-ms-correlation-request-id" : "93438216-761b-4597-bca6-da156ddff494", + "Date" : "Mon, 25 Jul 2022 04:20:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085440Z:ed0a9fee-e055-476d-a3ef-0c3c8b10c2bf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T042047Z:93438216-761b-4597-bca6-da156ddff494", "Expires" : "-1", - "x-ms-request-id" : "6a5919f7-122f-46c5-9940-eaecd99b4fa6", - "Body" : "{\n \"name\": \"7fb88cdb-f8c6-2542-858b-d954c6ef5ace\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:52:35.31Z\"\n }", + "x-ms-request-id" : "6483a00b-d4ab-48da-8248-a0d9fdd58c82", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/db8cb87f-c6f8-4225-858b-d954c6ef5ace?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "9a0aa3fa-2353-44f4-9ef4-b4a75ac4b3d5" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "96b2f8ae-5c86-459f-bfc5-9913cb469e2f" }, "Response" : { "content-length" : "121", @@ -1584,23 +1636,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", - "x-ms-correlation-request-id" : "9ff19ac1-96f5-455e-ba7b-54ed6c53f0d4", - "Date" : "Fri, 08 Apr 2022 08:55:10 GMT", + "x-ms-correlation-request-id" : "5ea8a2b8-a97d-4a83-9425-8f7891e5512e", + "Date" : "Mon, 25 Jul 2022 04:21:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085511Z:9ff19ac1-96f5-455e-ba7b-54ed6c53f0d4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T042117Z:5ea8a2b8-a97d-4a83-9425-8f7891e5512e", "Expires" : "-1", - "x-ms-request-id" : "137ac08c-1b97-4457-82ab-159782960d01", - "Body" : "{\n \"name\": \"7fb88cdb-f8c6-2542-858b-d954c6ef5ace\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:52:35.31Z\"\n }", + "x-ms-request-id" : "b48dba7b-cb1b-443a-9efe-521414d83924", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/db8cb87f-c6f8-4225-858b-d954c6ef5ace?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "43a4c392-2124-4c69-bdcc-2a72aeea263e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5757fcae-d8fb-40b0-91fc-bbb773bc2f7a" }, "Response" : { "content-length" : "121", @@ -1608,25 +1660,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", - "x-ms-correlation-request-id" : "eaa213e4-449f-41b9-81ed-11a1a46b1599", - "Date" : "Fri, 08 Apr 2022 08:55:41 GMT", + "x-ms-correlation-request-id" : "11e340da-d7b3-43cf-8336-c213a3987d43", + "Date" : "Mon, 25 Jul 2022 04:21:48 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085542Z:eaa213e4-449f-41b9-81ed-11a1a46b1599", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T042148Z:11e340da-d7b3-43cf-8336-c213a3987d43", "Expires" : "-1", - "x-ms-request-id" : "31fb682a-8bb4-4972-9820-39ee64954495", - "Body" : "{\n \"name\": \"7fb88cdb-f8c6-2542-858b-d954c6ef5ace\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:52:35.31Z\"\n }", + "x-ms-request-id" : "dae19f57-ea4b-4634-bd93-1511fe94fddc", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/db8cb87f-c6f8-4225-858b-d954c6ef5ace?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "3ab4a709-ca7c-4ce8-97d3-09ca48ecd61f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6b4e5f9a-8a3e-49c8-a4fc-73daf2d9c58d" }, "Response" : { "content-length" : "121", @@ -1636,23 +1688,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", - "x-ms-correlation-request-id" : "902b93ad-55db-4332-ad00-00071c02f610", - "Date" : "Fri, 08 Apr 2022 08:56:11 GMT", + "x-ms-correlation-request-id" : "48757d1a-a7e8-44fa-b8a7-824cf2b04113", + "Date" : "Mon, 25 Jul 2022 04:22:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085612Z:902b93ad-55db-4332-ad00-00071c02f610", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T042219Z:48757d1a-a7e8-44fa-b8a7-824cf2b04113", "Expires" : "-1", - "x-ms-request-id" : "11e87862-6902-48f2-9211-6edfbaa53a6c", - "Body" : "{\n \"name\": \"7fb88cdb-f8c6-2542-858b-d954c6ef5ace\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:52:35.31Z\"\n }", + "x-ms-request-id" : "7732bf77-4b0b-4fc4-b42e-e5445f9b3b20", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/db8cb87f-c6f8-4225-858b-d954c6ef5ace?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "121058f0-14ac-43dc-a631-366d30de610c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "74ef965b-9ddf-4538-892a-8576791d4dcf" }, "Response" : { "content-length" : "121", @@ -1660,25 +1712,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "x-ms-correlation-request-id" : "b0ae7494-fcfe-4d6a-913d-d4bf9c4ef017", - "Date" : "Fri, 08 Apr 2022 08:56:42 GMT", + "x-ms-correlation-request-id" : "4acad269-b8e3-433c-922c-88167a765d6c", + "Date" : "Mon, 25 Jul 2022 04:22:49 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085643Z:b0ae7494-fcfe-4d6a-913d-d4bf9c4ef017", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T042250Z:4acad269-b8e3-433c-922c-88167a765d6c", "Expires" : "-1", - "x-ms-request-id" : "eaac88ef-0e49-4c32-ad61-47c945809fdb", - "Body" : "{\n \"name\": \"7fb88cdb-f8c6-2542-858b-d954c6ef5ace\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:52:35.31Z\"\n }", + "x-ms-request-id" : "0fe2bb70-630a-4661-a3e0-80a1f2229363", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/db8cb87f-c6f8-4225-858b-d954c6ef5ace?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "b3d409bd-fccd-449b-96c5-311a7a6faff8" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d832cad5-5f46-47f6-9ba2-f418112ef273" }, "Response" : { "content-length" : "121", @@ -1686,25 +1738,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e5c77830-fa56-4958-be5a-6bb5806f1cab", - "Date" : "Fri, 08 Apr 2022 08:57:14 GMT", + "x-ms-correlation-request-id" : "b3ef19c1-606d-4f5a-9258-effd840cd204", + "Date" : "Mon, 25 Jul 2022 04:23:21 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085714Z:e5c77830-fa56-4958-be5a-6bb5806f1cab", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T042321Z:b3ef19c1-606d-4f5a-9258-effd840cd204", "Expires" : "-1", - "x-ms-request-id" : "1abc75ec-995d-4a25-9bf1-5d33a6ee0a0f", - "Body" : "{\n \"name\": \"7fb88cdb-f8c6-2542-858b-d954c6ef5ace\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:52:35.31Z\"\n }", + "x-ms-request-id" : "b6e68e32-7c2d-42eb-8e8d-5cdf3b6f38ff", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/db8cb87f-c6f8-4225-858b-d954c6ef5ace?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "56d66fa4-fc00-4042-8b7e-95381d036272" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e865845e-414a-4f6e-8b2c-849df49f915d" }, "Response" : { "content-length" : "121", @@ -1714,23 +1766,75 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", - "x-ms-correlation-request-id" : "66863103-836f-414a-a0ba-5f4a1c85201f", - "Date" : "Fri, 08 Apr 2022 08:57:44 GMT", + "x-ms-correlation-request-id" : "f251a39e-7a58-4a6b-90c2-8aca4390627f", + "Date" : "Mon, 25 Jul 2022 04:23:52 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T042352Z:f251a39e-7a58-4a6b-90c2-8aca4390627f", + "Expires" : "-1", + "x-ms-request-id" : "793793f3-f977-4706-93ad-a1c978f4918c", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ebf26dce-c772-4b3f-8d5b-527c5fe2013d" + }, + "Response" : { + "content-length" : "121", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "be44efe8-ac2f-4859-9975-75ce086e112f", + "Date" : "Mon, 25 Jul 2022 04:24:23 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T042423Z:be44efe8-ac2f-4859-9975-75ce086e112f", + "Expires" : "-1", + "x-ms-request-id" : "d9ed9cb5-e2f3-4d9d-a005-22106823411f", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6d88517d-b646-429e-816f-d800c4ab8f78" + }, + "Response" : { + "content-length" : "121", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "13b6df60-beaa-4207-8bdc-8e4e42187b65", + "Date" : "Mon, 25 Jul 2022 04:24:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085745Z:66863103-836f-414a-a0ba-5f4a1c85201f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T042454Z:13b6df60-beaa-4207-8bdc-8e4e42187b65", "Expires" : "-1", - "x-ms-request-id" : "e8f1c414-f7a2-4294-8941-6bf47054cbd6", - "Body" : "{\n \"name\": \"7fb88cdb-f8c6-2542-858b-d954c6ef5ace\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:52:35.31Z\"\n }", + "x-ms-request-id" : "165463f4-6623-4c81-8689-50dc4e6e2aed", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/db8cb87f-c6f8-4225-858b-d954c6ef5ace?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/0708598c-881e-47a4-94dd-a844a803ff48?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "ae6dde1c-5e0e-4265-bdc0-01e366763c51" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d368b667-af17-4264-8ec3-3d343fe23048" }, "Response" : { "content-length" : "165", @@ -1738,70 +1842,70 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", - "x-ms-correlation-request-id" : "0c6cdff0-af0e-47ce-968c-66ee8e1b7530", - "Date" : "Fri, 08 Apr 2022 08:58:15 GMT", + "x-ms-correlation-request-id" : "8460b491-0d46-4f70-a0e2-328c43747b41", + "Date" : "Mon, 25 Jul 2022 04:25:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085816Z:0c6cdff0-af0e-47ce-968c-66ee8e1b7530", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T042525Z:8460b491-0d46-4f70-a0e2-328c43747b41", "Expires" : "-1", - "x-ms-request-id" : "9bade2e7-e851-43e0-a543-bff6ecab67f4", - "Body" : "{\n \"name\": \"7fb88cdb-f8c6-2542-858b-d954c6ef5ace\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:52:35.31Z\",\n \"endTime\": \"2022-04-08T08:58:06.5899345Z\"\n }", + "x-ms-request-id" : "4b046353-3a34-411d-b765-4d57e00bd6a5", + "Body" : "{\n \"name\": \"8c590807-1e88-a447-94dd-a844a803ff48\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T04:17:07.83Z\",\n \"endTime\": \"2022-07-25T04:25:16.7760575Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "10ad7991-1259-4698-b1ea-becf050e572a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a39f2151-d7fb-4cc9-a230-1f076b40bc58" }, "Response" : { - "content-length" : "4684", + "content-length" : "5054", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "x-ms-correlation-request-id" : "5b26f482-8f9d-4054-bd34-394cd13858fa", - "Date" : "Fri, 08 Apr 2022 08:58:17 GMT", + "x-ms-correlation-request-id" : "b6077c46-5ea0-468d-a33d-b675e2dd087b", + "Date" : "Mon, 25 Jul 2022 04:25:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085817Z:5b26f482-8f9d-4054-bd34-394cd13858fa", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T042526Z:b6077c46-5ea0-468d-a33d-b675e2dd087b", "Expires" : "-1", - "x-ms-request-id" : "c06d72db-4700-4afe-826e-5ca100d01f85", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg51617/providers/Microsoft.ContainerService/managedClusters/aks2809084c\",\n \"location\": \"centralus\",\n \"name\": \"aks2809084c\",\n \"tags\": {\n \"tag2\": \"value2\",\n \"tag3\": \"value3\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns199935\",\n \"fqdn\": \"mp1dns199935-ddf6dcfb.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns199935-ddf6dcfb.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0620401\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"pool.name\": \"ap0620401\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap148964c\",\n \"count\": 2,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"state\": \"updated\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap2067261\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"tags\": {\n \"state\": \"created\"\n },\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCP7RV2bWZE2/IJNlkEEPHLcoRE1dp3j9f8Y9CzFbIilbJBN0ifJYJfPfdfqcDbxCs7q3nJ+ZHjCtRpAWZ42/gqRHqz+ALzg0tBnijNhfeGXYCoUXiAKiguc3R/jexELOhYZcEOlYt4eU2BEJ4kGs7oXCqqh+yfDg/qu5MpoSz1DQ==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg51617_aks2809084c_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg51617_aks2809084c_centralus/providers/Microsoft.Network/publicIPAddresses/2648cf0f-62d2-4715-96e9-98f3b1100956\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg51617_aks2809084c_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks2809084c-agentpool\",\n \"clientId\": \"65cdde92-5745-4710-b851-29771e374526\",\n \"objectId\": \"68dbeb1c-8fdc-408d-a300-882d968c63b4\"\n }\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"7466b15f-ecfb-4c86-96d4-304c2ffa1b30\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "x-ms-request-id" : "7087954c-f5de-4543-ba44-75a9ddb3600a", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg87061/providers/Microsoft.ContainerService/managedClusters/aks72698a84\",\n \"location\": \"centralus\",\n \"name\": \"aks72698a84\",\n \"tags\": {\n \"tag2\": \"value2\",\n \"tag3\": \"value3\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns976668\",\n \"fqdn\": \"mp1dns976668-086f40b5.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns976668-086f40b5.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0374601\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"pool.name\": \"ap0374601\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1316930\",\n \"count\": 2,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"state\": \"updated\"\n },\n \"nodeLabels\": {\n \"kubernetes.azure.com/enable-acr-teleport-plugin\": \"true\"\n },\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap230435c\",\n \"count\": 1,\n \"vmSize\": \"Standard_F4s_v2\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"Temporary\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"tags\": {\n \"state\": \"created\"\n },\n \"nodeLabels\": {\n \"app.1\": \"spring\",\n \"environment\": \"dev\"\n },\n \"nodeTaints\": [\n \"key=value:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCAtWO2eWKPaRX7uhBzxXhKONUaL8d+YQXjwAmFRiZcID1RA3/fkeMgPxw8BpmeaYTmmepSPTvejEOhxnOQ7eLK/jagtKOADLT42XAZyFz+v0q6d5jXe1LrmTMkMY+ubWIpj3+mSpP1lSgmP09ncjJDKDJohuIWCbhkN6WXe1g2cw==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg87061_aks72698a84_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg87061_aks72698a84_centralus/providers/Microsoft.Network/publicIPAddresses/671f700b-12f5-44af-ab09-c034d043e0dc\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg87061_aks72698a84_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks72698a84-agentpool\",\n \"clientId\": \"4f196bcd-c004-4221-bc45-e4bf30a0cf8e\",\n \"objectId\": \"778087af-d736-4f6c-9de5-894da6da2ff4\"\n }\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"c23d9852-89fc-4b8b-bca1-e93b439c6532\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg51617?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg87061?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "2f3212b4-6775-4b4c-810d-30bd48d6aa43", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "dc297090-84ce-4ee3-8c20-b5a278d1d976", "Content-Type" : "application/json" }, "Response" : { "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "StatusCode" : "202", - "x-ms-correlation-request-id" : "ae2e64b3-a2dd-42aa-9853-85022c63fc31", - "Date" : "Fri, 08 Apr 2022 08:58:20 GMT", + "x-ms-correlation-request-id" : "7795def1-d3aa-4dd8-ab83-ceca35fb62b8", + "Date" : "Mon, 25 Jul 2022 04:25:31 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-routing-request-id" : "JAPANEAST:20220408T085821Z:ae2e64b3-a2dd-42aa-9853-85022c63fc31", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T042531Z:7795def1-d3aa-4dd8-ab83-ceca35fb62b8", "Expires" : "-1", - "x-ms-request-id" : "ae2e64b3-a2dd-42aa-9853-85022c63fc31", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQUNTUkc1MTYxNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" + "x-ms-request-id" : "7795def1-d3aa-4dd8-ab83-ceca35fb62b8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQUNTUkc4NzA2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" }, "Exception" : null } ], - "variables" : [ "javaacsrg51617", "aks2809084c", "dns199935", "ap0620401", "ap148964c", "ap2067261" ] + "variables" : [ "javaacsrg87061", "aks72698a84", "dns976668", "ap0374601", "ap1316930", "ap230435c" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canCreateClusterWithSpotVM.json b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canCreateClusterWithSpotVM.json index cb6a2632425f..300c607cebd3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canCreateClusterWithSpotVM.json +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canCreateClusterWithSpotVM.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg04412?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg10113?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "eb166a20-9db0-490d-92c3-eca0250f31f4", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "fc4bb6c6-4b86-4a4a-b36f-ebd34ec3e13c", "Content-Type" : "application/json" }, "Response" : { @@ -14,51 +14,51 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "7d2ed8f7-c131-4ad3-9f85-c8c135bfac3e", - "Date" : "Fri, 08 Apr 2022 08:29:43 GMT", + "x-ms-correlation-request-id" : "235a7c83-beb5-42f6-9acd-e4af5c72b743", + "Date" : "Mon, 25 Jul 2022 03:54:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T082943Z:7d2ed8f7-c131-4ad3-9f85-c8c135bfac3e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035440Z:235a7c83-beb5-42f6-9acd-e4af5c72b743", "Expires" : "-1", - "x-ms-request-id" : "7d2ed8f7-c131-4ad3-9f85-c8c135bfac3e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg04412\",\"name\":\"javaacsrg04412\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "235a7c83-beb5-42f6-9acd-e4af5c72b743", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg10113\",\"name\":\"javaacsrg10113\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg04412/providers/Microsoft.ContainerService/managedClusters/aks936326ca?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg10113/providers/Microsoft.ContainerService/managedClusters/aks32958707?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "7bc476e3-6185-420b-bc14-ffbe629c3419", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "54164ea7-958b-4e04-90cd-d429234d6b18", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "3195", + "content-length" : "3518", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "x-ms-ratelimit-remaining-subscription-writes" : "1198", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "5f81e54e-53fd-4ae7-a75f-c612240e68e7", - "Date" : "Fri, 08 Apr 2022 08:29:53 GMT", + "x-ms-correlation-request-id" : "34821544-c00d-4736-a63e-f04017e6a4d5", + "Date" : "Mon, 25 Jul 2022 03:54:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T082954Z:5f81e54e-53fd-4ae7-a75f-c612240e68e7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035451Z:34821544-c00d-4736-a63e-f04017e6a4d5", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7441aa84-71bf-4f13-90ef-3f1ac19039ec?api-version=2017-08-31", - "x-ms-request-id" : "7441aa84-71bf-4f13-90ef-3f1ac19039ec", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg04412/providers/Microsoft.ContainerService/managedClusters/aks936326ca\",\n \"location\": \"centralus\",\n \"name\": \"aks936326ca\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns572561\",\n \"fqdn\": \"mp1dns572561-708af205.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns572561-708af205.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0548213\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1235567\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"scaleSetPriority\": \"Spot\",\n \"scaleSetEvictionPolicy\": \"Delete\",\n \"spotMaxPrice\": -1,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\": \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCP7RV2bWZE2/IJNlkEEPHLcoRE1dp3j9f8Y9CzFbIilbJBN0ifJYJfPfdfqcDbxCs7q3nJ+ZHjCtRpAWZ42/gqRHqz+ALzg0tBnijNhfeGXYCoUXiAKiguc3R/jexELOhYZcEOlYt4eU2BEJ4kGs7oXCqqh+yfDg/qu5MpoSz1DQ==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg04412_aks936326ca_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"07edfdda-df08-4904-a2b5-6a667845e6e7\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", + "x-ms-request-id" : "91edc75b-d8f2-46cd-9f34-06f501223e32", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg10113/providers/Microsoft.ContainerService/managedClusters/aks32958707\",\n \"location\": \"centralus\",\n \"name\": \"aks32958707\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns441380\",\n \"fqdn\": \"mp1dns441380-163c2c7f.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns441380-163c2c7f.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0650094\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap170317b\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"scaleSetPriority\": \"Spot\",\n \"scaleSetEvictionPolicy\": \"Delete\",\n \"spotMaxPrice\": -1,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\": \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCAtWO2eWKPaRX7uhBzxXhKONUaL8d+YQXjwAmFRiZcID1RA3/fkeMgPxw8BpmeaYTmmepSPTvejEOhxnOQ7eLK/jagtKOADLT42XAZyFz+v0q6d5jXe1LrmTMkMY+ubWIpj3+mSpP1lSgmP09ncjJDKDJohuIWCbhkN6WXe1g2cw==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg10113_aks32958707_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"d7767ec6-5163-4fb1-a1c8-027b125c9e8c\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7441aa84-71bf-4f13-90ef-3f1ac19039ec?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "aa47d0d5-8dc8-4d04-b0d1-3d4d9e797abd" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9299a3a0-e71c-4ffa-972c-7748ed238353" }, "Response" : { "content-length" : "126", @@ -68,23 +68,49 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "x-ms-correlation-request-id" : "850952e1-3897-42b3-b790-6df9022f439c", - "Date" : "Fri, 08 Apr 2022 08:30:23 GMT", + "x-ms-correlation-request-id" : "81f23b34-e254-4f47-9537-46fd99449c51", + "Date" : "Mon, 25 Jul 2022 03:55:21 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083024Z:850952e1-3897-42b3-b790-6df9022f439c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035521Z:81f23b34-e254-4f47-9537-46fd99449c51", "Expires" : "-1", - "x-ms-request-id" : "76603dcf-28b3-489f-a378-cca711e2fa98", - "Body" : "{\n \"name\": \"84aa4174-bf71-134f-90ef-3f1ac19039ec\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:53.0433333Z\"\n }", + "x-ms-request-id" : "b11050b0-d16e-4506-922d-ff12a3451336", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7441aa84-71bf-4f13-90ef-3f1ac19039ec?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "f54915dd-7b91-4ad4-ae9a-8fc761b3d35c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "972d80d6-b910-4158-aec7-9c3597cdd3db" + }, + "Response" : { + "content-length" : "126", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "31ecdf1d-1ae3-455e-ad95-c8e2add9f2df", + "Date" : "Mon, 25 Jul 2022 03:55:56 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035556Z:31ecdf1d-1ae3-455e-ad95-c8e2add9f2df", + "Expires" : "-1", + "x-ms-request-id" : "82f9cd61-dcf9-4d3b-a45d-9c838e2a22de", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "896b909b-f6d2-4335-93fe-24b3492d2b1d" }, "Response" : { "content-length" : "126", @@ -94,23 +120,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2fca0605-f597-47b0-87f0-3ec4f0ad9bc1", - "Date" : "Fri, 08 Apr 2022 08:30:55 GMT", + "x-ms-correlation-request-id" : "609a19f0-dda9-4580-bcaf-c20f2c0a5522", + "Date" : "Mon, 25 Jul 2022 03:56:26 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083055Z:2fca0605-f597-47b0-87f0-3ec4f0ad9bc1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035627Z:609a19f0-dda9-4580-bcaf-c20f2c0a5522", "Expires" : "-1", - "x-ms-request-id" : "caf6a13b-e7b8-4e48-bebb-e0c88fdf8414", - "Body" : "{\n \"name\": \"84aa4174-bf71-134f-90ef-3f1ac19039ec\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:53.0433333Z\"\n }", + "x-ms-request-id" : "f96d13a1-f3cd-4929-8856-93c4235f6544", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7441aa84-71bf-4f13-90ef-3f1ac19039ec?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "eb9db498-3b45-48e6-afd6-c75e323c126e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "203a7128-8390-4ad2-9c06-019e92415ab1" }, "Response" : { "content-length" : "126", @@ -120,23 +146,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "x-ms-correlation-request-id" : "58708e73-e52f-4ed8-8a31-d8a0d0ba2987", - "Date" : "Fri, 08 Apr 2022 08:31:25 GMT", + "x-ms-correlation-request-id" : "f10bd96f-9523-4f94-9891-46604f269c98", + "Date" : "Mon, 25 Jul 2022 03:56:56 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083125Z:58708e73-e52f-4ed8-8a31-d8a0d0ba2987", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035657Z:f10bd96f-9523-4f94-9891-46604f269c98", "Expires" : "-1", - "x-ms-request-id" : "8238340c-1e38-46e1-9cec-1ffa1d4fbe96", - "Body" : "{\n \"name\": \"84aa4174-bf71-134f-90ef-3f1ac19039ec\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:53.0433333Z\"\n }", + "x-ms-request-id" : "6f999bd2-3ac5-4ed4-9531-92915d2a934e", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7441aa84-71bf-4f13-90ef-3f1ac19039ec?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "1b5e1bac-3f2b-4e4a-a596-7cb34c3fdcf0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "44ac3a76-3a8d-4d6b-8ede-120f48be2a45" }, "Response" : { "content-length" : "126", @@ -146,23 +172,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "x-ms-correlation-request-id" : "7aa7c2d1-032a-470c-b2ab-08a5107f66eb", - "Date" : "Fri, 08 Apr 2022 08:31:55 GMT", + "x-ms-correlation-request-id" : "d252dcb4-af07-48f6-9d0c-591cf45e68e1", + "Date" : "Mon, 25 Jul 2022 03:57:27 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083155Z:7aa7c2d1-032a-470c-b2ab-08a5107f66eb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035727Z:d252dcb4-af07-48f6-9d0c-591cf45e68e1", "Expires" : "-1", - "x-ms-request-id" : "b6a8000f-f865-4108-912a-616e6c48a3c9", - "Body" : "{\n \"name\": \"84aa4174-bf71-134f-90ef-3f1ac19039ec\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:53.0433333Z\"\n }", + "x-ms-request-id" : "6649fdbf-21bc-4b13-bfcd-4710fcdc24da", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7441aa84-71bf-4f13-90ef-3f1ac19039ec?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "2210d04e-7ad0-45f2-ba02-ff76d3790b0a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0735bd89-06c3-40a5-adee-373614f165de" }, "Response" : { "content-length" : "126", @@ -172,23 +198,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "x-ms-correlation-request-id" : "0e1627e8-275f-4655-9711-ebfcfe7753db", - "Date" : "Fri, 08 Apr 2022 08:32:25 GMT", + "x-ms-correlation-request-id" : "cdb13bf3-43e4-4cdf-a49b-ab1ce343c25c", + "Date" : "Mon, 25 Jul 2022 03:57:58 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083226Z:0e1627e8-275f-4655-9711-ebfcfe7753db", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035758Z:cdb13bf3-43e4-4cdf-a49b-ab1ce343c25c", "Expires" : "-1", - "x-ms-request-id" : "8149e27b-9521-4341-9f34-4dcd5ae835b6", - "Body" : "{\n \"name\": \"84aa4174-bf71-134f-90ef-3f1ac19039ec\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:53.0433333Z\"\n }", + "x-ms-request-id" : "60f2fea0-11f8-427d-8c1f-fea60643c2e5", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7441aa84-71bf-4f13-90ef-3f1ac19039ec?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "82bae896-ad81-4216-9ab6-eea89a1f4f29" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6b1711ae-c52a-4fde-bb71-39c5e1ef4756" }, "Response" : { "content-length" : "126", @@ -198,23 +224,23 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "x-ms-correlation-request-id" : "05f9c174-e795-4840-8c9e-38d1f9e58d6a", - "Date" : "Fri, 08 Apr 2022 08:32:56 GMT", + "x-ms-correlation-request-id" : "c329e666-d8d6-420e-bf2b-799c111256fb", + "Date" : "Mon, 25 Jul 2022 03:58:28 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083256Z:05f9c174-e795-4840-8c9e-38d1f9e58d6a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035828Z:c329e666-d8d6-420e-bf2b-799c111256fb", "Expires" : "-1", - "x-ms-request-id" : "ad48d861-4eae-41b2-ab34-1a0976a85555", - "Body" : "{\n \"name\": \"84aa4174-bf71-134f-90ef-3f1ac19039ec\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:53.0433333Z\"\n }", + "x-ms-request-id" : "b416ee0a-e1e8-449a-808b-4c6f84fe69af", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7441aa84-71bf-4f13-90ef-3f1ac19039ec?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "047bcc7d-202c-411a-86c3-5b5e6a66acba" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "571c1128-6558-4df7-8b2a-6041e7afbef2" }, "Response" : { "content-length" : "126", @@ -224,23 +250,179 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee4d9e8f-999f-4591-b369-6f143d5f8b11", - "Date" : "Fri, 08 Apr 2022 08:33:26 GMT", + "x-ms-correlation-request-id" : "e2531831-a337-414a-a954-d11a95ba9f27", + "Date" : "Mon, 25 Jul 2022 03:58:58 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035858Z:e2531831-a337-414a-a954-d11a95ba9f27", + "Expires" : "-1", + "x-ms-request-id" : "fc4a4137-f839-42ef-ab34-66ce9261b18f", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ddbd63c1-b60b-4eb4-a333-05a2e9597651" + }, + "Response" : { + "content-length" : "126", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "f93a5638-ba4b-4695-9b1c-84bf2575f33c", + "Date" : "Mon, 25 Jul 2022 03:59:29 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035929Z:f93a5638-ba4b-4695-9b1c-84bf2575f33c", + "Expires" : "-1", + "x-ms-request-id" : "950037dc-1efa-4370-b112-3a2bfc33342a", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "052815bb-35e1-46f1-8854-ad9ead6df21e" + }, + "Response" : { + "content-length" : "126", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "d1736498-b53c-45a9-baa6-b35c845bda03", + "Date" : "Mon, 25 Jul 2022 03:59:58 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035959Z:d1736498-b53c-45a9-baa6-b35c845bda03", + "Expires" : "-1", + "x-ms-request-id" : "2f4105dc-3cca-4ba3-b942-0279756f6591", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9ae84b92-ad3a-4ed2-b302-b557f4619f32" + }, + "Response" : { + "content-length" : "126", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "199bc168-97c3-44d1-8079-a79893768c73", + "Date" : "Mon, 25 Jul 2022 04:00:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083326Z:ee4d9e8f-999f-4591-b369-6f143d5f8b11", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040029Z:199bc168-97c3-44d1-8079-a79893768c73", "Expires" : "-1", - "x-ms-request-id" : "565dc33c-2026-42fa-a70e-dfd14f3d34c9", - "Body" : "{\n \"name\": \"84aa4174-bf71-134f-90ef-3f1ac19039ec\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:53.0433333Z\"\n }", + "x-ms-request-id" : "0471b89e-3341-468a-b0c2-be486a389198", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/7441aa84-71bf-4f13-90ef-3f1ac19039ec?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "80951ddd-83f2-43f9-9d43-d8af00c6af9a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a13926b7-4000-4cf5-bbe6-08a6fb6b272c" + }, + "Response" : { + "content-length" : "126", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "6f553ab2-a146-4163-91e5-099076dac357", + "Date" : "Mon, 25 Jul 2022 04:00:59 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040100Z:6f553ab2-a146-4163-91e5-099076dac357", + "Expires" : "-1", + "x-ms-request-id" : "3b5815af-18d9-43c3-aa70-cc464b90dcc3", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0940cd20-abf0-4888-a9e2-78591ced7fd6" + }, + "Response" : { + "content-length" : "126", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "4450e557-f638-4c81-b58b-2633beb1e194", + "Date" : "Mon, 25 Jul 2022 04:01:29 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040130Z:4450e557-f638-4c81-b58b-2633beb1e194", + "Expires" : "-1", + "x-ms-request-id" : "28c7b6e5-5869-4f7d-9098-05b6f1b5a8c4", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e2a6590b-92c8-4ec1-90f2-578b098a6178" + }, + "Response" : { + "content-length" : "126", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "98a9fc47-e35e-414e-922c-bddadc1e4f08", + "Date" : "Mon, 25 Jul 2022 04:02:00 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040200Z:98a9fc47-e35e-414e-922c-bddadc1e4f08", + "Expires" : "-1", + "x-ms-request-id" : "866bfead-d1c5-4361-81e0-953d78d992f2", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/91edc75b-d8f2-46cd-9f34-06f501223e32?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a8258628-2337-4134-8d42-a179a92029e1" }, "Response" : { "content-length" : "170", @@ -248,51 +430,51 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "x-ms-correlation-request-id" : "94021eea-6d8e-4154-b410-003a676404ce", - "Date" : "Fri, 08 Apr 2022 08:33:56 GMT", + "x-ms-correlation-request-id" : "882dd931-ef66-4949-91a3-08b205e1360b", + "Date" : "Mon, 25 Jul 2022 04:02:31 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083357Z:94021eea-6d8e-4154-b410-003a676404ce", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040231Z:882dd931-ef66-4949-91a3-08b205e1360b", "Expires" : "-1", - "x-ms-request-id" : "f01c5923-c52c-4819-9e30-9c89d5babc01", - "Body" : "{\n \"name\": \"84aa4174-bf71-134f-90ef-3f1ac19039ec\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:29:53.0433333Z\",\n \"endTime\": \"2022-04-08T08:33:56.3217429Z\"\n }", + "x-ms-request-id" : "87cd3445-bdbb-4acc-9dea-8050a06c9a78", + "Body" : "{\n \"name\": \"5bc7ed91-f2d8-cd46-9f34-06f501223e32\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T03:54:50.1066666Z\",\n \"endTime\": \"2022-07-25T04:02:30.7306092Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg04412/providers/Microsoft.ContainerService/managedClusters/aks936326ca?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg10113/providers/Microsoft.ContainerService/managedClusters/aks32958707?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "df69db21-b11e-4484-8e9f-91724b949476" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f2840d3b-c9a1-43ec-9198-ff17900d55a9" }, "Response" : { - "content-length" : "3842", + "content-length" : "4165", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", - "x-ms-correlation-request-id" : "3189ff43-4f04-4635-81de-92779faea327", - "Date" : "Fri, 08 Apr 2022 08:33:57 GMT", + "x-ms-correlation-request-id" : "61d3f4e7-73a2-440e-9941-0c632e1bea62", + "Date" : "Mon, 25 Jul 2022 04:02:31 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083358Z:3189ff43-4f04-4635-81de-92779faea327", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040231Z:61d3f4e7-73a2-440e-9941-0c632e1bea62", "Expires" : "-1", - "x-ms-request-id" : "335121b0-355f-4746-9472-90ddbf87bd9f", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg04412/providers/Microsoft.ContainerService/managedClusters/aks936326ca\",\n \"location\": \"centralus\",\n \"name\": \"aks936326ca\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns572561\",\n \"fqdn\": \"mp1dns572561-708af205.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns572561-708af205.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0548213\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap1235567\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"scaleSetPriority\": \"Spot\",\n \"scaleSetEvictionPolicy\": \"Delete\",\n \"spotMaxPrice\": -1,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\": \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCP7RV2bWZE2/IJNlkEEPHLcoRE1dp3j9f8Y9CzFbIilbJBN0ifJYJfPfdfqcDbxCs7q3nJ+ZHjCtRpAWZ42/gqRHqz+ALzg0tBnijNhfeGXYCoUXiAKiguc3R/jexELOhYZcEOlYt4eU2BEJ4kGs7oXCqqh+yfDg/qu5MpoSz1DQ==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg04412_aks936326ca_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg04412_aks936326ca_centralus/providers/Microsoft.Network/publicIPAddresses/76e2ea1c-4590-4bbc-abaf-d661225f8905\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg04412_aks936326ca_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks936326ca-agentpool\",\n \"clientId\": \"2f9d0b11-5f6e-4778-86bb-4eed1949be69\",\n \"objectId\": \"1878dedf-1394-4a43-abc2-e7a56424a912\"\n }\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"07edfdda-df08-4904-a2b5-6a667845e6e7\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "x-ms-request-id" : "ef1a8430-2e51-48b7-a87d-b519077e1903", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg10113/providers/Microsoft.ContainerService/managedClusters/aks32958707\",\n \"location\": \"centralus\",\n \"name\": \"aks32958707\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns441380\",\n \"fqdn\": \"mp1dns441380-163c2c7f.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns441380-163c2c7f.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0650094\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n },\n {\n \"name\": \"ap170317b\",\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"scaleSetPriority\": \"Spot\",\n \"scaleSetEvictionPolicy\": \"Delete\",\n \"spotMaxPrice\": -1,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\": \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCAtWO2eWKPaRX7uhBzxXhKONUaL8d+YQXjwAmFRiZcID1RA3/fkeMgPxw8BpmeaYTmmepSPTvejEOhxnOQ7eLK/jagtKOADLT42XAZyFz+v0q6d5jXe1LrmTMkMY+ubWIpj3+mSpP1lSgmP09ncjJDKDJohuIWCbhkN6WXe1g2cw==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg10113_aks32958707_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg10113_aks32958707_centralus/providers/Microsoft.Network/publicIPAddresses/0d218b27-e17d-4acd-9184-d2f7835fdf24\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg10113_aks32958707_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks32958707-agentpool\",\n \"clientId\": \"2d34d69e-aa3f-4899-9335-efcb051d490e\",\n \"objectId\": \"227707af-4556-4bd0-b527-1e07b41887f3\"\n }\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"d7767ec6-5163-4fb1-a1c8-027b125c9e8c\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg04412/providers/Microsoft.ContainerService/managedClusters/aks936326ca/listClusterAdminCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg10113/providers/Microsoft.ContainerService/managedClusters/aks32958707/listClusterAdminCredential?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "f7de98c4-73ff-4b93-8577-65e93e5a4513", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "695fbc05-1029-468b-aa35-2b0672ae66d6", "Content-Type" : "application/json" }, "Response" : { @@ -303,51 +485,51 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bee561d3-fd41-4e81-b467-706613a4b9d6", - "Date" : "Fri, 08 Apr 2022 08:33:58 GMT", + "x-ms-correlation-request-id" : "babd5725-e63c-4ba7-9bc4-932190fde990", + "Date" : "Mon, 25 Jul 2022 04:02:31 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083358Z:bee561d3-fd41-4e81-b467-706613a4b9d6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040232Z:babd5725-e63c-4ba7-9bc4-932190fde990", "Expires" : "-1", - "x-ms-request-id" : "1e7eb537-53fd-4a7d-bc65-abf84efc3c29", - "Body" : "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterAdmin\",\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWm1oM2JXd3ZSR0ZWSzFwUlVISjZRV2hqTHpOQlJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUV3BCTUUxRVozZFBSRWwzVFVSV1lVZEJPSGxOUkZWNVRVUlJkMDlFUVRSTmVrRjNUbFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSMENtazJWVmwyZEhwa1lWZHZVbU1yVWs1UE9VMUdlbUUxTkRGdGFUSm9UVkUzYW5GSVkzQnBRMjFPVnprME0xcExRWGxhUkN0NWMzY3ZWVXc1VDBaWlRXTUtXSE5hZUcxdldHaG1UR3N5YldOcVVIbGtiall3VVZOdVlUZHFVaTlJYTNZMUwwOVlRelkxVlRSc2QzQTJjVTFRZEUxT2RrWjRWVk0wVms5c1FUSndlQXBvYkhKa2EzRmhRVVphU1N0bE1rb3ZNbTlvUzJGcVNrVTNjVEYxVVc5WE9DdERkbUZIU0hKelJWUTJRbFo2YjJGTFZ6Wm5jREJwUml0YU1YQmtiSEZQQ25jdk1uZGhRVGRSVnpOck9EaEJRak5KZEUxVGJrMWlOVzVwVDFOU04xTTBLMmMzWW01V2VWbG1UMDVwVTFnMFFqRlRiM0F6T0VacFlpOTBOVXhxWjNjS2RrNXNaV3gyTXpSMVpXZHlhbUZDTUdwaU1uZFlPSFJaV2swMU1GTjBZWGxzV0RkTVZpdGhSVzA1ZVhkMFVXMWhTRGhoY2toUWNrZExaRE42ZGswMk9BcEVja2h4YWxaWmQyRmpjR1UwY1VWaVJXbFJhVmRaY0VJdmN6aEZVR1UzTUdvNWJrVlFaRlkzV0dGWlJDdEpXVk4yV2pSWGRIaHhaRUpzUjBSU05ITTRDbEZyTTNSSlVtcFpOM2dyWlhnNFZ6bDJVbkZqUVdGS09FUXZRbkE1VDJrM2RVWlNjRFZKT1cwclp6UXpjVTUxWVVSSk4wbDFVRTVLYVV0VUwwZGFOVzhLTXpRNGMyRjVkVFZqVlhVNVZEQkhiaklyZW0xbVUyRXphakpGTUdGUFJ6STJRWE52TlhVMGRVcFBlbWhXUm1OVVJYUjRWV05QYWs5VkszWklSME5tU3dwV2RUSmxaV3hSYkdaVFJYUmtNWEJyWjB4aGNqVnJWM2xUYVhWaVdrOHJWSFZYTmxGbFpVMXVNa3R0Y0VWMU1ISjZXR3RxUlZKd2FGSkpWR2xoTUhjeENsb3dZbFJvUkdwUGNHeFliMkY1YzNkbFFsUmthVFJ6Wms5cWRXTXpZbmhTZDBob05uRm5OV0o2WkRkNmRFVnljM3B0Y1ZKeE1XTmlhRzVKTmxsekwzb0tVVTV2TUZscGEwaDJLMjF6UjNKbVRXWlRlV1Z3Y1V4S2EyRmlja2xzWlhGTlNHSTRWVlpFVVdaUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWME9ITkRPSGN5SzNVMlYwcHlWMmx1Q2sxV2JpOHdjSHBCVVhGUmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTllrMTFNeTlqTWpsMk0xUTVTVUphWTJWUE4zQmtjM2swT0VRS1RUUkxiV2RRTDFoNVkzbHVXalkxZFhKcGRFTlVhbWxEZWtoRllrTkhWV052U0ZwWllYZEdRa2MzV210dmRIWm1RbmxsZVcxWlZXSjBUek5qWjJwdFF3cDBPV2haTDBNcmRURlFRMlJLWW5ndlVWcEZlVzgzUVdRMlJFdGFjWEJuYjBwWlpVMUplRUpuTWxKT05FVkdjMUpqWTB4NU0xUkhUWEU0YUhKRkwwaFZDbkl6YWpOb1lqZzRRbXRzV1RSUGN6QmlOMEY1VEZNNVNrOVFWWEJWY0ROM05HOVNhVkpZVlN0SFZrdDFkVXR1VFVRNFYxVnVTMkZITTNOSE4ySTJjMDhLTnl0dFdVcGxOSEZDY0hoQk0zWlpWRTB2ZVZOeU9VTmFjRGh4UkRoRlpEWmxVemMyUTFKR01GWXlWMGRKYjFKWk9FSm5lRGsyTW1oMFpGWkdjbFkzY2dveVUwMVBWVVpUYTBWak9GQXdhVTFsYVROak5rVkNWa0o2VTIxTU5VVlNVV1pEUkdKRmJEUnFUVXd2VG5oT2JtZHNMMnh2TVd3MU1tZEpXbEZxTTNabUNsVXhRMGhpYlRnd2VYTk9kbVZUVEc5b1pYbFBOemhJY2xreGJGRlJSeXRhVURZcldVcFJSMGQyVW1SdmRGUTJVM0F4U0RSVFkyRldOMnQyYnpWd2IyZ0tLMlI1UjJ3NWNqWklWblk1Y2xoUVVHUlFUbXBPYWpCM2QySlFZV2xrU1VGclpteGFabVY1WkRkQlpsQXJZMGx1S3pGNGVVaDBhR0pzYjFkSVJGQlRTUXBOU1U1aU1IYzBaVzFMUWpCblJWa3ZOVzEzYUdJdmNFeDNaRzQyZG14U1pVNWhLMVZLYVV0Mk5sVjJTVkkwYm1aWWVraExkMlFyU1dSU1MyVk1PV3RLQ2pGdlpUbEZXbGMwTjNCVE1qYzBlRXBMY0V4MFozQnFORmxDVEdscWNrZzNWRXRLYW1NclNHUlVaSFJ0TlM5TFdXOUROM1ZzY1ZWd0syeFROVmw0ZDJRS1VHaFRURU0xT1U1clYybGxNbGhXZWxaSGJYTTROV1poTlhFeGVUQlljMmh4YUd4RU9FTnpSVGR6VkVSVlpXRkVaRXBMUzJaVE1qTkNhV1ZKYzJSMWFBcEtha1ZFTkRSTGFtSm9Melk0WTJNekNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL21wMWRuczU3MjU2MS03MDhhZjIwNS5oY3AuY2VudHJhbHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBha3M5MzYzMjZjYQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogYWtzOTM2MzI2Y2EKICAgIHVzZXI6IGNsdXN0ZXJBZG1pbl9qYXZhYWNzcmcwNDQxMl9ha3M5MzYzMjZjYQogIG5hbWU6IGFrczkzNjMyNmNhCmN1cnJlbnQtY29udGV4dDogYWtzOTM2MzI2Y2EKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyQWRtaW5famF2YWFjc3JnMDQ0MTJfYWtzOTM2MzI2Y2EKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJUUzlvWlZoMVZFaHJkR2xGYkhGb2RVOWhla3hsUkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRXcEJNRTFFWjNkUFJFbDNUVVJXWVVaM01IbE9SRUV3VFVSbmQwOUVUWGROUkZaaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU12TkRnemVrOXdRbEpJYTAwd1YwMURWbTlVV2tnS1FtNVFLMlJzZGpGSFMzVjFkRkJPVm1oRlUyMUlSMFJ2SzJSWGQzYzVhSHBUVTBjNFRrRjZSVXBZZDJONE1WRlpOMVl3V2tVM09VYzBOR2hpV21OUlRncEZSalEzVFdSNmExQXdZWFEwTkZFMFJVdHdjMVJSZGxBNFFqZFRkVk5FTTJvelFYUjJjVlZpUjJZNVoxRmxkMEk0TldONU1IZzJRVGRFUkZkNU9VUktDazF2YlVKdE5uZDRRVXBLZGtoTFVrcDZUMlp0UWtGeGF6bDJhMWRaYTFGT2NURk1hM3BoVlZKR1ZHUXJSWGt3TDNGUVRtRkhibUpGYVhZMmVHaFBZVVFLZG1nNFVYaHdiSEpYU1dSNU9IZGFPVzlwY21KSlNVUXdSVUpLYTNRdlNETkdNVTk2VERnNFRtdEZSbkZyV2t4RVMwbDVjRXhwVW5kb1dFZG1OM2RHYXdwVVVTdFVNRVl3TUZCNlZqQTVTbU5hZG5wdVZsaGhVbWQ1Yld4NFNHTnJSM0ZpV0VNNWNuWnBlRmx3YUVKR2VHRlRjell6UkZGMk1UZDVOMlZNY0dGU0NtVjJibmRMT0hwS1pVZ3dhR2czVURrNGEyZG5PRmRxYzBSTWQzSTRTekkwVHpBd2QxVkZNVlJPUmpOSmVWTnlXWGxUZVZoT1NGVjJZMWw0Ymt4VmRHTUtNbVZFVFhwd1oxUjJXRkZYWlc4d0sySkJTSHBxSzJOeE1HSmxZbXhXYkRWd1pqUldPVU00YWtodVNWVlNiMGxhVDNjd2J6STRVMnBPTUVOWVEzWm1RZ3AwWVhFckt6Z3paazlNVHk4MFdrOVBSQzlES3pjMFJHUjNjelp5TDJKSk4zWjJjazF4TTNGQmFtbzVjbVpwVG14V1dtSmlSalJLVURKNlNYazFZbTVKQ25SaWRVeGFjbFYzYXpSV1IzZENXbWRTSzFjMVZWTklVemhrWjFCc2F6QlFlRXBWZEdsMWFVSjBRMFpvWkRCVmFVYzJRbkYwVlVwMWNEZDVWM2xOVkdZS2EydGhUM2MzYm5wVVlVZGpTVXhZVEVkNmIwWk9OMkUzUzFGRlVGRnViMWxwWjJsT1MxWmtPWGxXVldGNFVHNXJWRXM0TVRjek4wZG9Xa3BXWjFCaFJ3cHZjbTV4U1U1R05VRXlNaXRUY2pGRFJYVnFTVFIzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE16ZVhkTWVrUmlOamNLY0ZsdGRHRkxZM2hYWmk5VGJrMUNRM0JFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZrTURBNVpFNXJhWFJ2ZUdGUGJWRkpSbmxaVEFwYU5qUXJPRUpxTkdoWlNIRjJkV3AyVVZGbmNGUkxORzg0U1hWNFZtTndjM2sxY3psTVYxQkNaVGRNWmxKRWR6aE9MelkwUnpVMGNGWTJZbFJ1YkRkWkNrbFhRbTV2UW5CbVpHOXhSRzFvWTB4d01sRlZTaXRwYlVoTVR6VkhSM0kzVURaelFXVm5lRUoxV2pCUldEWXZSbXg0YldjMFRYb3ZaR2hYZEVVNVIwRUtSMWxSTVRWdFN5OXdjVFJIZUc1RVQyRnVibFk0UW1ObFkxSlFVblJGWTJrdmQyY3lOMkpPZDI0d09WQlhXamhSUkdJNVpXUnJhMDlCWlZCUE1YTnZaQXBSVlhCbVdqVnpWMDFVTDBZMGRWZHZha3QxUTJJM1UyNU5TMnRUU0hkb2NUbHBXV0pQVVRNMGJIVTJiakZXVDIwd2JtRlZNbVJrYjJGeloxSXhSVEJuQ2tGRVR6WnliSGRpUW14UVNraGpOVWsxVTB4ck5YWjJOVmRWUzJacWVFdGtZM0l6YTNkVmNsRmtVV1F3VlRsME1YTTFUbUpxT1dZeU1rOHZaVkV4Wm1vS2JYZEJkVWhMTTJaMFRpczNVMjl5Vlc5RFZHaDFhMDFXVkZCb05VMHZjREZvYWpCd1drZ3dUM2xPTVZoYVdtMURNR05vWlN0UVNHZHVjRmRVYmk5WE1BcDNUazlPUm5kU2Iwd3hXRzFLT0VKV1NHTjZkRnBUZUhkcWFITnJNMkpWU2pKeVVISnJjbnBpYURWWVMwWlpjVFY0Y2pWVWVFbENOMmxFVkhKUFZubzVDa2N5WkVrNE1GSk1UaTlFWVdJM1ZIZzFlRWxPUWk5UEswZFpVMVZJVlVSb016TTVabUZCVm5ZeGJFaHdhbU5uVTJrMlYyRlVaVEZPYWpsbWJuRk1WMFFLUkVVeFozUm1kMEpYTDBsM1kwVmhlbE5ZVjNoRmIybERNM3ByTTNCbFlWVjNWVTlOVDBOV05scFRUVGRFWVUxblRIUXpWRFpIYlVkdFRsWldTVWcwU1FwalltdENjbEkyYzBSRWIzRlVNWFpGVTBOd2RuY3JWSEEyVFVWa04ySjZaVUV3UjFCTmJEVmFUbWRyTmxackwwVmFSbkEzUkdOdlpERktWRko1ZEZCUUNsVkpkVU56YTNwdk4yVndSeXR6T0ZNMmIzZzFMM3BqUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZGl0UVRqaDZjVkZWVWpWRVRrWnFRV3hoUlRKU2QxcDZMMjVhWWpsU2FYSnljbFI2VmxsU1JYQm9lR2MyVUc1V0NuTk5VRmxqTUd0b2RrUlJUWGhEVmpoSVRXUlZSMDh4WkVkU1R5OVNkVTlKVnpKWVJVUlNRbVZQZWtoak5VUTVSM0psVDBWUFFrTnhZa1V3VEhvdlFXVUtNSEpyWnprME9YZE1ZalpzUjNodUwxbEZTSE5CWms5WVRYUk5aV2RQZDNjeGMzWlJlVlJMU21kYWRYTk5VVU5UWW5oNWExTmplbTQxWjFGTGNGQmlOUXBHYlVwRlJHRjBVelZOTW14RlVsVXpabWhOZEZBMmFucFhhSEF5ZUVseUszTlpWRzFuTnpSbVJVMWhXbUV4YVVoamRrMUhabUZKY1RKNVEwRTVRa0ZUQ2xwTVpuZzVlR1JVYzNrdlVFUmFRa0poY0VkVGQzbHBUWEZUTkd0alNWWjRiaXM0UWxwRk1GQnJPVUprVGtRNE1XUlFVMWhIWWpnMU1WWXlhMWxOY0hBS1kxSXpTa0p4YlRGM2RtRTNOSE5YUzFsUlVtTlhhM0pQZEhjd1REbGxPSFV6YVRaWGExaHlOVGhEZGsxNVdHZzVTVmxsZWk5bVNrbEpVRVp2TjBGNU9BcExMME4wZFVSMFRrMUdRazVWZWxKa2VVMXJjVEpOYTNOc2VsSXhURE5IVFZwNU1VeFlUbTVuZWswMldVVTNNVEJHYm5GT1VHMTNRamcwTDI1TGRFY3pDbTAxVmxwbFlWZ3JSbVpSZGtsNE5YbEdSV0ZEUjFSelRrdE9ka1Z2ZW1SQmJIZHlNM2RpVjNGMmRuWk9NM3BwZW5ZclIxUnFaeTkzZG5VclFUTmpURThLY1M4eWVVODNOelo2UzNRMlowazBMMkV6TkdwYVZsZFhNbmhsUTFRNWMzbE5kVmMxZVV4WE4ya3lZVEZOU2s5R1VuTkJWMWxGWm14MVZrVm9NSFpJV1FwRU5WcE9SRGhUVmt4WmNtOW5ZbEZvV1Zoa1JrbG9kV2RoY2xaRFluRmxPR3h6YWtVek5VcEhhbk5QTlRnd01taHVRME14ZVhoek5rSlVaVEoxZVd0Q0NrUXdTalpIU1c5SmFsTnNXR1pqYkZaSGMxUTFOVVY1ZGs1bE9TdDRiMWRUVmxsRU1taHhTelUyYVVSU1pWRk9kSFpyY1RsUmFFeHZlVTlOUTBGM1JVRUtRVkZMUTBGblFYSjRVMWhGVG01aFZ6SnJWbEZIYmt0TVluZE9NMlpuVWxaYVpVRm9OM2xsZVV0VWNHTktiR2xYV0RKRVNHODNNVmh1WTFOM2RqRjVMd3BzYTNaWVRHZHRObU56YXk5RGJESjZRelp6VlRJeUwwOUZWVGt2THpGNlVFOWtaQ3RDVDFReFdYcEdWWEpLUTBST1lYWmtSMXBQWlZVeldYVnZabmhtQ205ME16aGhXbWw2T1hwWFJGZElTVVIxVGpVM1dDdFVaME5uZFhNMlUyTjFaR3BxTXpCSU5sZGpOekJTZWtocFZrbG9WR1ptYVhCb1RHSmpRMDk2VFdzS1ZqZG5kMUpzZFhKSFYzRXpNalo2ZFhZMWVWcDRiVGRGVWxkR2FtRmhiV2xhVUhFek0zSkRLM2x4Y1ZCWE56bFZlbTUzTjNJM1RGTlpTbU5FTW5OR1VBb3pWR0p2YWtOQmRqQTVZbUpTTVU5WFpqVjZNbEZoYjJsYWFEQXlTMDVJUmpCTlEwSXlNakI0UzFZeVUwWlBiRE5RZFROM01taHliRWd6YzNOV2RXWk1DaXRuV0habE1HNVBVMWhXWW1KNlluQXdSVTFNVEZONlQzQXlabGRyUVdoR1JGQTFLMlo0ZFVSalNqZGFWMmxCWldsRkt6ZDNWMUpQZGsxUWNWaG5UVU1LWWtWUmNHOUJXV2RGYTB4M1VsZEJaRXRpTkdzNVNrOWxPRkpJUm5RdmMya3ZkVTFZVFhGWmVtdzVPV2wwVFM5aVZWY3pSVnBvVDAxUFNuTkpiVmRuYWdwcUsxcElhblJQYkN0cFRGRjJhbWMwV25oTU9IWlRaMXBSWVhsT2FGVjBWVFZETW1wdU4wdDJkVlpTU25NeE1uWlljWGxoT1VsQ1pIY3dTM2hIYlhoRENsSXpUbEEyZUhrNU9YSTBTRFI2U1ZkV09YUnhaMlZVUjJkWWFTdHdlVmx4TUVWMU5tTllSazAxTm0xTk1IWTVVMHBtZFRCcWRreFVOVEJaU1UwclZGY0tSRzFKTkZnM09Va3haVU5DU2pKTllXVmpUa3RqTlRoaFYwUlRlbVo0UTBWQlZXOXRWa3hSTlVkQmVHeDRXbEJYSzFwQk5rSnJhRmRpTjFOUE4wSlhVQXBEWm5wdFVrSjVkRGc0ZEU5UGJISkhUSGhNVmtZM2FrZHZPRlJWVDNWNGFuZFFUVlJHUVZOMVMwb3pVbXBaZEdOWFVVdERRVkZGUVhwbFZFUm5WV3BFQ2xvdlZHc3dWbnBxUW5reWRXVmlha1YyU1ZsQ05WbzViVmxpWmtFMmVIaGFhVEZCZDFwUkt6VlZRbFZKVWpOU0sybGpVRTlsUWpkb2VuSmpaV0VyVG04S2FYZG9ORVZpTURWU1JsWjJaV2wxYTFsV1JUUXliVFIxS3pCNFRuTmxjbTkzYWxkbFpuUjBOak52TVdSTVJXVklWWE12ZWpaaE1HcHdOVTVtWWtseFVncFVlUzlaZDNkV2FFMXFPWFZyWVVwclpWbDRkbnBIYzJoamJGaFFkbUo0VjJscmMyMDNURFo1YlVoc1JsaEpkWGRtYWt4MVJEWnlNVzFYU0haWGRubzJDblJJZHpKaVVuaHFXamh2Y1hkT1EyZEpNbW92WkRFcmFqQkRWelJNZG10cE1VRmhjRGhvVkhKM2QxVmtWRWRCTldGamNVRkpNVXg1VlcxUE5UTldhMjRLVVdWTFZrMHdOM0Y0Um1abVRtRmtNVWRtU2xSdE9HeHpUemhZVDNaU2JrcDJTemRtYVVSdFpYVkxTMjlhUzBsUWJWQnFhWGxYUVdGeWVEbDBTVVpXVHdwbmRuQm1XRmxFYnpKUFlsWTVkMHREUVZGRlFUZHdZV0ZZVWxkNVdGZDNObWhLY2tsbWVXY3dVeTl6V0ZORlR6VnNWRVF5UXpJeVJ6RmhVREJKUkZwbENrNW5ObFZGYVRaV1FXWkVkeXRZU2xWWWFHczRXVEJ2T0dFd1VrY3dUR1JQWjA0cldVTkRUVzV5U2tWMGIyTTFhRk5tTlVST1luaHRaRlIxWm0xa1FsSUtNbmRZVGtGcmEzY3ljbE5NYjFSd1EwNVJSbTUxUjNORFJVOTRjV2RWVms0eVpTdE5RVU42ZUdFME1XZGhNRTVzU2xBelRsUmpNa04wY0hWUmVHczVNQW8wZEdKcmMwTjBjRzVvYUU1RFpVdGpjM2xNVDNGUWRWUXdWMGxIWlRsWVYxWjNTMk5STjJnNGNGWnNZbXhxUW00d1RUUkhRemN6Wm5sV2RUbDBjVGxwQ201TU9GSlViM3BKV25sb2VsZDJPVU5GWkdoR1RFUnVObTlTT1ZaNVMzb3lkVkJzYVVGdE5GcDViMVZ5U1ZScFMwdE9TMEZUUzB0NFVqRmhSRlE1UW04S2NtSjVWemRYWjJOU0wwRlZaRGc1Vm1acFUwZExRM0ZSZUc1NGJuZFpUV3A1YUZGdVZGTk5OV1JSUzBOQlVVSmpMMVZtY2s5U1F5OHZPVkJyVm5RMVZ3cFlTMUpxV25waE4zRnZOWEY0WXpRMGNtZFJZMkUyV25CcVEwd3ZWV1JYZUZCSU5reDJlWEI2VlVKTlRrZ3lNU3R5YVdVMFRraElMemhUYUVKWmMxQmtDbVl2VTJ0TFpHWkpLME5WUlZOcFZTODNRblJtUlhGb2FrcHNTbUZIZDJodlVWWktiV05FZGtoQ1Frc3lXa1JOY0U5U09ITTFNM2gyVm1velFTOXpiME1LU25KSWNWcHVlVmxvVUhaMFUwTnNTQ3RWWldzcmN6Tm1SV05uV0had2VuTjZhME56V204MmEzZEtNMU5TTjFVMmRrRmxaR2RaYnpsUU5taGFTMU4zWndwTlUyVlZRU3RXTDJWTGJVRnZXbkJpY0U0eVJtOWFTRUZVZFRSeldIQlRTV1JQVUdodVkyWjNXbkoyZFhWRlUyNVFNVVYyYW14a2VtOHdSV1JrYWxGRUNub3laMHBXU1U1SU16ZEZlRTlCZVVKQ2JuRjZNekZVUlhWbWNFNUVWRVZLVmt4V1dFWm1ZVlJqVkRCRlJrUnhXa0V3YlVoQkswRTRkVnBYWlhCc01FUUtjMWRZVEVGdlNVSkJVVU5xV2pSblpsZHdNMGhsUkd3ek1tdzJXa2xDY2pWTmRWbFhUM3BSWlZwMVRVMXVjRE55VFdoblppczNlRFJtTTBkUlNteEZkQXBtUTNjclZ6ZDRSMjFxWjA5MFMyY3JkWGQwV2twVlNtZzFNRVpFZVZoblFuRTBhVFpQYUZCT2VuQlBVR1ZTU1daR2J5OVFhelp4VFZCRFVGWm1abFV3Q25oT1UyZDJjbkppWmt4UWFIcFpRV3AzVW1WTmJ6Y3JXRVpKV1hCR1NqZG5SRE55U3pJclUyOHJhRFpxVHpZMVltcEtORk5DUW1SRmVWQk1iR0ZWV1hvS00yVmlaR0l4VUhSTFJtbHllVmR1UzNwTU1IVkZVakV3YVVSbmJqbFlSMEVyV0hST2JVdGtlR3BpYWpoVU4xY3lVR1IyYjBFMlUyaFJRV05HWVd0NFV3cDNjRk5ITjFNek9UbE5XV3BpVXpSdVRHTlFaRFZuUVhkWVlsSjJaalpMZDFod1dsVmpWbTVIWW1Fd2IydHBlV2xrUkVWSk9TczNTbXgwUlhwc1kzUlJDbmhoTDNaQmNGSkhRMXBRVFdKTFMzUklhMVZrWkhOcFRGQldVbEpqTVN0R1FXOUpRa0ZGUW1nMWJqUlBkbTR5TlZGaWJXRlNZelZ1YlhSRllrVmlMelVLYjNReWVXZFhRakk0YW1oU2VqWmpRVlpUTTFwU05qbDZlamhMSzBodmFDdFlVV2RrSzJjeVFtdHRTVWhOUlhOelZHSjFWR2xwTVV4R1VrMUpOMVpNTWdwTVIzQnJRMjR5ZFV0UGVVZHNjSG8wWVhwTE1IWmhWRWRaVEhWUVRETXhObmRXUjFGd2VGYzVkRFV3VlRkMmQwdDNNbE40TjNBNFEyNWtTemhwWWxoYUNuQkllWFVyYTFKd2QyMUpjWHBHYzFSb1pXVlhZa1o2ZERoMmRVVXZXakZTYVRSUldEWlZlSGw0VXl0Nk5sTkdaMDlXTDNOQmFIWXdjMFpUWjJNMGQyTUtNM0JJV1U5bU5sWlhVMlJzYXpGRGQySlpNM0JaYlZBeE4zZDNUME53VTBaaVVtZzRiRVY2VGpkYVNIWjZla001UkZWSFRERk5TRUVyYkZadWNEVnRhd3BqT1VJMldqVXhkV00yVTNGRFREUmpkWE14V0V4NFQwUXdZMUY2YVROT1ZVTk1aamN3ZWxoQlVuTk9VM0Y1VmxCcmVDdE9kak12S3pCTGF6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogNDdhNzQ4MTBiY2JmNmJkNWJhOTcxOGZhYjcyZDgyNDQ4MDFlYzFhMDg3MTA1ZjY4ZmEyMTNhODU5ZGFhNjE3YWQ0NGM3MTgyZjEyMWFkZGVkODdlMGNhZDcyYjVlNTQ1MjBmZWYyZTY1OTAwNmZmOTRjNzQxMjdhOTNmNDI3YjUK\"\n }\n ]\n }", + "x-ms-request-id" : "5562890b-b193-4b7e-9694-5c5ba0c6de88", + "Body" : "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterAdmin\",\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSU0dSeVRtTmlkSFp0ZGxreFNHdzRhVzlvTkVjeVZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUV3BCTTAxcVZYZE5lbEV4VFhwYVlVZEJPSGxOUkZWNVRVUmplVTVVUVhwT1ZGVjZUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSVkNqUnFOMVpqZUdkWFNVWlJNR1p6ZW1ob2VGVXJVRWxMUkVwTlZUbGFNVzlMTjJsU2RrNDRPRFUwY1dGR0szWldNVTkyTHpKS2IwTk5XVEpPU1dWc2VGUUtSRms1VGpWclJqUTBNR3hRVTFkNlkxaGpSVFp4TUcxa2FYTXZWRzFEY0dKUWNVMUNTSGhPYlhVd1NGcDVLMlpwWjA5SGJtWmlSMlJ6VkVSRVdUYzRXQW93V21OMWVWQlhNblkyTlhSRU5GTlpURmxaVmt3MVpXOUxRM0ZrTXk5dGMzVktReTlRVFZKblRUbEZORkF4VWl0UGFFUm5Vak4xT1doaVZEbHZabTk1Q2xGemFEbDZXa2QwVUZWMldHVnFiVlpFVFhKU2QzaFpSbXBFVDNsV2MwTXliVnBtY1hoeVVGSkVUM1pHVVRCNFMyWmxOM2xIWVU5V2NVTm9XRUV6YzB3S05UVlJZVkJIVTFsM2JYUXZabFU1UlVsd2JteDJNR1YzYjBKb2VXbExVRGRCWWxSeFYxTjVhRmQzTVcxMVpUTmtVbGd6WjFkU1NrVndRMDU0Um1sUVJRcHRjbWxUUmxCU05UTjFaM0JKVDA1dVUwOXZhMFpIVFVrclpqQTNMM1UyU2paRmNXSk1ibXhFV2xKMEwzVXhielpxTjI4M1QwWjFWWG93VTFReVVtUjFDa3QxV2xORmFsTlFiSEpGS3pGNlUwNTRWM0l3V0ZOMVRGUmFUR3ROU25GalNXc3pTRTl6UzJKRldsaFZVRXBQTm0xM2JuRmpRM05GWW05TmRYWk1TR3NLT1hWMUsyNDFPRnBSUm5SeWIxTnVNblZ5ZWs0d2VGTjFjVzFwVFd0MFdGTnZaV2x5YWtWRFYzUTJiMWwwVDJoMWJVOVFNV1E0TlRaT2FDOWxXRU0wUVFwSVNYUjBZbEl3Y21zemVYRnFURmxIWmk5bFQxTkhiMmtyVEhNNVNtVkZXbU14Y0V4bldYRk9TMnBPTm5SdVNHUklTRk5zTUc4cldEaFRZVXBZTlZOa0Nrb3pWU3Q2YW5oYU5uTTNaVkpETWs5Wk1rSTBUU3RDZERCaWRIcHpjbXRDVlZReFZuRXJXREpZU0M4MWNqTjJjMDV6TkdjdmFFaHFkMnRCVUdKMVNGWUtUR2QwTDFGQlMyNXVZemh5VXl0eldsQk5ZMVJOTUdwaGMzUjFVek5WY0ZoMmNscFRlbE5pVkZWUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWQlJUSTJjSGd2VDFwaFQzVm5XV1Z3Q2xGQ1dsUnZSamRLTURCdmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRGNVbFNWbG8yUVdScWRYUTFiRTQyYjB4aE5IcHJURTFEUVZvS2VYTm1SSFoyVkc0eFVVbHlVRTVWTXpjM04xcHdOR2xuZDNWc1ZFOUdhRlphTDNneFVqQmlSM0JFTkdWT1lWQlFLMjFWT0RKa09HVkthMU5MU21JelJncFBjWFV4YmtOWGJUTllhR3d4YmtGWWIxaG1VbGQyVkV0bVUyMWxPSE14ZEd0VlJtcDRUMGR0WTJveVozaE9SVlpLTUZkTE1HTktkbFY0VVM5Mkx6UmxDbkJRZWsxMU0zRjFVekZZUWxWeFpXSjRTSGxuZWtaeFVuSlJLekpLVTNoRWMyRlBXVU53UkVnelF6WlZTMXA0UTFwS1V6Um5VV1J0YWtGUFp6aHZabFFLY0ZKWWNGVkNSVTFRVmxGT05rWkZiVEpFUWxwc1JuVXhjMUJZZFdFclZIaEhUMndyV1hGUGJVWmFUa0U0UlZWSmFtNTZkMFp1UTJORmF6VkplSEpWUndwSVEzbEhjV2xKYkVSR1oxQkhlblZpUVVJcmNtczViR3REU3pCM1dIcERTelUxWldjd01UbDRSSGhOTW1KNVYzZE5SSFpqY2t0MlJrWk9aaXQwVGs5c0NteG1kR1Z5TkVKTlpFNUhXRk41VmxWU05FUnpNV1oxYWtod1dVeHFSbFJVVldOM1RtVk1Za0pRZEhadFZDOVJjMXB1TVhWVWMycHpXazFLYW1aQ01rSUtRM0pGTlZCYVpWbFpPVEpQYVRaNGFtSXdhMGt6VUZGMU1rbDZUMjVZTVVRdlRUazVjek42SzFWdVkyTnVZbGRIWTJOb1VXNHdSM0l4VDBWdlMwdHNTd28yUjFwT2RYcHhNeTh5UVdSWmVXbE1RMUpqTW1WSkwwVlViVTF0Y0hSUk4wTkhWSEJ5Y1ZNNVJtMTFNU3RNV1hBM1ppOHZaVTE1Y0ZWRlIwaFdhVkphQ25SdU15OUhaVlo1UTFKUWNWTTBTa3NyTkdvdlEyRlZkRWRVYjJsb1VHNWFVVUV6UmxaT1VIQldLMnhIT1hKaWEzTllhVTAxVm5OMmFUaElVbTVoU2pBS1RsRkVWRGw2VkVkcVpqQlBhVlpTVWtKVUwzaE1abWh6VTBWcWVubERValJUV2s1VWNtWkpZbU00U2tNeE9IZ3JaRlpUZGpOR2FuQmtRVXBwUlhSNmNnb3ZkRTFHZUhOaFRFNUtjR3R6VDBFekNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL21wMWRuczQ0MTM4MC0xNjNjMmM3Zi5oY3AuY2VudHJhbHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBha3MzMjk1ODcwNwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogYWtzMzI5NTg3MDcKICAgIHVzZXI6IGNsdXN0ZXJBZG1pbl9qYXZhYWNzcmcxMDExM19ha3MzMjk1ODcwNwogIG5hbWU6IGFrczMyOTU4NzA3CmN1cnJlbnQtY29udGV4dDogYWtzMzI5NTg3MDcKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyQWRtaW5famF2YWFjc3JnMTAxMTNfYWtzMzI5NTg3MDcKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVTlJZG05a01UaFVVbTFKUzNKSWVGTkpOR2hUY0dOM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcEpkMDU2U1RGTlJFMHdUbFJOTWxkb1kwNU5hbEYzVG5wSk1VMUVUVEZPVkUweVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCTkUxVk4xWklZemRNTWpSbmFtNDVTeXRDZERrS2NHUm5ZbXh2U1doNU0xQmtiRk4yVTJWcGNrTnVjQzgxZFVkQk5WQTBhRTFHVkZVd2FrNHhZMkYyYjJJeE16SXpTbVJKVkc4MWNsTklkbUoyTURJeWJ3bzJiVTVtYkZwTVZHSkhPRTFHTmtzMVVVNWhNa2hUZEZCUllrMVpUbk5IZVdWWVdHdDFObUpKZGtVeWVYVXhiMGM1TTFjeGJqbEZhbTFVUWt4aVJtcDVDa042YzA1c2NpOW1NR1ZTU1UxeWFHVkxkalJLWjBJMmVXVjViRFJCYTB0MmFVVmFXSHBuV1dJMWJHMWlWMmRNY1VWU2JuTndhMkZtY1N0alZsUnhTbVVLZGlzMFdEazRNMjVYVEN0d2RIZDZTV1ZUTTBGcVVHZHpaamxKVlN0RE5taEdZa1ZWSzFkeWMweFJTMVJJUkZVMGFqazBkVTVQTmpack5VRjJMM0pIYndwWlMzTkhZMFpLV1VsWE1EVjVNa3BrVjBORlRVOW1TM1ZyYXl0MGVFUlBaV0ZMY0ZoNFJYaGFTQ3M1ZDNwSk5GRlNjelp4Ym5sNVpFa3plRkJEV1VOdUNtNTRSMVpHY0ZOUmRGWXJlblJSVDNsYVVVVlpkM1pFY0ZOSlJrOXFRakppVTBsQ2JuSnZZMmRhWmpkRFZsQjNVR0ZpWmpCYVprazFPRlk1WmxKNk5HUUtXakY2TDI1M1NFSjVObFpRYzFJeGEzVk9TeXRTUkdrcmF6RnZjR1ZCYTJOSGFuaFdiVmxrWlc1MldrUlNZV0ZhZVN0b2RsZHlRVkJDV1ZWM1ZGVndUQXBFUzJseGRHcGxVRW8zWjBKbU1sTXhWMDg0ZWt4RlNrWXdhVVJzTmtKdlNXWjJZa3RPWTBGRk5qVlRUMWhLUzIwMFVGQkRNSEk1WlVaWmFYTjNaV2wwQ25oYVlsUk9WQ3RKV0dOWFJXd3pjVU5EY2pOcGNXNUpUMFV6WmxWWWRFVnZhMjU2WTJsak1sTTFiMWg1VTBRclkxcHJWMW9yYzFGMWNsZ3liRVJsWTNvS2FHbFdNWGxEWldGWVltcDBkbmRoWjJGV1MyMXdiMGhOUjFCcE1rVjFURUZpTUdGTlVreGxRakl5V1daRVVsZGhkVmhtVms5cGVIRk1TVkpFVUhabFRRbzJlblZ3V25wRVNsSjJkbmwwYXpWUVZHWkdSMFZHWTBOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWUVVVeU5uQjRMMDhLV21GUGRXZFpaWEJSUWxwVWIwWTNTakF3YjNkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCU0hseE9XVkViM1V5ZHpOV05sQnZSVk0xVlFwWVltcGxMekJWYWxsemNIWnBjVVJ3UW5GRWF6VmFZM1l5VERWd2FqSnJabkpKVXpWdmVuSlNOMWd3VVZRNWMyRjNaRmN6YlRoS2FUaEhlVzVWVEhGS0NraFljbkowT1ZNclQwcElkRXBLUmpsRFJUWndUVUZsVVVVdlVEUkNVVVZCTHpCcWR6UTBWRGRYY1dKa2VVaE1ZV3c1TkZoeFUyNUhMMFo0VTFwbmMxQUtNVVl2YjFCS1IzQlhVRUZZUjJsdVRrRjBORW80WW14Q1dFOUdVek5ZY21wYWVFaEJlV2xIY3pWNmVYUmhLMEZMTVZKdE56bFBlbFk0V1ZaQ1NIcDJNUXB2VnpCcU9HTXZOelJ2ZUd3MGNrTmllV1pLUm5sbWNsa3pTWHByVVRscmFVTlpWaTlxVUM5aWVpOTJRbE0zVWs5TE0yNWhiemxIY0dSNmFqaGFMMnBwQ2xnd09VOXpSM2gyUlRCc1VXNDBUU3RHWkdJNVdFZzFWRTlpY0ZOQlpEWkZSa3BpUVRKWFNuazVjbVJTSzJWalZ6RjJhMlZrVGxaUGRHZzFXR05XTm1vS2FsUkJNaTkxTml0dGJrRXpkbEExUlc1emFsSkdjbnA0SzJZM09WbFZhbkZqUm01bFVXUnFiWFpIWTFkUk1IQjJWbWQ1VWtKNlZWcDZVR3RHT1VoVlNRcFFSV2t2YzNwak9ISnhRWE14T1RsV2NXaE1ja3RaZW1JMGMyWjNUVElyZERCcFYybDRWa3hSYVhSVGR6bEZaMVpEVTFwR2JtZFlLeTlQVlhkMGNUbE5DakpsTlROU2IySnFTbnBrVFVsVFZscGpRakFyWXpsR1pYaEhZWGRxYzNKQlJVNDJNWGRKVlhZcmFGVlFXSGhJV1hCTGJucGxiV3BGUkN0UFV6bHViamtLTURaVE5EWm1URVZVV25oUlpuVTNkaXRLYVZGcWJrTlBjMDUwYnl0VGNDdENZWEJFVVRCRlkzZE9LM013V1M5VWJWVTJia2RzV2pCMFMyOUViM0ExZVFwNUt6bEVibXhoU1RaTWVsQlRZVVZxV2tneldHVlVjSGxyYlVWVFZXZHpRbk13WmtoV04zQXlXbUZuTVZKTlUwbFFWbkpaV1d0MVlWQnBSSGxGV25WaENqVlhlVzh3VGxwNFFtcFRTVmd6ZW1SNVQzVm1SbE14V2dvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCTkUxVk4xWklZemRNTWpSbmFtNDVTeXRDZERsd1pHZGliRzlKYUhrelVHUnNVM1pUWldseVEyNXdMelYxUjBFMUNsQTBhRTFHVkZVd2FrNHhZMkYyYjJJeE16SXpTbVJKVkc4MWNsTklkbUoyTURJeWJ6WnRUbVpzV2t4VVlrYzRUVVkyU3pWUlRtRXlTRk4wVUZGaVRWa0tUbk5IZVdWWVdHdDFObUpKZGtVeWVYVXhiMGM1TTFjeGJqbEZhbTFVUWt4aVJtcDVRM3B6VG14eUwyWXdaVkpKVFhKb1pVdDJORXBuUWpaNVpYbHNOQXBCYTB0MmFVVmFXSHBuV1dJMWJHMWlWMmRNY1VWU2JuTndhMkZtY1N0alZsUnhTbVYyS3pSWU9UZ3pibGRNSzNCMGQzcEpaVk16UVdwUVozTm1PVWxWQ2l0RE5taEdZa1ZWSzFkeWMweFJTMVJJUkZVMGFqazBkVTVQTmpack5VRjJMM0pIYjFsTGMwZGpSa3BaU1Zjd05Ya3lTbVJYUTBWTlQyWkxkV3RySzNRS2VFUlBaV0ZMY0ZoNFJYaGFTQ3M1ZDNwSk5GRlNjelp4Ym5sNVpFa3plRkJEV1VOdWJuaEhWa1p3VTFGMFZpdDZkRkZQZVZwUlJWbDNka1J3VTBsR1R3cHFRakppVTBsQ2JuSnZZMmRhWmpkRFZsQjNVR0ZpWmpCYVprazFPRlk1WmxKNk5HUmFNWG92Ym5kSVFuazJWbEJ6VWpGcmRVNUxLMUpFYVN0ck1XOXdDbVZCYTJOSGFuaFdiVmxrWlc1MldrUlNZV0ZhZVN0b2RsZHlRVkJDV1ZWM1ZGVndURVJMYVhGMGFtVlFTamRuUW1ZeVV6RlhUemg2VEVWS1JqQnBSR3dLTmtKdlNXWjJZa3RPWTBGRk5qVlRUMWhLUzIwMFVGQkRNSEk1WlVaWmFYTjNaV2wwZUZwaVZFNVVLMGxZWTFkRmJETnhRME55TTJseGJrbFBSVE5tVlFwWWRFVnZhMjU2WTJsak1sTTFiMWg1VTBRclkxcHJWMW9yYzFGMWNsZ3liRVJsWTNwb2FWWXhlVU5sWVZoaWFuUjJkMkZuWVZaTGJYQnZTRTFIVUdreUNrVjFURUZpTUdGTlVreGxRakl5V1daRVVsZGhkVmhtVms5cGVIRk1TVkpFVUhabFRUWjZkWEJhZWtSS1VuWjJlWFJyTlZCVVprWkhSVVpqUTBGM1JVRUtRVkZMUTBGblJVRXdMMmxOTTBSd1dsRlpRMlJEVjFZMFdWRlZhaXRJZDFkblJtdFhNemxVVlVkbVMzRXlkbFp4WkhObGRHSkVhWEZ3U1ZNMFNUWlFOZ3BtUVVocFVIbDZRbWgyWVZNcmQweHFOMGd4T0ZCVFJuQjVUREUwSzBKd2FFMVRRek5pUjBwS1UwSjZOR3RtU1hFMmRGWkhUMFpLWVhWdlJIVXZSMkV6Q2tsR1ZFbHdMMU54V1hNNGFrWk5iMWxVTjBObE0zSXZVakJWYzAxalNsUjJWM05TTW05dE1tcDJUbXh6VkZOVmJqbHZRamhzTTFCcVRHeGhVRlJZWm5nS1NrZFdWV1ZIWWpJdkszTlNja3hGUkVsVloyNUhjVzFvZVZobFRUTlliaTlrYmpOcEswTndRVTVzV0VNeFlYcFdSWFI1VlhOeVNpOW1hRWxVWW1VMlJBcE9hbWxyY0VWdWVWUkVOMUZ4WWxSQ1drd3ZhV2x1YTBoSGFUSlhLMmh6ZG5ocmRWSjFNbmhVWm1Jck1VRm5RMmRzUTBkUGFXOU1SQzhyTUdsTVpHa3ZDbFJ0YzJ3dlpEQkZVbkJUVUU5M1pEVnNkMVYxTmtORk5rNUdOekZOTWxKT2RuTnlhbkJXZFVWT2RsQkxiMUpDUlhRdmVYbFdaekV4ZEUxa2RqTk1hMVlLV25GWVlqWXdNVzkzVWxaclRHYzNXSGt4WWpSWmFtb3lMMWRPYldZNVZ6TllVa3hNVFRjeE9HMDVSMjV6SzBSWmJFTmpXbWhqYUdOSE5UUlBNblZ0T0FwR01EaElSeXRXY1RWSEx6SlhURlIzYm1wRVN6bHdaSFZyZHpKVWMxVXZXVEJHZGtkb2NuQjZWV0p2VGxoNk5IQnFVekpET0d0dFZ6ZFVOMmNyV1ZwRENuQXdNMFozZVRCVGRTc3JVbU5HYkhWVVZHb3dkR2RWUWxsaE9EQjNjazVNWWtweFRWcEJXbU5ZU0ZOSVVYVktiVGRYSzJ4eFQzZzFWVE5PT1hGeWEwd0tZVWR1YzJka09EYzRiRE5RUm5FNE1uUnRPVlJyWXpOcllsSm9WMWd2UW1scE4wMDVXV2MyTnl0MlluSnBhbTVUVTJ0NVRrbFNiREpxVVZKM1pVMXhUZ3B0VlVVeWJqbEZVM2RrYlV4cmNubFJWak0wYmpNNGVrNDNVR3gxZEVWMU5VVnJWV2RMVlZBMVdXY3dURTEzYkdsMWNXdERaMmRGUWtGUFlsZHFZbmROQ210RlRrSnNWM2ROY214aWFIbHNaMk5VZDBZNGFYQlBTRWxYY21WV1VrWTRLMWwzYkhKUWVtdGxUbll6VjNob1NUbEpTeXRVVkZwaGFURTVVMWd6VUU0S09IWkNUMFZDYlhkTlRESkNLMlZDYlRKRVdFaHNXRk5VVFN0SmMyaEhaRzgxYUVsNVQwTlNlaloyT1V4R01WaFhSMGxzZHpaMlEzTTFjaXMzZDIxTGJ3cGFUMlJKUmxOTVVVZEtVVXh2WkdkVFRGa3hkVTl4VlhwemNsSlRWamxFYmxOMk1IVlJXQzh5ZG1OTWJDOXpiMGw0YnpCQlIxaGpXSFZYV0RaeFlqVkNDbkEyZUU1VmNYZDRNV05XVHl0VFoxWm9WVGxuUms0eldEWkVZbFZrYVV3dlJYZHFTVk5wZWpkTGVTdGFTM2RqTXpJNGRUaGlUWFExVHl0UmMxQndOMVVLV2tzclowNVpVMll5UTJaV05UYzNlR2hXUkN0V2NXa3ZiVVZCYmtWbFMwOXVlREU0WVd4eE1tUkJiVzlXYjJ4NmRYRXdOR3M0TWtGeGEwOW5ZelpqTlFwYVIwVmxVVWhrVlZKeWFGSmhhbFZEWjJkRlFrRlFiRVpZVFVwaGRIYzFVVzF3Y0hSeFpUSjRjRlJzU200eVdHVkJRbmRhY1ZSUU5Ia3ZlVVZ1TWt0d0NraDVORVpwVlZGMGNsZ3lSRXd5UjFCSWJXMWtSMFk1TjJaYVdGbHVWV3hQY0dwb1QzQktjRmg0VGt0MlJsWnZMMEpITmpsdE5EVTNiekJLVjFVcmNuWUtXR0pJZW5wdWRFUnFhMjU2YnpndmQzYzBhbUV5UzFwclFrMVpPVXgwWjNkS1dEbHViV013TkVwNUx6VTNZVWR2VWsxNU9IWlVaMGRtWjFoalEwdDBiUXBDUkZWcU5FRXJaM28xY1dST2RuY3hRbElyT1hneFZUa3pSRXBTTDNZelUzQnZPRnBNY0RGR1NqbFphVTlPYWpnMFRFOVViVGRRTTBwWVYxRlNUbTFTQ2paNGVVaENjVE54WVRoUWJETnZhVTkyVVdaeFJHZzBVbmc1WTB4d1UyazVjakJXTlRoblVIZHdjVk5CZWpjM2JEWTVPWEpLYVhKUFpWWlRXbmN3U1ZZS2JHZ3ZabXMzZUVkRFFVZEdUR2xUT1ZaRWFWQkVObVp2TUZSamJWaEZXSEZRYTJwb2VsbEJaVUZrYzBOblowVkJTREpOUnpkSk0wMTNPR2hWUmpsbU1RcHJTWGx6TldGUlluWm1hMEZKY1ZWaFJIaDZhRGxxYmtjclNqVmhNR2gzUTNKMU5FbE1aRzlzYms4eGFFNUZXRVpqTlZkUmMzWTVTM3BCTDJoTmIzbzFDbGsxYzJKeVlqVjFTVmx1WTNOWVoyVmpkRGxaZEZoTVZ6ZGFlREJqT0doeVMwbEZLMVZCWVVoWFdrUklPRk5sYUZSSGNYTlBTblp4T1VkUGFIUkNWVllLWTI1UVQyTnpSM1F2WmtGQ0t6RndNMHgyZFZCUmVrWm1lV1ZOVkU1MVNVY3hWWGhQWnpSM1JEWXdTV0pPUlRBcloxUlpMMEpGWVV4R1QzVkRiRlJXUmdwbGMyMU9TMVF3WWpOcWIxUlFSVXhUUzFSd2ExRmpabkV2Tms4d1Myb3JVV3hMTUM4ME5FSmtNakp5YjFwQ1dUZzFXRFUyYlZWQlNqTk1Ubk00TTJGRkNtWnZOR2RNTlRsS1dVVlVhelZhWWk5cVlVZERWbWR5VFdGallubzRlR1ZvTWxod1VrbGxiR2hrV2tsbGVuRTVlVGw2VlVjMVRFeDVRMmcyUWpVelprZ0tSV1ZNU1VSUlMwTkJVVUpLWms1d05EZG1aVlIyT0RKclp6TnZZV1ZyYm10c2MwUnZZbXRsU1VGVlUzZzNjMHB6YjNOcEsyUkhLMlI1VFVsTlIwazVVd3BPYlN0emFXdzBSRGgxTVhoclRqSlpXa3hGVTBsS05pdGpUMm93UnpkWlMwTjBXRE56YVZwcVdUUkVUbmM0VDBFeGFWTk9WMW8wT0hwVmVuUmhRMEV4Q25sNE9XSlBXR0pqUkZCRVkwNVNXak5RZVdoc1ZXVlNjMHREV0dWeE5WSmFMelIyUVVsbVUwOXBORWxhVmpCcGJDODFWMHQxYkhVMVRYVmtiV3hDYkVFS1ZYVk5XQzloVjFORmQyZEhTMGRQV0dKcVkwaHhObVYzTDJ4TFVYbFJaVk5wUzNCTWVHeHRWV1EwY25GNGJ6QkViVTVJUkdSMFNtbHhZV2RrWXpoUWNncHJRVkpKVEVKVGMyeGhUWFF5UkRSaVRuWkxkRVJUWWpCRE5YZ3JOM1EyYVVaMGRXOVJkVFpGUVc1dVVrZDFaMGxQWjBOdWNHVmxTbHBCWlZFNVVFSTVDbE5xT0hSVk5tWldkVTA1TjNsQ1lVNDVUVUV4VjBoaFpWVXZkV0Z5Y2pSTVFXOUpRa0ZSUkVaRmVrOUVLMHBYYzBoeGJYQXJXRkZNVTBaNU4ydFFkVWdLUkVkMFdrUldUU3RDUjI1VFQzaERURkZ3Um1Gd1ZUQTRlRWRpWVdGUWJHOTRaRmxRUzJsclVURkdkWGR3YTJaWlExSmpVR2xYTUVWNmRVTk9WU3R2WVFveEwxWjZTMUJ6UjFWc1dGSndaRWxPYWtORldFUlpUazQ1ZDFrNGNXaHZNemRoTVRCNWNVMVZaM1JwVDNCdU5VUm9ZVE5qWmxWMFRsTlJkemhCTTJOU0NtTkxZMmw1TTFGRWMwdENlRTlrYlRWQmFHMTVZVlZ6TVhocGFHdzNaR3RSTVhseGFFWjZWV1ZtTmxKUlUzVjJZMFpNT1hrM1dYSkdTSFZ3TWxWV1IyWUtkbVk0UkV0WlVXSkhSRkpQWlRkUGEyZHllSEZYYTJnd2IyWkNSVFE1WkdOdFZWQTRNbUpGTXpSVmNsazRUMkZZWWtaQ2NYbzFVR1V5Y1hKaU5tOUhSUXB5UVdwdmFVWlNXWE5WYTBSUlFUQXlXVWt6UjA1S2RIZ3habEJIVlhCWE5UbG5XbFUzY0VZeWJDOVpiMVJNVHpod1lXZ3JiMDloWlhSYU1Xc0tMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogNDNiMjE5MzBhMjIxN2Y2YTFlZjM1N2RiYTFhMTdhYWM1ZTU4MDczNTcyNTgxZTE0NDU1NTU3NWNlMTQ5OWY2ODVhMDEyOWExYzNmN2IxMmY4NDRlYWZjOTQwMmE3MmYxZTY0ODQxYTE1YzA1MmFiNDZlMmQwNmFiZDQxNGZjY2YK\"\n }\n ]\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg04412/providers/Microsoft.ContainerService/managedClusters/aks936326ca/agentPools/ap295206e?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg10113/providers/Microsoft.ContainerService/managedClusters/aks32958707/agentPools/ap263928c?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "f9e316b0-d1ca-4fcf-8459-7694c45ff7c0", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b1c7f295-4f72-4d71-9075-e295daed6150", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "1035", + "content-length" : "1080", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "1021e92e-cd8a-4da7-9e73-ecfafac05070", - "Date" : "Fri, 08 Apr 2022 08:34:01 GMT", + "x-ms-correlation-request-id" : "fd34a284-2356-4536-8068-d7d55a3972ca", + "Date" : "Mon, 25 Jul 2022 04:02:34 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083401Z:1021e92e-cd8a-4da7-9e73-ecfafac05070", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040235Z:fd34a284-2356-4536-8068-d7d55a3972ca", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/54a7b1a0-da0a-421e-8bed-d39a5ee36d0f?api-version=2017-08-31", - "x-ms-request-id" : "54a7b1a0-da0a-421e-8bed-d39a5ee36d0f", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg04412/providers/Microsoft.ContainerService/managedClusters/aks936326ca/agentPools/ap295206e\",\n \"name\": \"ap295206e\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"scaleSetPriority\": \"Spot\",\n \"scaleSetEvictionPolicy\": \"Deallocate\",\n \"spotMaxPrice\": 100,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\": \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n }", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/73e6b46f-da76-476e-8cbb-28d4b13a7983?api-version=2017-08-31", + "x-ms-request-id" : "73e6b46f-da76-476e-8cbb-28d4b13a7983", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg10113/providers/Microsoft.ContainerService/managedClusters/aks32958707/agentPools/ap263928c\",\n \"name\": \"ap263928c\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"scaleSetPriority\": \"Spot\",\n \"scaleSetEvictionPolicy\": \"Deallocate\",\n \"spotMaxPrice\": 100,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\": \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/54a7b1a0-da0a-421e-8bed-d39a5ee36d0f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/73e6b46f-da76-476e-8cbb-28d4b13a7983?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0134a06b-2f96-4d74-9e82-4face165417e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "26943a32-133b-4e8c-beb5-f1280d10414f" }, "Response" : { "content-length" : "121", @@ -355,25 +537,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "x-ms-correlation-request-id" : "90c2c7f5-ba40-43a5-a132-6ef02c196266", - "Date" : "Fri, 08 Apr 2022 08:34:31 GMT", + "x-ms-correlation-request-id" : "4c31b22e-39af-45bd-b663-557abe9de898", + "Date" : "Mon, 25 Jul 2022 04:03:04 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083432Z:90c2c7f5-ba40-43a5-a132-6ef02c196266", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040305Z:4c31b22e-39af-45bd-b663-557abe9de898", "Expires" : "-1", - "x-ms-request-id" : "5962b2b2-8f67-4edd-978e-e20e12eb61c7", - "Body" : "{\n \"name\": \"a0b1a754-0ada-1e42-8bed-d39a5ee36d0f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:34:01.81Z\"\n }", + "x-ms-request-id" : "7958e1f5-7d21-43ac-9e47-95570d38ef70", + "Body" : "{\n \"name\": \"6fb4e673-76da-6e47-8cbb-28d4b13a7983\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:34.91Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/54a7b1a0-da0a-421e-8bed-d39a5ee36d0f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/73e6b46f-da76-476e-8cbb-28d4b13a7983?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e1980b4f-d310-4fd0-a505-82cd61ce4c1d" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "454e0825-8b69-4e41-9203-83376582fa11" }, "Response" : { "content-length" : "121", @@ -381,25 +563,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a08c7095-3caf-467b-ba4d-8a7127173a61", - "Date" : "Fri, 08 Apr 2022 08:35:01 GMT", + "x-ms-correlation-request-id" : "565cbb79-d88f-4d1e-98de-6237b6b23f76", + "Date" : "Mon, 25 Jul 2022 04:03:35 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083502Z:a08c7095-3caf-467b-ba4d-8a7127173a61", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040335Z:565cbb79-d88f-4d1e-98de-6237b6b23f76", "Expires" : "-1", - "x-ms-request-id" : "0bbea446-f8d3-478a-9f11-0b8fdefb852c", - "Body" : "{\n \"name\": \"a0b1a754-0ada-1e42-8bed-d39a5ee36d0f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:34:01.81Z\"\n }", + "x-ms-request-id" : "18a4bcba-ba10-4bb4-95ed-660068aca829", + "Body" : "{\n \"name\": \"6fb4e673-76da-6e47-8cbb-28d4b13a7983\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:34.91Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/54a7b1a0-da0a-421e-8bed-d39a5ee36d0f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/73e6b46f-da76-476e-8cbb-28d4b13a7983?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "3aa25eed-99ac-4dca-ae0c-50378337b4d1" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1fb8019a-5a97-4ee8-a1d0-4556e37c3634" }, "Response" : { "content-length" : "121", @@ -407,25 +589,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "x-ms-correlation-request-id" : "36fb7a40-7c46-45da-9f25-4f3b0e0d0561", - "Date" : "Fri, 08 Apr 2022 08:35:32 GMT", + "x-ms-correlation-request-id" : "30aa6592-46d4-4260-9c9a-ad12b1f68b39", + "Date" : "Mon, 25 Jul 2022 04:04:05 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083533Z:36fb7a40-7c46-45da-9f25-4f3b0e0d0561", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040406Z:30aa6592-46d4-4260-9c9a-ad12b1f68b39", "Expires" : "-1", - "x-ms-request-id" : "5bf1c425-8570-4017-8362-4a8a2d776a15", - "Body" : "{\n \"name\": \"a0b1a754-0ada-1e42-8bed-d39a5ee36d0f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:34:01.81Z\"\n }", + "x-ms-request-id" : "5082498b-bf16-46b3-bd45-0584ce580f70", + "Body" : "{\n \"name\": \"6fb4e673-76da-6e47-8cbb-28d4b13a7983\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:34.91Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/54a7b1a0-da0a-421e-8bed-d39a5ee36d0f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/73e6b46f-da76-476e-8cbb-28d4b13a7983?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "b3d01564-855d-42c5-ad3a-d86d736ed1a6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "92bb7fdb-2336-48c5-8b6a-cb1888252ce4" }, "Response" : { "content-length" : "121", @@ -433,25 +615,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "x-ms-correlation-request-id" : "05b56891-704c-4681-bf94-47d50246cd73", - "Date" : "Fri, 08 Apr 2022 08:36:03 GMT", + "x-ms-correlation-request-id" : "4b722971-2893-42c4-8bf6-3d9f25af9487", + "Date" : "Mon, 25 Jul 2022 04:04:36 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083603Z:05b56891-704c-4681-bf94-47d50246cd73", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040436Z:4b722971-2893-42c4-8bf6-3d9f25af9487", "Expires" : "-1", - "x-ms-request-id" : "5a1550b7-cc62-4da9-9559-21a024b33b19", - "Body" : "{\n \"name\": \"a0b1a754-0ada-1e42-8bed-d39a5ee36d0f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:34:01.81Z\"\n }", + "x-ms-request-id" : "48112323-a7b6-4e42-ae11-0b07fbfe9757", + "Body" : "{\n \"name\": \"6fb4e673-76da-6e47-8cbb-28d4b13a7983\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:34.91Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/54a7b1a0-da0a-421e-8bed-d39a5ee36d0f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/73e6b46f-da76-476e-8cbb-28d4b13a7983?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "842015c4-606c-43a5-912a-00891bffa2fb" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4da3bb16-c773-4766-9a7e-975f1d89888f" }, "Response" : { "content-length" : "121", @@ -459,25 +641,25 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "x-ms-correlation-request-id" : "477dba97-6d8f-40be-834a-d5383d4f3a65", - "Date" : "Fri, 08 Apr 2022 08:36:33 GMT", + "x-ms-correlation-request-id" : "09c07fcf-464a-4d43-beca-eb42a662b99f", + "Date" : "Mon, 25 Jul 2022 04:05:07 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083634Z:477dba97-6d8f-40be-834a-d5383d4f3a65", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040507Z:09c07fcf-464a-4d43-beca-eb42a662b99f", "Expires" : "-1", - "x-ms-request-id" : "b4ed9b91-a73b-4de5-98f9-5323ae66e468", - "Body" : "{\n \"name\": \"a0b1a754-0ada-1e42-8bed-d39a5ee36d0f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:34:01.81Z\"\n }", + "x-ms-request-id" : "e090d65b-3a1a-41ac-aff4-86880d41827d", + "Body" : "{\n \"name\": \"6fb4e673-76da-6e47-8cbb-28d4b13a7983\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:34.91Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/54a7b1a0-da0a-421e-8bed-d39a5ee36d0f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/73e6b46f-da76-476e-8cbb-28d4b13a7983?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d219de63-86f8-4ab7-b1d6-c1f90d4200f0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "70bd1192-e6a3-4687-a10f-88f4dafa4666" }, "Response" : { "content-length" : "121", @@ -485,25 +667,155 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e10510f-966a-4ff2-a1c4-4ac262ed396b", - "Date" : "Fri, 08 Apr 2022 08:37:04 GMT", + "x-ms-correlation-request-id" : "b83944e1-e36b-4c25-9636-8e250e646bf3", + "Date" : "Mon, 25 Jul 2022 04:05:36 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083704Z:7e10510f-966a-4ff2-a1c4-4ac262ed396b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040537Z:b83944e1-e36b-4c25-9636-8e250e646bf3", "Expires" : "-1", - "x-ms-request-id" : "ecbb2722-1b18-4a44-ac7c-0e3b17817924", - "Body" : "{\n \"name\": \"a0b1a754-0ada-1e42-8bed-d39a5ee36d0f\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:34:01.81Z\"\n }", + "x-ms-request-id" : "e9aa4311-3c78-494b-a563-3df8c4a087e7", + "Body" : "{\n \"name\": \"6fb4e673-76da-6e47-8cbb-28d4b13a7983\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:34.91Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/54a7b1a0-da0a-421e-8bed-d39a5ee36d0f?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/73e6b46f-da76-476e-8cbb-28d4b13a7983?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "f59a7dbd-9da6-48c8-a786-d92ea310678c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "260ab718-2cfe-4d1b-b2b4-fee0c9390cd3" + }, + "Response" : { + "content-length" : "121", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "d52612bd-ed47-463e-a95d-4a126fd80989", + "Date" : "Mon, 25 Jul 2022 04:06:07 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040608Z:d52612bd-ed47-463e-a95d-4a126fd80989", + "Expires" : "-1", + "x-ms-request-id" : "25157d14-22fd-4c9f-ab8e-714e175d6729", + "Body" : "{\n \"name\": \"6fb4e673-76da-6e47-8cbb-28d4b13a7983\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:34.91Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/73e6b46f-da76-476e-8cbb-28d4b13a7983?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2cc10142-ffc1-4bdd-9bf6-2d6e0ec291b9" + }, + "Response" : { + "content-length" : "121", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "8a7a7a5e-e8e8-482e-9223-9e66aee0e7c0", + "Date" : "Mon, 25 Jul 2022 04:06:38 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040639Z:8a7a7a5e-e8e8-482e-9223-9e66aee0e7c0", + "Expires" : "-1", + "x-ms-request-id" : "40121190-7c8c-4fde-8ade-0374a82d906a", + "Body" : "{\n \"name\": \"6fb4e673-76da-6e47-8cbb-28d4b13a7983\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:34.91Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/73e6b46f-da76-476e-8cbb-28d4b13a7983?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "59c75a79-225b-423e-bea1-3a1b4875399e" + }, + "Response" : { + "content-length" : "121", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "492cdb01-11b3-4558-b543-3c83642cfbb2", + "Date" : "Mon, 25 Jul 2022 04:07:09 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040710Z:492cdb01-11b3-4558-b543-3c83642cfbb2", + "Expires" : "-1", + "x-ms-request-id" : "404091b8-196e-4433-a560-a09f619fa6b7", + "Body" : "{\n \"name\": \"6fb4e673-76da-6e47-8cbb-28d4b13a7983\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:34.91Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/73e6b46f-da76-476e-8cbb-28d4b13a7983?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "329bd066-7e18-4ad4-aeda-abf82ccfe0e9" + }, + "Response" : { + "content-length" : "121", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "e5aabbdc-013e-4fc2-93d0-9949d73b7be7", + "Date" : "Mon, 25 Jul 2022 04:07:41 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040741Z:e5aabbdc-013e-4fc2-93d0-9949d73b7be7", + "Expires" : "-1", + "x-ms-request-id" : "fc3ba95e-e6ec-4412-817a-e020996d21f0", + "Body" : "{\n \"name\": \"6fb4e673-76da-6e47-8cbb-28d4b13a7983\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:34.91Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/73e6b46f-da76-476e-8cbb-28d4b13a7983?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "34682ffb-ebc4-4bde-a6ab-2bf98ff6228f" + }, + "Response" : { + "content-length" : "121", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "ecadb7da-4025-48ed-871b-183732a0fad2", + "Date" : "Mon, 25 Jul 2022 04:08:12 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040812Z:ecadb7da-4025-48ed-871b-183732a0fad2", + "Expires" : "-1", + "x-ms-request-id" : "e92483a8-4a6a-4688-974c-16cc4aaaafec", + "Body" : "{\n \"name\": \"6fb4e673-76da-6e47-8cbb-28d4b13a7983\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T04:02:34.91Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/73e6b46f-da76-476e-8cbb-28d4b13a7983?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9f20c9bb-c92c-4fe2-8ec1-eda7148e9d99" }, "Response" : { "content-length" : "165", @@ -511,70 +823,70 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", - "x-ms-correlation-request-id" : "b0adc975-e3bf-4388-9245-b27c49f1ae7f", - "Date" : "Fri, 08 Apr 2022 08:37:34 GMT", + "x-ms-correlation-request-id" : "16bcdd9e-599a-4bba-aa31-4d9d2e3aef8e", + "Date" : "Mon, 25 Jul 2022 04:08:42 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083735Z:b0adc975-e3bf-4388-9245-b27c49f1ae7f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040843Z:16bcdd9e-599a-4bba-aa31-4d9d2e3aef8e", "Expires" : "-1", - "x-ms-request-id" : "4a22fc68-dfa6-4d4b-a6eb-3e0870cda2be", - "Body" : "{\n \"name\": \"a0b1a754-0ada-1e42-8bed-d39a5ee36d0f\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:34:01.81Z\",\n \"endTime\": \"2022-04-08T08:37:21.7213151Z\"\n }", + "x-ms-request-id" : "0e108c55-2127-456b-9272-e6781c8b1fd9", + "Body" : "{\n \"name\": \"6fb4e673-76da-6e47-8cbb-28d4b13a7983\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T04:02:34.91Z\",\n \"endTime\": \"2022-07-25T04:08:36.7076236Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg04412/providers/Microsoft.ContainerService/managedClusters/aks936326ca/agentPools/ap295206e?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg10113/providers/Microsoft.ContainerService/managedClusters/aks32958707/agentPools/ap263928c?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d77e5d9c-4dd1-4008-9ba0-ab0a602e775a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "928672ba-8a0d-4e3f-a963-347525305e52" }, "Response" : { - "content-length" : "1036", + "content-length" : "1081", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", - "x-ms-correlation-request-id" : "50d4d252-f2f5-4f7c-9ddc-38ccb8b33187", - "Date" : "Fri, 08 Apr 2022 08:37:35 GMT", + "x-ms-correlation-request-id" : "a7c419b3-ead5-4070-bf84-00d3bfebf484", + "Date" : "Mon, 25 Jul 2022 04:08:44 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083735Z:50d4d252-f2f5-4f7c-9ddc-38ccb8b33187", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040844Z:a7c419b3-ead5-4070-bf84-00d3bfebf484", "Expires" : "-1", - "x-ms-request-id" : "7760879e-08d5-4b67-8f79-f054b91394ce", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg04412/providers/Microsoft.ContainerService/managedClusters/aks936326ca/agentPools/ap295206e\",\n \"name\": \"ap295206e\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"scaleSetPriority\": \"Spot\",\n \"scaleSetEvictionPolicy\": \"Deallocate\",\n \"spotMaxPrice\": 100,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\": \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n }", + "x-ms-request-id" : "4ddbb413-6643-46ba-90a1-bb33166a5e65", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg10113/providers/Microsoft.ContainerService/managedClusters/aks32958707/agentPools/ap263928c\",\n \"name\": \"ap263928c\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_A2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"scaleSetPriority\": \"Spot\",\n \"scaleSetEvictionPolicy\": \"Deallocate\",\n \"spotMaxPrice\": 100,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\": \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\n ],\n \"mode\": \"User\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg04412?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg10113?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "18c93513-c0af-4d38-b6d7-8f4b4dc9d942", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "25a0c8d3-b16d-4c62-980b-698934d6e6cf", "Content-Type" : "application/json" }, "Response" : { "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "StatusCode" : "202", - "x-ms-correlation-request-id" : "51be967a-29e7-408f-8e0f-a9fe97655f43", - "Date" : "Fri, 08 Apr 2022 08:37:38 GMT", + "x-ms-correlation-request-id" : "286f2ab4-79b9-4e88-b0ff-c270bb1bd513", + "Date" : "Mon, 25 Jul 2022 04:08:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083739Z:51be967a-29e7-408f-8e0f-a9fe97655f43", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040847Z:286f2ab4-79b9-4e88-b0ff-c270bb1bd513", "Expires" : "-1", - "x-ms-request-id" : "51be967a-29e7-408f-8e0f-a9fe97655f43", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQUNTUkcwNDQxMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" + "x-ms-request-id" : "286f2ab4-79b9-4e88-b0ff-c270bb1bd513", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQUNTUkcxMDExMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" }, "Exception" : null } ], - "variables" : [ "javaacsrg04412", "aks936326ca", "dns572561", "ap0548213", "ap1235567", "ap295206e" ] + "variables" : [ "javaacsrg10113", "aks32958707", "dns441380", "ap0650094", "ap170317b", "ap263928c" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canListKubeConfigWithFormat.json b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canListKubeConfigWithFormat.json index 7a0a43721ea7..38f1c5852148 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canListKubeConfigWithFormat.json +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.canListKubeConfigWithFormat.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg31034?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg09076?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "26cd23f2-b53b-4b4c-ad25-5f1ca3f7a620", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "442286ed-6a17-4970-8b9d-b3391431fea1", "Content-Type" : "application/json" }, "Response" : { @@ -14,437 +14,489 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "c3882ff9-6e18-44aa-ad48-7248bef82c9d", - "Date" : "Fri, 08 Apr 2022 08:29:42 GMT", + "x-ms-correlation-request-id" : "9916fa08-3b3a-4666-9a91-bce047a7a0cc", + "Date" : "Mon, 25 Jul 2022 03:54:41 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T082942Z:c3882ff9-6e18-44aa-ad48-7248bef82c9d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035442Z:9916fa08-3b3a-4666-9a91-bce047a7a0cc", "Expires" : "-1", - "x-ms-request-id" : "c3882ff9-6e18-44aa-ad48-7248bef82c9d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg31034\",\"name\":\"javaacsrg31034\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "9916fa08-3b3a-4666-9a91-bce047a7a0cc", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg09076\",\"name\":\"javaacsrg09076\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg31034/providers/Microsoft.ContainerService/managedClusters/aks0179674f?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg09076/providers/Microsoft.ContainerService/managedClusters/aks259535ca?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5bf49445-e1d8-4bcf-817a-4d224d54289b", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9a50d1d5-5915-4366-9e5a-aa79cb0cf752", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "2399", + "content-length" : "2675", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "x-ms-ratelimit-remaining-subscription-writes" : "1198", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "af63a1cb-9d66-4a89-9974-c82d1f34b131", - "Date" : "Fri, 08 Apr 2022 08:29:51 GMT", + "x-ms-correlation-request-id" : "fab4a608-a8bf-4caf-a347-9c0c5ff90db1", + "Date" : "Mon, 25 Jul 2022 03:54:51 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T082951Z:af63a1cb-9d66-4a89-9974-c82d1f34b131", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035452Z:fab4a608-a8bf-4caf-a347-9c0c5ff90db1", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/8f4286bd-8de5-4ce0-accd-d1dcbecd9c26?api-version=2017-08-31", - "x-ms-request-id" : "8f4286bd-8de5-4ce0-accd-d1dcbecd9c26", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg31034/providers/Microsoft.ContainerService/managedClusters/aks0179674f\",\n \"location\": \"centralus\",\n \"name\": \"aks0179674f\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns151968\",\n \"fqdn\": \"mp1dns151968-9e793af9.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns151968-9e793af9.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0573214\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCP7RV2bWZE2/IJNlkEEPHLcoRE1dp3j9f8Y9CzFbIilbJBN0ifJYJfPfdfqcDbxCs7q3nJ+ZHjCtRpAWZ42/gqRHqz+ALzg0tBnijNhfeGXYCoUXiAKiguc3R/jexELOhYZcEOlYt4eU2BEJ4kGs7oXCqqh+yfDg/qu5MpoSz1DQ==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg31034_aks0179674f_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"b4931877-6a91-48b3-b6b7-db5684ac9df4\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359?api-version=2017-08-31", + "x-ms-request-id" : "ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg09076/providers/Microsoft.ContainerService/managedClusters/aks259535ca\",\n \"location\": \"centralus\",\n \"name\": \"aks259535ca\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns239162\",\n \"fqdn\": \"mp1dns239162-41ee33b0.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns239162-41ee33b0.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0660837\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCAtWO2eWKPaRX7uhBzxXhKONUaL8d+YQXjwAmFRiZcID1RA3/fkeMgPxw8BpmeaYTmmepSPTvejEOhxnOQ7eLK/jagtKOADLT42XAZyFz+v0q6d5jXe1LrmTMkMY+ubWIpj3+mSpP1lSgmP09ncjJDKDJohuIWCbhkN6WXe1g2cw==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg09076_aks259535ca_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"d336e082-3f86-48d3-a7da-9ff292ff7393\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/8f4286bd-8de5-4ce0-accd-d1dcbecd9c26?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "03e75946-24d0-44ae-908e-152d0ea62f82" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "774877d0-f66a-4874-ac64-7a2f9930d65a" }, "Response" : { - "content-length" : "126", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "x-ms-correlation-request-id" : "9d751959-d149-41bc-9b96-cb853bc9ad39", - "Date" : "Fri, 08 Apr 2022 08:30:21 GMT", + "x-ms-correlation-request-id" : "0970172b-1324-473c-a443-d12a2e7b66a2", + "Date" : "Mon, 25 Jul 2022 03:55:22 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083022Z:9d751959-d149-41bc-9b96-cb853bc9ad39", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035523Z:0970172b-1324-473c-a443-d12a2e7b66a2", "Expires" : "-1", - "x-ms-request-id" : "10999abd-1055-4d45-9327-6816b55c9580", - "Body" : "{\n \"name\": \"bd86428f-e58d-e04c-accd-d1dcbecd9c26\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:50.7166666Z\"\n }", + "x-ms-request-id" : "1354b3f4-a86f-4ee5-9770-f629a9d6f117", + "Body" : "{\n \"name\": \"5baa0eea-0aba-0c45-9ce0-d6b04c67a359\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.68Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/8f4286bd-8de5-4ce0-accd-d1dcbecd9c26?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "06322efa-b0db-46bc-8b1e-0094233d9431" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "595e6615-a51a-4277-abf0-d9067cb107d6" }, "Response" : { - "content-length" : "126", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "x-ms-correlation-request-id" : "22d27f10-5079-40bd-989d-b91e5b492bdc", - "Date" : "Fri, 08 Apr 2022 08:30:52 GMT", + "x-ms-correlation-request-id" : "03bb3197-9a70-46cf-a8a1-cd2118498a04", + "Date" : "Mon, 25 Jul 2022 03:55:53 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083052Z:22d27f10-5079-40bd-989d-b91e5b492bdc", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035553Z:03bb3197-9a70-46cf-a8a1-cd2118498a04", "Expires" : "-1", - "x-ms-request-id" : "5214197b-234a-4859-b011-316ff58581f1", - "Body" : "{\n \"name\": \"bd86428f-e58d-e04c-accd-d1dcbecd9c26\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:50.7166666Z\"\n }", + "x-ms-request-id" : "c56aad7a-2b8c-41e1-944e-6dcce8dff05d", + "Body" : "{\n \"name\": \"5baa0eea-0aba-0c45-9ce0-d6b04c67a359\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.68Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/8f4286bd-8de5-4ce0-accd-d1dcbecd9c26?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "c89fdada-3664-4881-b913-0f31d289f80a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "15f8ff84-cf09-4e2f-bcc0-0b513cc126d4" }, "Response" : { - "content-length" : "126", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "x-ms-correlation-request-id" : "351dddf2-4d8f-4668-8846-062b1457ff1a", - "Date" : "Fri, 08 Apr 2022 08:31:22 GMT", + "x-ms-correlation-request-id" : "b75d17f1-f9da-41d1-89af-35da3058dfae", + "Date" : "Mon, 25 Jul 2022 03:56:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083123Z:351dddf2-4d8f-4668-8846-062b1457ff1a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035623Z:b75d17f1-f9da-41d1-89af-35da3058dfae", "Expires" : "-1", - "x-ms-request-id" : "9ddbcd4e-4aa7-4395-8438-24ce900b3e24", - "Body" : "{\n \"name\": \"bd86428f-e58d-e04c-accd-d1dcbecd9c26\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:50.7166666Z\"\n }", + "x-ms-request-id" : "ace4d8ce-10db-4942-b737-6bf1d435b290", + "Body" : "{\n \"name\": \"5baa0eea-0aba-0c45-9ce0-d6b04c67a359\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.68Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/8f4286bd-8de5-4ce0-accd-d1dcbecd9c26?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "685cbd70-2775-4184-b1d4-3a65fde868e5" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1e0f0c52-6c0d-4fba-a98c-7dd590d55746" }, "Response" : { - "content-length" : "126", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e3ab91d-653b-469b-8365-0dea830a5ca9", - "Date" : "Fri, 08 Apr 2022 08:31:52 GMT", + "x-ms-correlation-request-id" : "a2b5c00b-5e13-44c5-8489-18c064205e3e", + "Date" : "Mon, 25 Jul 2022 03:56:53 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083153Z:5e3ab91d-653b-469b-8365-0dea830a5ca9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035654Z:a2b5c00b-5e13-44c5-8489-18c064205e3e", "Expires" : "-1", - "x-ms-request-id" : "b45a5277-5f1f-4e5c-965d-aea574391fb6", - "Body" : "{\n \"name\": \"bd86428f-e58d-e04c-accd-d1dcbecd9c26\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:50.7166666Z\"\n }", + "x-ms-request-id" : "5ef6b89b-a51c-40bf-acec-1f5d9dab5617", + "Body" : "{\n \"name\": \"5baa0eea-0aba-0c45-9ce0-d6b04c67a359\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.68Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/8f4286bd-8de5-4ce0-accd-d1dcbecd9c26?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e53fa9ff-b4bd-45a5-a5c3-90537540ac92" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d4a6076c-043d-410f-9d7c-21c624388faf" }, "Response" : { - "content-length" : "126", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a00065f-37ba-41fe-bc12-aedd4a3b1887", - "Date" : "Fri, 08 Apr 2022 08:32:23 GMT", + "x-ms-correlation-request-id" : "1bba09f0-28b8-4ba0-a88b-de2bb8277f96", + "Date" : "Mon, 25 Jul 2022 03:57:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083223Z:5a00065f-37ba-41fe-bc12-aedd4a3b1887", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035724Z:1bba09f0-28b8-4ba0-a88b-de2bb8277f96", "Expires" : "-1", - "x-ms-request-id" : "fbb6cdde-a01b-4638-b1c2-a41de87fcaec", - "Body" : "{\n \"name\": \"bd86428f-e58d-e04c-accd-d1dcbecd9c26\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:50.7166666Z\"\n }", + "x-ms-request-id" : "593707b9-43ac-40c3-b950-632ef5739dda", + "Body" : "{\n \"name\": \"5baa0eea-0aba-0c45-9ce0-d6b04c67a359\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.68Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/8f4286bd-8de5-4ce0-accd-d1dcbecd9c26?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "b7a477b7-6f33-4a74-89f0-ea5343fa348b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e6849d44-bcc8-4333-8b7f-a3c5e57092df" }, "Response" : { - "content-length" : "126", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ad3d4827-abb9-4134-9fa8-126515385bd2", - "Date" : "Fri, 08 Apr 2022 08:32:53 GMT", + "x-ms-correlation-request-id" : "33f79f0d-ed66-4ae0-9e32-8413e55a57f0", + "Date" : "Mon, 25 Jul 2022 03:57:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083254Z:ad3d4827-abb9-4134-9fa8-126515385bd2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035755Z:33f79f0d-ed66-4ae0-9e32-8413e55a57f0", "Expires" : "-1", - "x-ms-request-id" : "826835a1-ba01-4a65-a3df-5504ca50cb85", - "Body" : "{\n \"name\": \"bd86428f-e58d-e04c-accd-d1dcbecd9c26\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:50.7166666Z\"\n }", + "x-ms-request-id" : "46aa4034-6d4c-4f45-9c80-5a813c550276", + "Body" : "{\n \"name\": \"5baa0eea-0aba-0c45-9ce0-d6b04c67a359\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.68Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/8f4286bd-8de5-4ce0-accd-d1dcbecd9c26?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "689e2fd7-50b6-42ab-bc72-5006da448158" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a5c361fa-1678-4c4b-9b0c-cc7c784eca26" }, "Response" : { - "content-length" : "126", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c36f299-39d8-47fb-996b-68bc3b08d207", - "Date" : "Fri, 08 Apr 2022 08:33:24 GMT", + "x-ms-correlation-request-id" : "c3c2e049-cafb-4af0-94e7-c2ab209e03b5", + "Date" : "Mon, 25 Jul 2022 03:58:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083324Z:6c36f299-39d8-47fb-996b-68bc3b08d207", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035825Z:c3c2e049-cafb-4af0-94e7-c2ab209e03b5", "Expires" : "-1", - "x-ms-request-id" : "c115061f-6593-44a0-9a2c-c9dc3c9603f3", - "Body" : "{\n \"name\": \"bd86428f-e58d-e04c-accd-d1dcbecd9c26\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:50.7166666Z\"\n }", + "x-ms-request-id" : "a07029f1-56ed-45cf-b00d-84e6d70d54ab", + "Body" : "{\n \"name\": \"5baa0eea-0aba-0c45-9ce0-d6b04c67a359\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.68Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/8f4286bd-8de5-4ce0-accd-d1dcbecd9c26?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "bacd95e5-a9da-4785-9b63-2711904db735" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ae97b8b0-4459-48ec-ba9a-dbfa9edcadf9" }, "Response" : { - "content-length" : "126", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "x-ms-correlation-request-id" : "0877ca85-834b-4b5b-8aee-60c1486bdf8b", - "Date" : "Fri, 08 Apr 2022 08:33:54 GMT", + "x-ms-correlation-request-id" : "b3601ff9-b4ba-445f-b873-5e0090ed71cf", + "Date" : "Mon, 25 Jul 2022 03:58:55 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083355Z:0877ca85-834b-4b5b-8aee-60c1486bdf8b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035855Z:b3601ff9-b4ba-445f-b873-5e0090ed71cf", "Expires" : "-1", - "x-ms-request-id" : "a22f13e5-6381-4a95-bc1c-0a717da97452", - "Body" : "{\n \"name\": \"bd86428f-e58d-e04c-accd-d1dcbecd9c26\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:50.7166666Z\"\n }", + "x-ms-request-id" : "d57160f9-fa22-4343-9ad3-16c0c9089cbd", + "Body" : "{\n \"name\": \"5baa0eea-0aba-0c45-9ce0-d6b04c67a359\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.68Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/8f4286bd-8de5-4ce0-accd-d1dcbecd9c26?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "3200ecd5-8564-4105-846b-36a6e3278b36" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2a21b4b4-c598-4dd6-90c7-61745066797d" }, "Response" : { - "content-length" : "126", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "x-ms-correlation-request-id" : "299229cc-116c-40e4-a172-d6c9a9061767", - "Date" : "Fri, 08 Apr 2022 08:34:25 GMT", + "x-ms-correlation-request-id" : "399b9ce5-f6d9-4953-acf0-51c234711150", + "Date" : "Mon, 25 Jul 2022 03:59:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083425Z:299229cc-116c-40e4-a172-d6c9a9061767", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035926Z:399b9ce5-f6d9-4953-acf0-51c234711150", "Expires" : "-1", - "x-ms-request-id" : "16eba574-81ea-4150-a64c-72a20b76a51a", - "Body" : "{\n \"name\": \"bd86428f-e58d-e04c-accd-d1dcbecd9c26\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:50.7166666Z\"\n }", + "x-ms-request-id" : "bd533a8d-5ce6-4363-9910-a742a2d1929d", + "Body" : "{\n \"name\": \"5baa0eea-0aba-0c45-9ce0-d6b04c67a359\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.68Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/8f4286bd-8de5-4ce0-accd-d1dcbecd9c26?api-version=2017-08-31", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "bb4d4af2-ce39-4fdf-9955-ddcf1b1c80c0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8bd267b6-eb1e-4cf0-9cdf-b5df00a1477f" }, "Response" : { - "content-length" : "170", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d2abc418-4731-487c-a772-a8b2a7354ee6", - "Date" : "Fri, 08 Apr 2022 08:34:55 GMT", + "x-ms-correlation-request-id" : "372c8a5c-eb91-4dd6-a65c-7660a862154f", + "Date" : "Mon, 25 Jul 2022 03:59:55 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083456Z:d2abc418-4731-487c-a772-a8b2a7354ee6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035956Z:372c8a5c-eb91-4dd6-a65c-7660a862154f", "Expires" : "-1", - "x-ms-request-id" : "d68827fd-418b-4e6d-b8ea-30c7efcffafe", - "Body" : "{\n \"name\": \"bd86428f-e58d-e04c-accd-d1dcbecd9c26\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:29:50.7166666Z\",\n \"endTime\": \"2022-04-08T08:34:38.7524761Z\"\n }", + "x-ms-request-id" : "c620bf18-ac27-4145-8163-ef07a0c52d88", + "Body" : "{\n \"name\": \"5baa0eea-0aba-0c45-9ce0-d6b04c67a359\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.68Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg31034/providers/Microsoft.ContainerService/managedClusters/aks0179674f?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359?api-version=2017-08-31", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "7415f0f0-6134-4001-a63d-71192fc29cef" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4a6e2a3b-ae0d-456c-8bc9-5757b0634228" }, "Response" : { - "content-length" : "3045", + "content-length" : "121", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a762cc00-926a-432e-b043-3313c06bb696", - "Date" : "Fri, 08 Apr 2022 08:34:57 GMT", + "x-ms-correlation-request-id" : "bef697eb-9942-41e8-aefd-230558421f7c", + "Date" : "Mon, 25 Jul 2022 04:00:25 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040026Z:bef697eb-9942-41e8-aefd-230558421f7c", + "Expires" : "-1", + "x-ms-request-id" : "9621b4b4-2859-4621-8454-2ab0411a4abb", + "Body" : "{\n \"name\": \"5baa0eea-0aba-0c45-9ce0-d6b04c67a359\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:51.68Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/operations/ea0eaa5b-ba0a-450c-9ce0-d6b04c67a359?api-version=2017-08-31", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3dd96801-1da3-4084-a0fc-4a55fa76de54" + }, + "Response" : { + "content-length" : "165", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "7ad6156b-ac39-4f24-b808-299a8ecd42ce", + "Date" : "Mon, 25 Jul 2022 04:00:56 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083457Z:a762cc00-926a-432e-b043-3313c06bb696", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040057Z:7ad6156b-ac39-4f24-b808-299a8ecd42ce", "Expires" : "-1", - "x-ms-request-id" : "644c4df2-1774-44b3-ab1c-e467c4f88797", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg31034/providers/Microsoft.ContainerService/managedClusters/aks0179674f\",\n \"location\": \"centralus\",\n \"name\": \"aks0179674f\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns151968\",\n \"fqdn\": \"mp1dns151968-9e793af9.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns151968-9e793af9.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0573214\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCP7RV2bWZE2/IJNlkEEPHLcoRE1dp3j9f8Y9CzFbIilbJBN0ifJYJfPfdfqcDbxCs7q3nJ+ZHjCtRpAWZ42/gqRHqz+ALzg0tBnijNhfeGXYCoUXiAKiguc3R/jexELOhYZcEOlYt4eU2BEJ4kGs7oXCqqh+yfDg/qu5MpoSz1DQ==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg31034_aks0179674f_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg31034_aks0179674f_centralus/providers/Microsoft.Network/publicIPAddresses/bf5c030e-4a22-4aaf-8f26-ebb7c3ab356b\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg31034_aks0179674f_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks0179674f-agentpool\",\n \"clientId\": \"5f11e1ff-8546-4783-8a15-f2f8042a4b97\",\n \"objectId\": \"75688ecc-c0fa-4d80-8963-0682266da428\"\n }\n },\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"b4931877-6a91-48b3-b6b7-db5684ac9df4\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "x-ms-request-id" : "7b88b2a6-c6e7-433f-9921-bb6e4a097d7a", + "Body" : "{\n \"name\": \"5baa0eea-0aba-0c45-9ce0-d6b04c67a359\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T03:54:51.68Z\",\n \"endTime\": \"2022-07-25T04:00:38.4335968Z\"\n }", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg09076/providers/Microsoft.ContainerService/managedClusters/aks259535ca?api-version=2022-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "24cbbb6b-18b1-40ec-ad8e-0a33573de2ca" + }, + "Response" : { + "content-length" : "3321", + "Server" : "nginx", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "6b022f41-839d-4177-9798-5a3480a27173", + "Date" : "Mon, 25 Jul 2022 04:00:57 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040057Z:6b022f41-839d-4177-9798-5a3480a27173", + "Expires" : "-1", + "x-ms-request-id" : "9a680165-dfc8-4eca-8891-280981fd4e7f", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg09076/providers/Microsoft.ContainerService/managedClusters/aks259535ca\",\n \"location\": \"centralus\",\n \"name\": \"aks259535ca\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns239162\",\n \"fqdn\": \"mp1dns239162-41ee33b0.hcp.centralus.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns239162-41ee33b0.portal.hcp.centralus.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0660837\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"testaks\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCAtWO2eWKPaRX7uhBzxXhKONUaL8d+YQXjwAmFRiZcID1RA3/fkeMgPxw8BpmeaYTmmepSPTvejEOhxnOQ7eLK/jagtKOADLT42XAZyFz+v0q6d5jXe1LrmTMkMY+ubWIpj3+mSpP1lSgmP09ncjJDKDJohuIWCbhkN6WXe1g2cw==\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg09076_aks259535ca_centralus\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg09076_aks259535ca_centralus/providers/Microsoft.Network/publicIPAddresses/a7b8f9b8-1640-449b-9ee2-0674e7841878\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg09076_aks259535ca_centralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks259535ca-agentpool\",\n \"clientId\": \"a8de1d2f-1da5-4dab-b1c0-54796eed7d12\",\n \"objectId\": \"02d5799a-7f50-486d-b12b-c0d47ef739dc\"\n }\n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"d336e082-3f86-48d3-a7da-9ff292ff7393\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg31034/providers/Microsoft.ContainerService/managedClusters/aks0179674f/listClusterUserCredential?api-version=2022-04-01&format=azure", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg09076/providers/Microsoft.ContainerService/managedClusters/aks259535ca/listClusterUserCredential?api-version=2022-06-01&format=azure", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "17cfd308-8e34-4a50-a19e-4633651f50b2", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "571989a0-80ba-4060-a02a-191c54188995", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "13044", + "content-length" : "13024", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "x-ms-ratelimit-remaining-subscription-writes" : "1199", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "x-ms-correlation-request-id" : "301eaeab-082f-4ec2-8621-6b9874dda6ff", - "Date" : "Fri, 08 Apr 2022 08:34:57 GMT", + "x-ms-correlation-request-id" : "8ebdb193-f741-4a1b-924a-07240003dd1a", + "Date" : "Mon, 25 Jul 2022 04:00:57 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083458Z:301eaeab-082f-4ec2-8621-6b9874dda6ff", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040058Z:8ebdb193-f741-4a1b-924a-07240003dd1a", "Expires" : "-1", - "x-ms-request-id" : "2e7a407a-ad32-40fc-b572-a718ed1cd8a2", - "Body" : "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVUxa2ExaFBWM1pFWkZGUlpUUlhRbXB1VVVrMk9VMTNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BKZDA1RVFUUk5SR2Q1VFVSRk1WZG9aMUJOYWtFeFRXcEJNRTFFWjNkUFJFMTNUVlJXWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuUTJNM1o1T1Vnd09XSjNhRUZuVGtKTWRYSTRZa0ZSYm1sc1prVkNhMWREUTFaUlJFcHRRaXRTWVhsMFozQnlTUzlZU1d0Nk9GWmlSbWhIYVdGNlpIVUtjRkZ6YjBsaE5qVXhUVU4wTDBZd05WbERZV05FUmxSS09TOWxkR1VyYlVoYWFtSlBOR1pMVVRKUFowdzBhR3ROZHpGbmJITk1hRlpxUkdadWMwa3ZhQXBhT1dWTmNFOTJlRGxhZEhKRVR6UllVMGxWUmt4UkwybG5OMjVyZEVOMVRVbFJSbGx1VVRkelpDOXZOMGhMTlZJdldrNUhjMEZYTVdKak9VbG9Ua1Y1Q21ac01WRmFUakl2WVVKNVpXaHJNblpTTUVaQlZITXhjMnN3Ym5FeU1GVXlNR28zVVVod1dWSlFkVUkwVkhGUU9YcGljMjlXVWpoTlkyUlNWRTVTZGtJS1QxaHpjbEYwZURVMFJrNVhPRUZTTUV4NFNVMUpRMGt2WTBvM2N6SjJiMjk2V1M4eU1tWnVObEE1UW1OcmEwcEZNamxPWjB4U1VXVTBSMVl6UjJ0T2FBcFdhRWxQU1VSMFJITldaVkZGYWpob2EwbEJhbFZZWkRoRFRHRXZiRlV4VTFOTlVFbFBjRmwyT0VkVWR6aGFWMDlJVlRkWGVFRnZhRFJIYTNWNGJXSTFDa1pOTjJkMWFVVlZOa3BOYzFGNlVXRkxRMmczT0M5SU4xRXlTMmcwUnk5RFIxRkJZMjlMTW10WU4xTk1XbkF4TTJVMGFtVmpSMGMzUVV0Q1kzWlZNME1LVDJsNmJsQlNSMHR0VTA1WlpWRllVVFZDV25oMFJsbEdSREJzTTNOcmRHWlBhRVJ1VUZKQ1RuRklPR2RWZUZCakwyWmhOR2xPVVdoTWRGTnlMMVJ2VGdwclR6QlhURUpIS3lzeVJHeGFUalJpV1c1VVdIWlZUbFZYT0d0VVNGRXZVelZJTDBVeU5reEZhV1ZqTmsxM05YQk1TRUZ5ZWtSclVYSjNPWEZwTVhNeENsbzRTMmhhWjFwRlFYaHRUelpPYTBaUE5tc3dUa1kwV1RaWVpqVldVRzEyZVVSSGVtcHpOMnhLYTB0MlJEWlhPSG9yYlRNelRrSTFkWGw2TDJKTWNUY0tNQ3RaVjFVNE0yRllhemRaVXpZcmNFUmxkWFpUZVhreGNYQm1aR2w2VHpKMlJFbHRORzV2U0cxWWMwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1N6RmhXWEEzZG1SMWRWVlpVVmhFQ2l0NlZFZ3laRVZxTmpBNU4wMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFqaGFTRGxyUkRoVVdHOHlTMGc1VDBsaE5WbE1NRGxUYURnS1RrWnpURk5ITTFGT2VIbGhWelU0Yml0cVZHZzBZVk5sZVVJMFdERkZTVGd3WjFReFJIZGpTSEpOWlRoNGRXeEJXV0ZVUTJsVWVqQlRRbUUyWVdoYVpBcEVOMnd5WVVGbU5rUmtXR0pwWjNWNmVXNTRLMmRFTVc5VU4wcG1kVVZyY3pWNGRGSnBPV1ZwYlVVeFZXNXFUalpsT1ZGcE1sVXZlV2d3VlZNM1UybG1DbGdyTDJaR1FrTkVPRWwxVG5WMlpITkZjMDlaV1hobmJuQXphMVZMVTA5cFREZHBhRFpEV0ROdWFsSllPV05MY2xaR1ZrRXJibGxLYmxoaVVVVm1NbVlLTW1oaFIwMXlibFpDV0hNdk16QkRjUzl2VTJsaFRqUkhlWGwzY1hOV1dERnpPVkpqVWxjMkwzYzBObVl2WjBNd2FrdFRZVEF6U2tOTllYcHhTR0pTZGdwaVZWUmFRMlV5T0RsNVNXUlFWV1pUZEVSa1prcHROR1JRVTBKdU1FSlVZbE15ZG1SWVNrTkZORGRXWW1kdWQybHFWbWRwUmpWcVJVbFZlR1E0ZVdwMUNreHZlbUZoZFRkQllYSkpSalV3YUdsb1VqUXZNbXh5Y0c0MmNtMXhTRU13Wm5scllsRllWVWxTYUU5VVNuZE5Uak0yUlhSMlUydFJZVmhMWWpKVloyVUthRFJMVldkUFNGWlBia04zWVRFNFNYbFJVMUZKWXpCd2JFUnBPRE54UnpkRVVtOU5kbHBuWWxGdmRFNW9VelIyVDJZcmREUTVlRGhOTURKUmVtZE5UUXA0V0ZKcGNFbGhXU3RLVm0wMFRrZHhkVkZGVEhnNVIzVTBUWFJ4WkVSeE5XeEtPSHAzUTBOaWFFaDJibnBSTTFoS09HcERVRGh5VnpCdVZEQmxXbFUzQ2t4dFJVcE9ka1V4VFhOR1UwcFlNVEJSVEZCcldsbDBSbEFyVmpKMGJIbGpVa2RqTm1OclUwdDZXbU53U0ZKdVQybFdORTRyT0VKaFZUQjZUVTA0TUZBS01rdGtibGR3ZW5ObGFXOHlTVVJvWjNCaU9VWlFZa3hZU1daS0swSXlWMUIxWVRFdk1UQTBPVEZYYmxOd2EzaFVjMGswWldOM1NFTmxOR2w0ZFhOak9BbzFUM2xvSzBocGNXbE5jVzVHVEdOTlIyYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vbXAxZG5zMTUxOTY4LTllNzkzYWY5LmhjcC5jZW50cmFsdXMuYXptazhzLmlvOjQ0MwogIG5hbWU6IGFrczAxNzk2NzRmCmNvbnRleHRzOgotIGNvbnRleHQ6CiAgICBjbHVzdGVyOiBha3MwMTc5Njc0ZgogICAgdXNlcjogY2x1c3RlclVzZXJfamF2YWFjc3JnMzEwMzRfYWtzMDE3OTY3NGYKICBuYW1lOiBha3MwMTc5Njc0ZgpjdXJyZW50LWNvbnRleHQ6IGFrczAxNzk2NzRmCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfamF2YWFjc3JnMzEwMzRfYWtzMDE3OTY3NGYKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJZVVJDZERaSllVMUNWMDh6YUU1SVdrcEdiazh2ZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRXcEJNRTFFWjNkUFJFbDNUVlJXWVVaM01IbE9SRUV3VFVSbmQwOUVUWGROVkZaaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJZVm10clpWWkVVRlV3YzJ4bWVqQkpiVFphU0VZS1dWRXJOM3BDZUZBMVRWTkhiVEpCVGpWSFVqZzVRMFJyUkhWM2IwMTVibGRQUkM5M1FWZE1hMU5TUVZBemR6aFhWV3RPTkZwYU5YWnVWalZZTlRsbWJ3bzBhVVZtVDJsMWFrOXBjVVpNTVVwUVRtNU9hV2MyVjFCNE1tUkpZVkJ6UWpkWVZVOW1PRVExVWpCVGIwRlNZbFIyV2t4WlJHUTVlWEp5TWk5elZWRndDbmwyUkZWbGNuZEhiMHhRT0RaWlIxZ3lNbWR6TlV4SVRYVXdXbXB5YWtkSFZFcEtZVkpPZFROMU1tY3daRFJXV0ROWFZUbEdWRmx1T0VWMlIwSlFjallLU1RFeVIzVTFTSFpqU1M5RldqSm9XbnB1YUhOeU5sRlpVREZJYTNZclVVaGpSR00xWnl0d1dXVmlPR1ZFU0dveU9FWTBjRTF2VkZkMlZsRm9kamg0WndwNVUyVXJRemwwY3pWNGFUSkNPWEZHYjNwQmFEbG9VRGRRSzJzeVJFRkRWWGhWVjFZMWJGUnVhMlY1Y1RsSFdXbHZaREZ1UzI0dlEwVlRhaTlVVW01T0NrYzVkM0ExWlhFdmNHRm1Ra3hZVm1aM1Mwb3paemhZTTJGaFNrRnFiV2hoWnpWblpWbENkV0YwVUM5SmFrOHpVRmxKTTFaYU9HVm1RbTlHU1dkdGVHUUtPV2wzTTFGcVUweFhSemhUY2tNNVpXMVdUVWxwTWk5eWFuQmFZM2xGVjJ4dU1VaFJUSEEyVTNWMlVsTTJiRXhMV25RNU1rbEVWbk5FY2xod1N6TkllUXBTSzJwcGJFTXJhMHcxWW5KbEswcElVbUU0YVV3eFNsSlVSMDVPV1dSRlpHODFUVTluTjNNd1dVUjNVSEZ3TUVndlNVMVVPRlI1YlZSUE1rZFFZM00zQ25RM1lVVkJVM1YzV2xoNk5YVjVTa3BMZDNWbWNEQXJZM2hRVDI0M09UWlFMMFpUTkRKc2RtVXdka0ZPVTBkSEszcGlOWFJaTHl0V1RXcG9NV1JTV1ZNS1VsZG9UU3RYUVVobU9GRldaMlF4Y1hnd1duaGxUM2xqVXpCdGVHSk5PRTg0ZVVOelJUSjZjSEp2YWxGS1JIb3pSRGh4YmswMFZHTjBPV0l5Y0VKTFVncFpPV0pJV0dkNFQyOHhjekUwWTBOeE1FdHhZMDkzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE4wVjIxTFpUY3pZbklLYkVkRlJuY3ZjekI0T1c1U1NTdDBVR1Y2UVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZ6WVd3M2JEQmpUVXRsTlUxSU9XcHRPVmhTYUFvNGEySjBMeTh2YzNFek9GUXhRblpPYUhacmJXZFpRMng0ZFdoU1lXcElTWGxvYzJOTU5YSk9VVTg1SzFSM1oyeDZVQ3RRTTNremRqZzNkRVZ6T1N0Q0NtWXdlRzU1ZEVOM1F6Vk9OekJtVFdkM05ISm5iR2g2ZEhkT05HMW1ZVmRXUkVOV1VqWTFaamxESzNSMFRsQkJUMWhQUjFvdk56ZExPVko1ZUhac2JFVUtWWGRpTW5CbVltUlZaamhoSzJKM1VGSk9XVEl4VFZWaFNtSjVSMDlUYnk5c2RtRmhZVWxtU1VnMFUzVlJSbTFpZFhGdFNFeG9PVFpYT1U5cVF6QTJOd3AwUzFFeVJVVkxXV0Z3UTFsVlNFMUVZVFJ1WXpWeVJFc3dhREZTWjBWcWVtSlJSbkJGY3l0d2RsSlFUMjlRV2pkak5rbDROMHhNZW1NM2RFUnZVM2RXQ25Oak1YQnJUSFZFZW1OMmNuVTJaa2w2TTJkNU5FUXpSMUUzT0dOclFXWXhVVW8yVTFCWGVUaE5NRlkyYURoYVpFdEdZbFUzYlM4d1VXcEJablpzYkZFS1dWRlhUVTlsTTBaVVUya3ZUbkZOYUdaNlYwVnFZeXQxWTFkSFNsSkdTbVZVYUVod2RWSXZiMGwzVW5sa1EzcG5kMVlyWWxabVRtUkllREJ5ZEhadU1BcGtPVVJ5VWxVd01FTkxhVWRzYjA0cmVXTTVjRXhSUms1eWRVUjJVM0ZGUWsxclpIVXJlVUpyVVdKWWFHcG9WM2Q2VkVKMlVYSnJTSFIyVUhWWk4wWm5DbFJLUWtSVFRrRlRPSFpFTlZwa1duaEpSVlp0VjJkd01FbFFaamt4YjJOMVRIRjJjeXRRVTJaeWFFbHZNV3RZYW5VelZGVTNiSGQ1VmtGaVdTOVhaMG9LUldjelVYUTROa2hwT0dWcWExVlNNazB4WWt0bk5EZG5kM2RqV25OTFVESk5iWHBPUzNnMlIyNXNMMG95UzI1MWJVSnBkMXBYUjJwb1dXZHJRbE01V2dvemFtbzRRbTVWVjBSckwyWmhRVGRsYlVWbU4wOXFiVFJWU21odmFWVkNRVlV2UTJ4NVozQk1PVlpMWkM5TmMzTnZaV1p1VGxwRVdVMVBkRE50YkROMkNpOURWV1pXTVZNNU4yVTJNR1J1YUVkYU0yWnljVE4zUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMmRKUWtGQlMwTkJaMFZCTVRGYVNraHNVWG94VGt4S1dEZzVRMHAxYlZKNFYwVlFkVGgzWTFRclZFVm9jSFJuUkdWU2EyWlFVV2MxUVRkekNrdEVUWEF4YW1jdk9FRkdhVFZGYTFGRU9UaFFSbXhLUkdWSFYyVmlOVEZsVml0bVdEWlBTV2hJZW05eWIzcHZjV2hUT1ZOVWVscDZXVzlQYkdvNFpHNEtVMGRxTjBGbE1URkViaTlCSzFWa1JYRkJSVmN3TnpKVE1rRXpabU54TmpsMk4wWkZTMk55ZHpGSWNUaENjVU42TDA5dFFtdzVkRzlNVDFONGVreDBSd3BaTmpSNGFHdDVVMWRyVkdKME4zUnZUa2hsUmxZNU1XeFFVbFV5U2k5Q1RIaG5WRFlyYVU1a2FISjFVamN6UTFCNFIyUnZWMk0xTkdKTEsydEhSRGxTQ2pWTUwydENNMEV6VDFsUWNWZEliUzlJWjNnME9YWkNaVXRVUzBVeGNqRlZTV0l2VFZsTmEyNTJaM1ppWWs5aldYUm5abUZvWVUxM1NXWlpWQ3Q2TDNBS1RtZDNRV3hOVmtac1pWcFZOVFZJYzNGMlVtMUpjVWhrV25sd0wzZG9SVzh2TURCYWVsSjJZMHRsV0hGMk5sZHVkMU14TVZnNFEybGtORkJHT1RKdGFRcFJTVFZ2VjI5UFdVaHRRV0p0Y2xRdmVVbDZkSG95UTA0eFYyWklibmRoUWxOSlNuTllabGx6VGpCSk1Ha3hhSFpGY1hkMldIQnNWRU5KZEhZMk5EWlhDbGhOYUVad1dqbFNNRU0yWld0eWNqQlZkWEJUZVcxaVptUnBRVEZpUVRZeE5sTjBlRGhyWm04MGNGRjJjRU1yVnpZemRtbFNNRmQyU1drNVUxVlZlR29LVkZkSVVraGhUMVJFYjA4M1RrZEJPRVEyY1dSQ0wzbEVSUzlGT0hCcmVuUm9hak5NVHpkbE1taEJSWEp6UjFZNEsySnphVk5UYzB4dU5tUlFiazFVZWdwd0t5OWxhaTk0VlhWT2NHSXpkRXgzUkZWb2FIWnpNaXRpVjFBdmJGUkpOR1JZVlZkRmExWnZWRkJzWjBJekwwVkdXVWhrWVhOa1IyTllhbk51UlhSS0NuTlhlbEJFZGsxbmNrSk9jelpoTmtrd1ExRTRPWGN2UzNCNlQwVXpUR1pYT1hGUlUydFhVRmQ0TVRSTlZIRk9ZazVsU0VGeGRFTnhia1J6UTBGM1JVRUtRVkZMUTBGblJVRjRXRzVQZDJrMlRDOWtPVEJhZUZoR016ZFBVbE5CV2xWRVNFRktaM05qVkRWNlJ6QkxLMnhKYzJ0TFluRjViRFJNZDBkRmJUTjVid3BRWlhremFWRjZjakoyU1M5bWMxQm5UbWhvVXpkS04xQjBlVkJhYjBOMFNVaHpRVlUxY2t4bU4xcFlVa1ZQTW5CalV6SjZaR2xDZVhWcVpqQkJVR1ZJQ25kek1ISTFhVGhUWVd4UVpGbEVOMWt6UzFGVlVqZExlVTV2Y0ZaTVZrbzNLM2NyTTFGUmFUbEtka2h3VFRVNE1XTlFOR3huT1VFeWNFSkdTMUExVVZnS1NIZDBTWGczZW05MWFucHNibmRrWXpSWFEwUmpjWEoxWjIxR2N6TkdiakJYYVhaSWEwZExWWEJhVVVSWlYwSXdiRmtyV213NVluaDJhWEYyTjNCYVpBcFFjbE5aUVRVeFlYaEROMEl2UVhaQkwyeDZhVGMxT1dVclZHaFJUVWMwYjNOVFRtdHFaMFk0WVhWeVZ6TnVhMmxIWmt3eWNtaEpWbEk0YUVndlEySlNDbEZ5SzJoSE1rSTJVSFZwTUdoWmQxWlpOV1paTkRsemFUQnpXV1JKYjNGR2MxbzVUSEpXT0hCQlNTdENMMFZsT1VKVVJtVmhRMGxTVkdOSFNFVlRNemtLVFhkUlFWQnNVMk00U21kU1pXdE5VVlYxYUhSeVZtVnRNM1phTkdWc01tNURVV3AzTVc5T1NVOU9hUzlpWTNsTllreEZTM016UzNsU2FUZFNaRmRaWWdwVFpHSmtkMVZDYVZjMFlqRlFTa3N6Y0dSdWJDOVZTbmx6WXpjMU5WWnNTVUZKVDFVMVdYcHpaRmQ0VjBWM2JEWXZSVEF4VEdwdGQzUnlTRlo1WkVOVENubHNWM0V5Wm0xbWRsaDJiakp1UWxKbkwxUmlkamhzWkd4SGNDdE5VbnBCY0c5UlFYQnJVbWwyTVhSaGVpOWlZMGRCTkhaalRqZDRXbVp6V1ZaMk9XWUtkRkZ1YXpoUGVUVnRkRW8xV1VaRk1VWklaRFp4ZFVwTVJtUk5hMXBxWTJGTmRrMVZRVTE2VTJjMlJuVmtUVzEwV2s5b2RHUkphRlpXTjJabWEyVkhOZ3BKT1hGelJYWlJOV3RIVnpnemIwVnhOMlphVG5jcmJFYzRVMjl4U0dKQllYQnFZbFp4WkVnNGJtYzBWRzFSY3pkemFXdERaMmRGUWtGUGF6aG1SVlp5Q21sQlpYQXdTRTlUYkVSMmR5dDNWV055ZDFRM01GaHNhV3hOVjBveUx6aExURXB0VjNWM1VrZHhTbEo2WlV4WVZFZENVRzgwWlVRM2FsSjVNbE16U1RJS2REVllPU3QyTkdsaWRVcDZZMFo2Y21oUWFrRlRLemhqZERZdlFrcFpUM0ZPVWpJNFNYWlNObUZNUXpOM1lqRjVlV1ZKYUM5V1lXZFBWVlZHZW1jMU9BcG1aM2t2V2pKMGVYTmlkbVpJVlM4MlV6TnVjbEpGTkRKS1FYVnpiMWR3V0c1SEwzSmFOQzgxTmtaemVXUjBiM1pOWjFOWFZYWlpURUZOYTAxeVl6bDBDbTFMVkdOcU4xZEplRzV3VEVWdlZERkdWRk5OVFVFd0sxQmhNekZ6WTFOTE5HeEViMDVMYkdSdWJVZG5PSEZ6WmsxV05qUjFVSFkxWTJveVpUaEliVEVLVW1OQ1dUWkdiMEY0Tlcxd2R5dEtiM2wyY0RabmNYQXdRMkZSTTNSa1RXNVpRM3BzT0hJek9FbE1iamwwTkRVdldHMW1lVXB5VG1aUFRIWkdVa1pKYkFwdlpYVnVOSFIxYTFkWGJEZzVTV05EWjJkRlFrRlBlR0ZzU0RjelFrWnlWWFJLUlhJeUsyOVJWa0oyWTBaR1VFeEllV2hpWW5GSFYyWnlhamgyUnpWd0NpOVVVSFZhYUZGTlRXWlBMM2d3ZURSUk55dElTUzl2Y2k5eFIwc3dTV3BoZDAxWlJXWmxTVE5yT1RGdE5VdExTREp1ZG1wRU1YVlFla1ZrWjNSaVJVRUthekpPZGxGRVVFbHZORms1UVdoYWRIVnlPRTB5WjFkSk9HbEpSRlkwYm1Kc1VYY3hWbGg0YkVsMWQyWTBXR1pJZFRkaFdUUndURkUwWTNsR1pVbGlNUXBLTVdob2NGTllTQ3QzWjJGWVN6Qk1NMUpDUW1Kc1IzWlhUM1I2Ym14NGExZzFXSFZzV1ZodU1URjZPVGxDU3pNd2RrOUNWMkUwTkU5Mk1HNWhXVEYxQ2xkc1luSlNablk1YjA1V2VIYzVaMHRMTVhJeldteDZOM1J0TW1wQk0yOU9TMk5JUWpCYVZ6SnVZWHBpTUhOSFlrSnNLeXRKZEVWWWVVeHVlVE4wVHpnS1dFRnhaazFWTUVJd1FqRnNXRFkyVDNSd1RWSk1kMUJIU1VRdmNVUXZlVlZPVjBWTVQwVm1MeXMyTUVOblowVkJVQzlRV0RFeWEyVjVXWE5yYm5sM1NBb3ZWU3RqV2s1Q2VYQlNhM1pZVDNST1FUaFdSRlF6UmtsMlYzZzFTbnByUVhKSlVHeERNbGwzWVdaVmJsTnVkSFpQTDI4MFVXSTRSRWs1ZFdGWlQybHpDa2wxWlc5WVlrbDFjV00yUVdjM1dVdElLMVZGUm14QmNtUkdXRXc1SzBaQmNEUlJZbGRaYTB0R2FteG1jamh6VEV0UlVHOWthM2h2WlRkS1dEbDZlR2dLZHpkUWRqUTJaM0l6WldoSGRVaE9ZaXQwSzBFcmVHMHJlVmRzZHpScFpWTk5URGx5YlROUWNHTlNlVTgzZFhkb1kxQTVURUZXT1RWNFYzRTRPVkJtYlFwQ1JUVnNZVFZQVVVaMlMwSnJiMEZKYUZwVGFrRTVUbHBNZG05amVHNTJia2MzYmpSRlJHWnFXRFpsYWtGWFVuRnJURGQxUkZaR1NrdFBOak01TUZoVUNtUlRlalZwZWtaVmVITXlhekp1ZDNFd1NqVTVLM05KU0U5M2FIRlJVRWhNVUROU01GTnNlR1ZXU0RSMldXMTFkbk5NZW5ObFQwaGpkbXBOZDI1NU1ETUtXSGhrYlV4UlMwTkJVVVZCY25aV1MxVlZXVWhoYW14clVrMWFSSEl4ZEZFNU5rdE9VbGt6Y0hwYVZVcExkMHBrV1doQ2MyRkJkRGRVU0V4blF6RXdVQXB4VWtSQmRHbEhZMlpQTTB4MWQyWlJTVTFNUTBwV2VGSk5VVkJ2VERSdVYyOXBSR3hvUlRaMVl5dERZalJNY0hOcVJGaFNjVmR1TUhOTWJVMTJRV2c0Q25wQlZHcFJOMnROWTFKd1VsWmhSMUJKTlVJemRqSjJWbEpGYkVOek5tVnRSakJhZFZBMU1sSnVaRkpGWmtWMU1YRm9SSFpNUnk5VVNsVkNOalJMU0U0S1pVc3dWRUl5U0hSNldHVjRPSHBQY1hwbVozcE9UVGt3Vm0xa1lrNWtiSFFyWWpsbVlXMHJOamN4YUVWRE5IaERWbXd4VkdKRlpGSkNiVUkwTWs1V2FBcDBhamRXY1RGdGVubEZNakEzTkZoQ1FVSXlXVzFGVDJkTmJtRklOelY0VkRCaU5sUnVORGxxVVRSS1lrRlpOM0Z1YjA1cVdWUmtaM0IwWnpaNFdHUm1Da2RFVDFCb1dXSk9UR05oWkd3NWVWVjVUbk0xTlVVelRubGlNV3hrZURkT2NsRkxRMEZSUlVGeE1WUkROa2RJUzJSTWEweEhOek5VYUU5aGFFRkVWRzRLYVUxWldXTXZRM3BJY0VrM1FsTjRaRWRHVEdOdVpIWXpkbkJ3Y3l0eVZsRTNZek5yUTNONFJFMXJRM0JWTUdnNE5uSXZjRFJITWxReFFsUktVSFJKZHdwTWQzUmFWM3BUZVZaUlRtWkNhMmd2UVVFMlEzVkpkQzlyY1RCTWNWQlBWRWRzVGtneU5TdG1SemwwU2pSU1QxUlZkMVZHU0ZsUFdtNUhRWEp5UjFGM0NuSnJZbHBXVUhVdmNFcDBWbFptTms5TWNsZFllRVpPY0VadldpOTVlRWRqZDIxTVVYaFVOV2xJTkRjelJVazFVVTQzUjNaRk0xQlRhemRIVGl0bVFWZ0taVWc0T0RGdU5qaEhhV3RpTWxGclpFMWlMMFpJVWxWeVpITnZjVGxUYzFjeGJtRm5RVTVvTW5Cb016UmFaVWRYWVVGcWJrRnlWazl6UXl0RGExVkdTQW8xTmtSNU9VZFlTRkEyYzI1eEwwRkZZV0ZyV1VsQ1JFMVNiR2RDYmtWcWVtcHJNRE5vWVRkTlNsUTVabk5RVEVKcWRGUm9XbTkyTld0UUsyUnVkejA5Q2kwdExTMHRSVTVFSUZKVFFTQlFVa2xXUVZSRklFdEZXUzB0TFMwdENnPT0KICAgIHRva2VuOiAyNzNhNWYxNWY3MDQwMTMwMmYwNGM1Zjc0MWI0MjgwY2UyMjRjY2Q1YzRjMTNiMDEwNDRhZWQzZTg2Y2Q4YjIzMWE2MjlkNmYxYzU3NTNjZDI5MTEzZTQ0ZjkzMzc5MmE2MGUzNmUxNjM4ZGE0ZGE0YTk1OTZmMzQyMjA4YzliMQo=\"\n }\n ]\n }", + "x-ms-request-id" : "132be9dc-03cb-4e12-a37f-f35d30b6acc0", + "Body" : "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUkUxelRERXJka1JPZUcxSlNHOHhkR1JzU25GSlJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUV3BCTTAxcVZYZE5lbEV4VGtST1lVZEJPSGxOUkZWNVRVUmplVTVVUVhwT1ZGVXdUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVONkNsQTBZMFJRYTFSMlMwOXZaWFYwTW0xWGNrdFhkSFppTVVoWmJqQjBOalpzZGt0c0wyTmxTSEpvVFc1WWFtcFFhMnB4T1c5R1JFNHdLM0psY0dkbFlrY0tORWx0UWxaMmRYcFhWbThyWVZNMlZ6Y3JiRkZXVEdSdFlsVkNTRmt5VVRscVRFbHVZVGhZUzBaSE9DOW9TakpHU1ZZNFdqTTBXRXRNWTFCTE5rODBiZ3BLYjFWalZIUmhSVTlRTUhCRlJIbFJZM281T0VSeFFuRjJUVlI1VEVadFR6TlJNa0V4YlVKalIxcEhNRW96VnpSYVltWTBhRTk1YjJsNlMxSnNRMkkxQ2xRd1pVUk1OVzAwZVZOUk1YQlBNbE5MSzFwV05IcFlNREY1Tm1ob2QycE5UVW8xUmpNelZXdENPR3BaV0hkb1dHVjZUV05UWkcxTk56RlBVMmN2Ym5ZS1NHNTRaRmxpTW5NNE1IaHpNV1kzVGtoRlUwUnFURlZGTm1wc01VOUNNa2gyTVdKRWVXWnpaekV5ZVZneldtcDJZM2hMVTBORldqa3pPRWRoYXl0clNRcG5XbVZEWWpaM0syOUNjVXhsTkc4NFdIaDNZakZ1Y0dGS2FESXpVVFI1TDBKb09Dc3hiMVZYTDI1M1FsSk9OVWhLY21OM1QxbDVObGxIZDBWdlFXUkdDbGMxVDJrMk9VVnBSSG8wWmxWaWVXMVhWVkF4TUhBNFYwUnZWRkJJWjA4NFRuUjNiV0ptUlV0VmVUUmxXRTlUYWxSbVRYZG1aelp2SzI5SFkwbGhhVVVLUm5KVlNUQXlVMWRDWTI1M2RuRldNMWdyTVhZNWJtOVhOREZrU1c1eWJXaENUVXRSVkRWWlprWnNWSGxQTDFWdFptdG1hM2wzYkV0eGRsVnBXRlpLTkFwcVN6Z3dXRGwzTkZKb2FFTktVMGN3Ylc1WE5qTkVla0pHTWxWb1lXVk1URWRWTlZGc1REUm5iakF5YVhaWE9FODVaVVZ5WldaU1ZXOU9Ra05IZUdkU0NsbE9hVkJOY0dvM1JXZDZSVlZ6WjNVMVZrNXNZMHd6YXpselFuZHJLM2RZUW5GeE4xUkpXSE5sWmtrelEwb3JRMWxUVVN0TmVqVllkMUowWm5vMlZFc0tibGN4YVVVNFYzcFdOelpNWTJ0VGIwWjJWbXAzTUdRMGMwSjJabWxNVW5KWVZrTjZTalV4VW5wM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVNVp6QnlkMkpMYVVwbVRGSTBZazhyQ2xOU1NrazJXVVJ1VWtOQmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR1RpOXBXbXg2TnpOQ09GZG9WVVpMUjJKS1MydHJia2dyWlZZS1J6TnFaV3BZVEZWaVZ6aE9PVlphYWtwdWNURkliV2hxZFVGbU5IcEdhREpRUkVkUWJHNVRXVXRZZUZKd1ZETnhNRlF2SzJ4SVVVMUNVRGhDUW5jeFN3cDFTalUxVUZGcllTOVdTM0ZoUkhOelVYVlhNVU0yT0RSS1ltcDRRamxRVFVacVRFMTVTM2N6UVVaRVZEaG5kVTg1YTFSRlFYVmpUbFJqZEVZeVlrTkRDbTFoVkhnemVrWXpkMVJrTldSUFlqRjFVbGRtV0dZdmNHaFBRbkZsTWtGblJIbE9WREF5YWt4UlZUWmhaa05ZUm1wcU9VRjBOVVUzUjJSWldYcFZhMmdLVVhSbWFYaEhWalJYV1hwc0x6bEVSRkJoYkZoaU9VOXhkRmh5Y1ZsSWFXOXBLMDFyVVVWNmF6RjJPVTFyY0c1UksyeFJNRkp4Yms5RmEwOHpSakp5VXdwbVprOUpWbU5FV1RCck9YWm9WbU51Y25ScmF6Tm5XSGcwT0hrNGRsbFhUM2h6WlVGMVdqYzBaMmNyWTA5SmJuQkdTMmt3YlhRMlQydFlNeXRGVFRaS0Nra3JaRTFYTW1ORloyMWtaRTkxTlVzeFZHaFJVbGhVWlM5MlYxcEdiMEptVUVabU1rbHZUVXBzZFRKR1FYaEpWalJzTUhKTmJYVm1kMUJOTm5Od1Rrd0tiV1JGUlZKMFJ6bHZORkYxUVRCa05ESm9PR0V5Vm5oR09YZG9jVkJTZUdSVmRqSnRiMmhMVEM5elVtTXdNSEZqWWt4WU5taEhRMm9yY1VseWRYYzRhd3BpY1dab1RubFJUMGhNU3k5YU1qQTJWemh2VGpCbmJWY3plbmN4WkU1NWJVbEhZbGRQU1ZWb1ZrSk5aRVoxVkhCc1QzcFVTMGhFY1ZsWGJ6aERjMk4wQ25GT1VVZDNNVVpMWldGVE1FVXhPVlJaVjNWc2VHc3JTSFp5Tm5GR1lsUnJWSEptVlhSM1ExTkJXVVZIWTNWTWJIUnRNbGRNTDBOa1NrSTFaelZKUjNNS2NGUmllakp3Um1ocGVEaERUMncyZGl0dksxcGFWM2hEZFhWWmFFbDRUMUppUml0T05GVlRXV2wxWkZBNFJrSnFNVFZvT0RkRlRtZGphVXB4WjB0dWJBbzRUalpLWjFoMmRXSjJPVnBOZVhGa0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL21wMWRuczIzOTE2Mi00MWVlMzNiMC5oY3AuY2VudHJhbHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBha3MyNTk1MzVjYQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogYWtzMjU5NTM1Y2EKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2phdmFhY3NyZzA5MDc2X2FrczI1OTUzNWNhCiAgbmFtZTogYWtzMjU5NTM1Y2EKY3VycmVudC1jb250ZXh0OiBha3MyNTk1MzVjYQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2phdmFhY3NyZzA5MDc2X2FrczI1OTUzNWNhCiAgdXNlcjoKICAgIGNsaWVudC1jZXJ0aWZpY2F0ZS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VaSVZFTkRRWGRYWjBGM1NVSkJaMGxSU1V4TmMyMTBOVUk1YjBaQ1REUnNlbWxXVGtwblJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjVUV3BCTTAxcVZYZE5lbEV4VGtST1lVWjNNSGxPUkVFelRXcFZkMDE2VlRGT1JFNWhUVVJCZUFwR2VrRldRbWRPVmtKQmIxUkViazQxWXpOU2JHSlVjSFJaV0U0d1dsaEtlazFTVlhkRmQxbEVWbEZSUkVWM2VIUlpXRTR3V2xoS2FtSkhiR3hpYmxGM0NtZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSWmVFbHlVV3g0VTFOMFltczVUeTlOVTBwQ1NXMEtTbXBKYW1KdVNUaGtRazFGTm5KM2RFRk5ZM0owVWxwUGJFUjROa0ZITUdrMk0zUjFRVmw1UTA1VFpWaE1UMWxPUWtkdmEya3pXRzFQUjI5a2F6RmlaQW81VGxoa01EbG1NM293ZUUwclZGcFBVMGhQY21VME4yUkVZVzlZUzNCeFEzaGpNbWhXVHk5TFVtRTVjbXRRYlZsT01XbG5aMVpVTTFGS2NXUndka2hEQ2tOT05USnVhaXRKY1VKbE5ETnBVak5vUnpkRUwzVjZRMmd3TjFkQ09HNVRlVkpRYTNoSGFscEpVMUZCTmpWV1NtRmFhVWhpUlVOb1EzTkRVbVp1U0dnS1UzcDFOMHRFVkZCbWFqSXJjVmMwU0U5SGJrWTVZeTlJV0hoS2QzY3dTM3BKWVVkd2JqQlJaMHRuWW1OSlRsVXZSRlJQVlhGTlpUWnBXUzlKVVZGeVdBcDFlVnAzVFZkMlVpc3lUU3MzT0ZoU2JVeHNkWHBZU0VKcFQzRm1VaTkwYlUxaU9ITmFValptWVhSd2IxZERNVlpSZGtwcWMxbHdZVEpLVFhsaFpIbHRDbTVKTjNoV01pODFWVXBZY2pOSWMydDVjVlJvVDNOMmFuSkpZMW9yYTJSbVJFaG9hRkpHYXpabFJUZEpibmQyT0VnMVptNHhiRmxyUkdSWGRWUXhiek1LUlRCR1oyaHJOa1ptVjFoelJHSm1TV1JPVGxFclVrbENVRmRhY0VoT1NYbzNXRGRaY3paRFJVeDVlRE5PV0ZOWlZHZHVaWEpHZGtSR01rUm9hekl5ZUFvMlUwRmxiV1JpTDJZdk4weEplRVZxUjB3NE5YcE1VVTFKV1Nzd1Z6UXJkRkV5WlZGUlNGSTJWSEpMVTBVdlowdFFUWEV4TUN0SVdVRmxOSE5DZFZCckNpdFRlVEp1YlZoQlZrTndNMGh1T0ZCbk4zYzFWV3hJUWxKU1FsRjNUWFZuZDJwdGFXeDFSa3hDUlRCS1kwbFJiMlJITm5CamNYRnZXaTlhVjB3MWFYQUtVMUZJZDI1VVpsSlVlakYyTWpSTVZIQk1WVkEwYURWMVZsWjNkbTQ1TW5KWU1tbG9ZakJXTldwMkswRndabTltVW1vMWQxUTBhSEZtV2tvdk5rNDFjQXBYTm1SWE9UaE5LMkpXTDB3NVMwUnRiMXBPVWs5M1NVUkJVVUZDYnpGWmQxWkVRVTlDWjA1V1NGRTRRa0ZtT0VWQ1FVMURRbUZCZDBWM1dVUldVakJzQ2tKQmQzZERaMWxKUzNkWlFrSlJWVWhCZDBsM1JFRlpSRlpTTUZSQlVVZ3ZRa0ZKZDBGRVFXWkNaMDVXU0ZOTlJVZEVRVmRuUWxReVJGTjJRbk54U1d3S09IUklhSE0zTlVwRmEycHdaMDlrUlVsRVFVNUNaMnR4YUd0cFJ6bDNNRUpCVVhOR1FVRlBRMEZuUlVGUGQxVkZUMk5SY2l0V2RFTTFibmh5WmpnME13cHRPRE5LVms1a1VteFJabkZIV2twRVptVlFTelV2Y0hONGFGVlRNMWN4U0RGVGNXWTFhUzlyWW1KYVNtaDVkRWgzT0ZCMlZFeHJRMGhMT1c5SkszbFJDa3BuZGxGWFZISnRZbTVhWVdGeWVrMVhjRUZwU0UxQkszcGhRMUJHVFdKSGFuQnJNRmRhV2paNVZHSnNkbFpQY0VSblRuaE9VR1pRTWpSbVEyZEVTMnNLWjFGcFZFUklUR3BuYTIxMFFpOTNSbWRSZDNaVVJUTTFhak5sYnpCWVVGSktiVVpoYWxGUFoyZHZOWEJZT1ZwVFp6WlNWMXBLVkdKVWNXSnRaMVZLVVFwNWVURk9UbkJsT1VSalVGRTVjV1V3VWtrM2VuVXlWakIxY2taMlRXMXNMelZZVGxKU09VNHpRVlFyUkc1NWJEQndXV1ZpYm1wQ1VtZGtNbkpIWVdZMkNuUklhRFJsUTBFMlVIQmhOekp2WnpGVmNWQmlSVVF3UjFOTGMzQkxkRTV4ZVRGRVZWVXJWSGt5ZG1ZM1MxUnRVbk4zTmtoV2RHcEtWRmhzY0ZCdFZVZ0tTbFZUTkdWclEwOVhPSEkxTHpsd1NGcE5LM2hYTjNOaUsyRTJha2hNWWtSTFJ6YzFSRkUyVG5KQ2RHRkNOR1JqZVVweUwwczBRM1JOVmtsVWFEaEJkd3BqZW5kelYySlBhWGQzWlhwM2RYVlFRWEJSY2s5RU4xWk9hWGxNUkhVeUwwNXdkVzQ0VkRSTk5ESkpMelkwZVZaU2FXbG9PWE5uVGl0MFFWRkhjVkJ5Q21SQlRVTkZTRXA1TVhCNmRXTk9LMGR2UVVwT1ZtVk1SVWxXTlU1SGJrOU5VRmg0ZWxsa1dIRXpRMDlUVFdaUFdtSkVlRWsyT0dOcE5rOUpSSFEyUkZZS2NGcG5kWFpUVmxZcmJITlNObHAyYVZCRVdVbHdiVTgzZFRkb2VWaHpibk5sTm5aV2FWSTRUamhHV1ZWQlpYcFZTV1JQZWtWbVltTTVjVXRwUVZST09BcFlNVWt5YzFoUVkxaDJTbTQ1ZW5kaFRHOVZiVlpuZEUxWGRrNXZiVFV4T0hkdFdrZDVjRE5TZGpSSmRHWmtla1JaTDBsU1UzcGlWMDltUjJSSE5HVmFDalJWTmt0a09GVjZVbWh3WlRoNVdqTkpMMlF5UVZkelBRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIGNsaWVudC1rZXktZGF0YTogTFMwdExTMUNSVWRKVGlCU1UwRWdVRkpKVmtGVVJTQkxSVmt0TFMwdExRcE5TVWxLUzBGSlFrRkJTME5CWjBWQk1rMVRTekJLWTFWcmNsYzFVRlIyZWtWcFVWTkthVmw1U1RJMWVWQklVVlJDVDNFNFRGRkVTRXMzVlZkVWNGRTRDbVZuUW5SSmRYUTNZbWRIVFdkcVZXNXNlWHB0UkZGU2NVcEpkREUxYW1oeFNGcE9Wek5tVkZZelpGQllPVGc1VFZSUWF6SlVhMmg2Y1ROMVR6TlJNbkVLUm5seFlXZHpXRTV2VmxSMmVXdFhkbUUxUkRWdFJHUlpiMGxHVlRrd1EyRnVZV0o0ZDJkcVpXUndOQzlwUzJkWWRVNDBhMlEwVW5WM0x6ZHpkMjlrVHdveFoyWktNSE5yVkRWTlVtOHlVMFZyUVU5MVZsTlhiVmxvTW5oQmIxRnlRV3RZTlhnMFZYTTNkWGxuTUhvek5EbDJjV3gxUW5wb2NIaG1XRkI0TVRoVENtTk5Ua056ZVVkb2NWbzVSVWxEYjBjelEwUldVSGN3ZW14TGFraDFiMjFRZVVWRlN6RTNjMjFqUkVaeU1HWjBhbEIxTDBZd1dtazFZbk14ZUhkWmFuRUtiakJtTjFwcVJ5OU1SMVZsYmpKeVlXRkdaM1JXVlV4NVdUZEhTMWQwYVZSTmJXNWpjSEI1VHpoV1pIWXJWa05XTmpsNE4wcE5jV3MwVkhKTU5EWjVTQXBIWm5CSVdIZDRORmxWVWxwUGJtaFBlVW80VEM5Q0sxZzFPVnBYU2tFelZuSnJPV0ZPZUU1Q1dVbGFUMmhZTVd3M1FUSXplVWhVVkZWUWExTkJWREZ0Q21GU2VsTk5LekVyTWt4UFoyaERPSE5rZWxZd2JVVTBTak54ZUdKM2VHUm5ORnBPZEhObGEyZEljRzVYTHpNdkszbDVUVkpKZUdrdlQyTjVNRVJEUjFBS2RFWjFVSEpWVG01clJVSXdaV3MyZVd0b1VEUkRhbnBMZEdSUWFESkJTSFZNUVdKcU5WQnJjM1J3Tld4M1JsRnhaSGcxTDBRMFR6aFBWa3BTZDFWVlVRcFZUVVJNYjAxSk5XOXdZbWhUZDFKT1ExaERSVXRJVW5WeFdFdHhjVWRtTWxacEsxbHhWV3RDT0Vvd016QlZPRGxpT1hWRE1EWlRNVVFyU1dWaWJGWmpDa3cxTDJSeE1UbHZiMWM1Um1WWk55OW5TMWcyU0RCWksyTkZLMGxoYmpKVFppdHFaV0ZXZFc1V2RtWkVVRzB4Wm5rdlUyYzFjVWRVVlZSelEwRjNSVUVLUVZGTFEwRm5Rbmd2WlcxRFFpOUZjSFJoWWxWTVRrdEhiRGRHZW01dFNpOW1NMVpVYkZSaWNsQjNXREpLU2t0WmVWbEpVbXRMU3psQ1luaGxkMHhqU1FwQmIybENZMHhMUWt4WWRFNUlVMVV3VlhGTFRtcDBNQ3M0Um5sbFNFVk1ZbWhMZG5WQ1dGWTJhRkpQY0RGNUx6Z3paREJxU1dsNGQxRnNZeXR5WjJGVkNqaE1WM0JEVkhoWGRFMWhUVFZaTkZZeVpURXdiVTlUTWxGNlUyWmtWWEZJTVc1Q1UzcFNTM05vVTFadlRrcDVURTVYVVUxaFJuUnpPRzExVVVSWE5Fa0tkamhFYW1KcGIyY3dZMHRRSzBwbVpHNHlMMlJSUjNCRlIwNXhTMUEyV1Vwd1puTm1iM0ZQVm5kRlR6aFRSVFZZWWtGNk5Fc3lZbTVLWTJaT2NUaElOQXBGVjJ0cFFWQm1ZV2wxYlZwWWNtWm9WbGREZWtZclVXdDVkeXRKYnpCS2VtWlpibFozZGpGT0t6UnNjbm8wVXpCWlFsZFRWVkUwVVRsVGJXWmtSVzB3Q21KMmFreHVUVllyVjJWQ09VWmtaV2d4V25WTllYQm1PWGwxTTJST05tWmxhMXBaV25wMFNIUjBNemxwV2pCalJEUjNjVEpSU1d3dmJVOHZVbEYwVVVzS2VuSTNlSGhLVTFOcWNWRTNSRXRZUVRORmFrNHZURGN3TW10RlRqQXlaSHBFUkVaSWNsaGpaVkYwYzBZeU0wTlljbVZzVFhSNFlUUkJjRUp2YW01a1RRcGhOM1Y1U1dNd1ZHUXpiRlZsUVhscVFtRnJhMlZKVUc1Nk5WcERjelJ3YVZsNmRVeEZRVWwyWmxWVU5HUlZjV3RUYWtrd2N6ZFFVR3RhZUNzdlVETjFDa2xyVVd0a1pVMDRSMnREYW1kcFlTOXhSbU5hYVRaQ2FXMURLekJ6ZUVVdlNtRXhkSGc0WTJGRVprNXdSMWc1YjNSeWFHSTBjRGx5WnpWemNHNVVOemtLYmpoaWMxUjVSMFpTYVRSQmVqa3hWbkI2VmxaMU9UbGlaMEpCTTNRNFUxWmxXVnBaVm5oNVowdEZSR3MyV0RCRmNGRm5OREEyTW5WdU5HdG1UbFZyUXdwTGVEQjROalZYZDNSbFRHbzNOalp2VTJoc1VtSmFUVlV6U25rd01IWk9aeTlpV1U1R1RWVlJTM05xU1M4M2NtcEJVVXREUVZGRlFUSlhTM2xuYkRWNkNscHBNalF3VWs1eVNqbFFNM052VDJWbEwzaDRSazA0V21vM1RUZDRkRU5ETVROM1IzSk1WVlV5T0VGemJqbG5NRnBNUW5aMFZUQkRRbWxGTjNWcVluVUtaMnd3UVZkRGNtWllWMGxXWkhvMGFVTk1jMHhCVUcxNFprOVlRa2xWTm1ORmJYRndUSGM0VWxScVRFZHhXRmxXZEVVemRqTjRPRmhpT0RGNE5reFlPUXBtU3pGdU5qaHdNRGh4ZVdkSE1XZExkR2RUYmtsbFluQjVWeTlFVlRoeVQyaFlUekpxWkdaQ1NrcGFWMVpKT0ZFd1NWVmtjams1ZFVSU1dVTmlkbEk1Q2xCNFUzUnNVVkI2WVN0SU4yeHJkalJrTTAxcVpXUkJMMEpYV0N0amRVOW5jVXhxTldwbWRUbEZXRmswVUZWMmN6QXZNRE42YUdocmJFRkRWbGhUZVRFS1lVTTVjV05HZEVsU05FOHlMMkY0TnpKdlVXdzRORzVySzFoVVRqbEJSWGRvV2xJck5VRlZjSFV5YnpkdVNFbDJPSEpMYml0aGVFSTNZMkZaZVZKcmJ3cE1jRFl4YWxOQlUzazVTa3hhVVV0RFFWRkZRUzh3V0VGaVVYRk1iRmhaTDNveWFEZDVVVkIyUzFwSlFtMWFjMUJWTW1rcmVpdDVPVzFKT0dodVdFeE1DazFYV0U5aE1IUnFkV0ZGUzBGUU9WSTFPWEZGYUhsVVdtbG1jbkpKYjBKc1RqVTNjRXRhVVVsTVVGcG5kak5YU2t4dkszaERXRUV2UVdJeFkyMXJVbWdLV0ZFcmFGRlVUR2h5YVM5RVpYZFVjVFV5TUdoaFkyRkRRM1kxZG1kWEwxSkRWQ3RuUzNNeU0xRkJlR2x0UTNKRGFrVnVUV3B4ZFc1dGMwcFlZM0Z4YWdwamFUaExSbGxQUkZKM04wbFlTSEZMVUVWS2IxcDFPR05ZVkd3dlJDOUJNM0pDVjNRNFdWVm9ReXRIUlVwV2RuaFhkVmxuTlhoTGNsSTViSGxIVDNWbENqWXJXRWxXTlUxcldtZFJlRmRTY25acWR6RkpjMFZrWnl0Qk1XRmlOVTE1VkhBNU56RnBjVmROTDNCdGRtOXZUMVpFVUhVd1drWTNibmx1YzFKUldVUUtWbVZYVDBGWmIyRnRNRFJsTm5oMU5XOVdZV2hSUjNGNVlVZ3pUR2g0TXpsclQyOHpNVFpDZDBoM1MwTkJVVUUzU2xNMVlXRkRXbEJ4Tm5JMFVEWmtUUW9yT1VGT05IUXJkemRxY3paS1UzSlpVRlJVVEZsQ2JuQldVbHBtTUZKcWRYWlVaVzByWlZWMllrRXpTWEo2TkZsMWRIZE5VM3AyVkdacmFFVjBUVEV6Q2tVclQzaFJUbVI2ZEhGb1JYbExjbmQ0TTFsdVowMU1XVUVyYzNGSldtaGplRlpZYkRjemJubFNOalF5TnpkbGNIUkxWVVZaZEdWdlNESnZRamR0UTNBS1ZXbDRlSEJDSzNRM1JrRnZNbXBJVEcwM2RubFNWME40VlVreFpuaEZPRXBxUm01TGQyVTBZVkJqTWxrNU1YQjVPWGRWVFdWVWNrZGxaa3hOWXpOdE9BcGFXWHBXUmt4Q2VXdzBTVlZrTkU1bFJHRlZVVlI2ZURoRE1pOXBiMHBoVG1STVVGTm5ZVVJpUVVzNE5WSk5ka0YwVUZCMWJVOWFNbWhWWjFwaU9IbFlDbTlKSzJWTU1YRXpWbTVOV1RoMlF6UnhialJMYjBoUk5rMHJMMlZVUlZaU1pEVk1iV1YxTjNWM2IzTlFWa1F6VURKMFVHaERlRmw1YzFBelIyVjFOa01LVWtOSk9VRnZTVUpCUjFCU2VEZFJZalp2WTNkaVZGWlRaWGN3V1hJM00wZHlWRGtyYUdScGN6TmxhRFptTkRCWVkzbExXbFFyUm5GSFVGTldlakZKTkFwTFlYaEpTM0ZSUzBzNFlWa3pNRkEwVkZabU5XTjRjbm94WlV3dlZYTTRZVXhMZWxKaWFXODFORUpXTjNkbVpWSk1OVkJZV2pKak0yaEhkakZXU2tORUNtUjFTVEZCZUVsd09USllaMVJPZFRGelN6Wm9jR1JGUkVFd1QxcHROakk0Tm1oVWMzRTFVMjFEZDNCRVJERkJVamRLV1ZoTFkwTjBjV3BxVG1FeGEzVUtOalpTVml0d1dXcDBZVmREYmsxdVRHZFBZMlp1VUZZMmNVMUZTSFZQZEc1aVVVRmhNblE0WW01QlVXWndZMEkzZUVGVlFYQmxNVU4wYW5WblpYaDNNUXBUV1VzMVlVeEhPR3hSTjNoaGJtRXdObWRqTVZCUVpraHVNbTlaZW5oR1YwOXFWVW93VWpaWFJFTTBRWGRMUmpGcFJVWmFXRFZoU1VwRFduWTVXVmRFQ2xnNE1qVXdjbGhJU2xaclIwZ3JkVU5RVlUxQ2RFUlRiR3RrTmsxcGVYTkRaMmRGUWtGS05FRk5SbkZLYTBWMWNVcExNRk56VFhSbE5ERlJPWFoxUzBnS1dUQldVbk55T0VacEwzbE9hbHBZYjFwT1Z6SjVjSFl4T0hKTGNDc3phWE5uWkdOWWMwaEZZbGhsTURCSmJFRmtTbVZUYjJwSFNXSXpTRzFIWW10SGFncDJWRUo0UW01MmJXd3hNM2RxVG1sbmJYSTFjRVY0WVU5eWJGSlFXbXhoVjJWS09YWmlaR3NyVUVKbmJYZElNVE5pVm5oT2RIZzBhRzlSTDNrNVJXZDVDbTExU3pOT1NIRXJiRUpxTm5wNlZYUXhMM05IWWtkdE4zQXlXVU41T1RCc2FWcENRWEpFZUZNMWN6VnBXRzlrWjBwcmRsbFdiRFZXUW1sSGRuaHpOVXdLUzJnNWNWRk5haXRpYUZOYVVXVjBVR1JsYkVkdE5VZHJWV1pDT0ZOSlVGUk9WMGhsTVc0emMxVm1PWEF6V2pZcmNsbE1lbTFSZG1ka01uVllVRmxtVVFvdk0weEdVelJsY0dWbGFtTldjREZxVjBVMGRsWkNjRmxGWkdSdWRUaGtjMWQwVnpkaGIybENTRkZHTVc5ME5GSXdTV1JrWjFONlN6RkRaejBLTFMwdExTMUZUa1FnVWxOQklGQlNTVlpCVkVVZ1MwVlpMUzB0TFMwSwogICAgdG9rZW46IDI0YWY1NzhmZjQ4ZWM2ZGUyM2NlNmFlYzUwZDliN2MzYzNlY2ZlZTI5NWU5NTViOGNlMzM5YjhlYWZkOGJhMjhiYTNiOWFkYjEzNzYyMGZlYzYxNTBlNTRjZWQ4ZjBiOTk4MDk4ZjVkYzY4ZjdjZGJiMmVjNTZmMDJiNzkyZDIxCg==\"\n }\n ]\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg31034/providers/Microsoft.ContainerService/managedClusters/aks0179674f/listClusterUserCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg09076/providers/Microsoft.ContainerService/managedClusters/aks259535ca/listClusterUserCredential?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "50fc176c-da18-48af-b1b3-503cb1ea3dfe", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "405d59ec-d1d5-4b94-a548-663377092a25", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "13044", + "content-length" : "13024", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d2521cd-dc8f-4735-90e6-fd721ca832e7", - "Date" : "Fri, 08 Apr 2022 08:34:58 GMT", + "x-ms-correlation-request-id" : "934fd7c7-0d43-4123-b1e0-5d1d4ba6a626", + "Date" : "Mon, 25 Jul 2022 04:00:57 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083459Z:8d2521cd-dc8f-4735-90e6-fd721ca832e7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040058Z:934fd7c7-0d43-4123-b1e0-5d1d4ba6a626", "Expires" : "-1", - "x-ms-request-id" : "0a22f90b-18da-499b-a548-cbeda2ba969a", - "Body" : "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVUxa2ExaFBWM1pFWkZGUlpUUlhRbXB1VVVrMk9VMTNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BKZDA1RVFUUk5SR2Q1VFVSRk1WZG9aMUJOYWtFeFRXcEJNRTFFWjNkUFJFMTNUVlJXWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuUTJNM1o1T1Vnd09XSjNhRUZuVGtKTWRYSTRZa0ZSYm1sc1prVkNhMWREUTFaUlJFcHRRaXRTWVhsMFozQnlTUzlZU1d0Nk9GWmlSbWhIYVdGNlpIVUtjRkZ6YjBsaE5qVXhUVU4wTDBZd05WbERZV05FUmxSS09TOWxkR1VyYlVoYWFtSlBOR1pMVVRKUFowdzBhR3ROZHpGbmJITk1hRlpxUkdadWMwa3ZhQXBhT1dWTmNFOTJlRGxhZEhKRVR6UllVMGxWUmt4UkwybG5OMjVyZEVOMVRVbFJSbGx1VVRkelpDOXZOMGhMTlZJdldrNUhjMEZYTVdKak9VbG9Ua1Y1Q21ac01WRmFUakl2WVVKNVpXaHJNblpTTUVaQlZITXhjMnN3Ym5FeU1GVXlNR28zVVVod1dWSlFkVUkwVkhGUU9YcGljMjlXVWpoTlkyUlNWRTVTZGtJS1QxaHpjbEYwZURVMFJrNVhPRUZTTUV4NFNVMUpRMGt2WTBvM2N6SjJiMjk2V1M4eU1tWnVObEE1UW1OcmEwcEZNamxPWjB4U1VXVTBSMVl6UjJ0T2FBcFdhRWxQU1VSMFJITldaVkZGYWpob2EwbEJhbFZZWkRoRFRHRXZiRlV4VTFOTlVFbFBjRmwyT0VkVWR6aGFWMDlJVlRkWGVFRnZhRFJIYTNWNGJXSTFDa1pOTjJkMWFVVlZOa3BOYzFGNlVXRkxRMmczT0M5SU4xRXlTMmcwUnk5RFIxRkJZMjlMTW10WU4xTk1XbkF4TTJVMGFtVmpSMGMzUVV0Q1kzWlZNME1LVDJsNmJsQlNSMHR0VTA1WlpWRllVVFZDV25oMFJsbEdSREJzTTNOcmRHWlBhRVJ1VUZKQ1RuRklPR2RWZUZCakwyWmhOR2xPVVdoTWRGTnlMMVJ2VGdwclR6QlhURUpIS3lzeVJHeGFUalJpV1c1VVdIWlZUbFZYT0d0VVNGRXZVelZJTDBVeU5reEZhV1ZqTmsxM05YQk1TRUZ5ZWtSclVYSjNPWEZwTVhNeENsbzRTMmhhWjFwRlFYaHRUelpPYTBaUE5tc3dUa1kwV1RaWVpqVldVRzEyZVVSSGVtcHpOMnhLYTB0MlJEWlhPSG9yYlRNelRrSTFkWGw2TDJKTWNUY0tNQ3RaVjFVNE0yRllhemRaVXpZcmNFUmxkWFpUZVhreGNYQm1aR2w2VHpKMlJFbHRORzV2U0cxWWMwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1N6RmhXWEEzZG1SMWRWVlpVVmhFQ2l0NlZFZ3laRVZxTmpBNU4wMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFqaGFTRGxyUkRoVVdHOHlTMGc1VDBsaE5WbE1NRGxUYURnS1RrWnpURk5ITTFGT2VIbGhWelU0Yml0cVZHZzBZVk5sZVVJMFdERkZTVGd3WjFReFJIZGpTSEpOWlRoNGRXeEJXV0ZVUTJsVWVqQlRRbUUyWVdoYVpBcEVOMnd5WVVGbU5rUmtXR0pwWjNWNmVXNTRLMmRFTVc5VU4wcG1kVVZyY3pWNGRGSnBPV1ZwYlVVeFZXNXFUalpsT1ZGcE1sVXZlV2d3VlZNM1UybG1DbGdyTDJaR1FrTkVPRWwxVG5WMlpITkZjMDlaV1hobmJuQXphMVZMVTA5cFREZHBhRFpEV0ROdWFsSllPV05MY2xaR1ZrRXJibGxLYmxoaVVVVm1NbVlLTW1oaFIwMXlibFpDV0hNdk16QkRjUzl2VTJsaFRqUkhlWGwzY1hOV1dERnpPVkpqVWxjMkwzYzBObVl2WjBNd2FrdFRZVEF6U2tOTllYcHhTR0pTZGdwaVZWUmFRMlV5T0RsNVNXUlFWV1pUZEVSa1prcHROR1JRVTBKdU1FSlVZbE15ZG1SWVNrTkZORGRXWW1kdWQybHFWbWRwUmpWcVJVbFZlR1E0ZVdwMUNreHZlbUZoZFRkQllYSkpSalV3YUdsb1VqUXZNbXh5Y0c0MmNtMXhTRU13Wm5scllsRllWVWxTYUU5VVNuZE5Uak0yUlhSMlUydFJZVmhMWWpKVloyVUthRFJMVldkUFNGWlBia04zWVRFNFNYbFJVMUZKWXpCd2JFUnBPRE54UnpkRVVtOU5kbHBuWWxGdmRFNW9VelIyVDJZcmREUTVlRGhOTURKUmVtZE5UUXA0V0ZKcGNFbGhXU3RLVm0wMFRrZHhkVkZGVEhnNVIzVTBUWFJ4WkVSeE5XeEtPSHAzUTBOaWFFaDJibnBSTTFoS09HcERVRGh5VnpCdVZEQmxXbFUzQ2t4dFJVcE9ka1V4VFhOR1UwcFlNVEJSVEZCcldsbDBSbEFyVmpKMGJIbGpVa2RqTm1OclUwdDZXbU53U0ZKdVQybFdORTRyT0VKaFZUQjZUVTA0TUZBS01rdGtibGR3ZW5ObGFXOHlTVVJvWjNCaU9VWlFZa3hZU1daS0swSXlWMUIxWVRFdk1UQTBPVEZYYmxOd2EzaFVjMGswWldOM1NFTmxOR2w0ZFhOak9BbzFUM2xvSzBocGNXbE5jVzVHVEdOTlIyYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vbXAxZG5zMTUxOTY4LTllNzkzYWY5LmhjcC5jZW50cmFsdXMuYXptazhzLmlvOjQ0MwogIG5hbWU6IGFrczAxNzk2NzRmCmNvbnRleHRzOgotIGNvbnRleHQ6CiAgICBjbHVzdGVyOiBha3MwMTc5Njc0ZgogICAgdXNlcjogY2x1c3RlclVzZXJfamF2YWFjc3JnMzEwMzRfYWtzMDE3OTY3NGYKICBuYW1lOiBha3MwMTc5Njc0ZgpjdXJyZW50LWNvbnRleHQ6IGFrczAxNzk2NzRmCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfamF2YWFjc3JnMzEwMzRfYWtzMDE3OTY3NGYKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJZVVJDZERaSllVMUNWMDh6YUU1SVdrcEdiazh2ZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRXcEJNRTFFWjNkUFJFbDNUVlJXWVVaM01IbE9SRUV3VFVSbmQwOUVUWGROVkZaaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJZVm10clpWWkVVRlV3YzJ4bWVqQkpiVFphU0VZS1dWRXJOM3BDZUZBMVRWTkhiVEpCVGpWSFVqZzVRMFJyUkhWM2IwMTVibGRQUkM5M1FWZE1hMU5TUVZBemR6aFhWV3RPTkZwYU5YWnVWalZZTlRsbWJ3bzBhVVZtVDJsMWFrOXBjVVpNTVVwUVRtNU9hV2MyVjFCNE1tUkpZVkJ6UWpkWVZVOW1PRVExVWpCVGIwRlNZbFIyV2t4WlJHUTVlWEp5TWk5elZWRndDbmwyUkZWbGNuZEhiMHhRT0RaWlIxZ3lNbWR6TlV4SVRYVXdXbXB5YWtkSFZFcEtZVkpPZFROMU1tY3daRFJXV0ROWFZUbEdWRmx1T0VWMlIwSlFjallLU1RFeVIzVTFTSFpqU1M5RldqSm9XbnB1YUhOeU5sRlpVREZJYTNZclVVaGpSR00xWnl0d1dXVmlPR1ZFU0dveU9FWTBjRTF2VkZkMlZsRm9kamg0WndwNVUyVXJRemwwY3pWNGFUSkNPWEZHYjNwQmFEbG9VRGRRSzJzeVJFRkRWWGhWVjFZMWJGUnVhMlY1Y1RsSFdXbHZaREZ1UzI0dlEwVlRhaTlVVW01T0NrYzVkM0ExWlhFdmNHRm1Ra3hZVm1aM1Mwb3paemhZTTJGaFNrRnFiV2hoWnpWblpWbENkV0YwVUM5SmFrOHpVRmxKTTFaYU9HVm1RbTlHU1dkdGVHUUtPV2wzTTFGcVUweFhSemhUY2tNNVpXMVdUVWxwTWk5eWFuQmFZM2xGVjJ4dU1VaFJUSEEyVTNWMlVsTTJiRXhMV25RNU1rbEVWbk5FY2xod1N6TkllUXBTSzJwcGJFTXJhMHcxWW5KbEswcElVbUU0YVV3eFNsSlVSMDVPV1dSRlpHODFUVTluTjNNd1dVUjNVSEZ3TUVndlNVMVVPRlI1YlZSUE1rZFFZM00zQ25RM1lVVkJVM1YzV2xoNk5YVjVTa3BMZDNWbWNEQXJZM2hRVDI0M09UWlFMMFpUTkRKc2RtVXdka0ZPVTBkSEszcGlOWFJaTHl0V1RXcG9NV1JTV1ZNS1VsZG9UU3RYUVVobU9GRldaMlF4Y1hnd1duaGxUM2xqVXpCdGVHSk5PRTg0ZVVOelJUSjZjSEp2YWxGS1JIb3pSRGh4YmswMFZHTjBPV0l5Y0VKTFVncFpPV0pJV0dkNFQyOHhjekUwWTBOeE1FdHhZMDkzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE4wVjIxTFpUY3pZbklLYkVkRlJuY3ZjekI0T1c1U1NTdDBVR1Y2UVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZ6WVd3M2JEQmpUVXRsTlUxSU9XcHRPVmhTYUFvNGEySjBMeTh2YzNFek9GUXhRblpPYUhacmJXZFpRMng0ZFdoU1lXcElTWGxvYzJOTU5YSk9VVTg1SzFSM1oyeDZVQ3RRTTNremRqZzNkRVZ6T1N0Q0NtWXdlRzU1ZEVOM1F6Vk9OekJtVFdkM05ISm5iR2g2ZEhkT05HMW1ZVmRXUkVOV1VqWTFaamxESzNSMFRsQkJUMWhQUjFvdk56ZExPVko1ZUhac2JFVUtWWGRpTW5CbVltUlZaamhoSzJKM1VGSk9XVEl4VFZWaFNtSjVSMDlUYnk5c2RtRmhZVWxtU1VnMFUzVlJSbTFpZFhGdFNFeG9PVFpYT1U5cVF6QTJOd3AwUzFFeVJVVkxXV0Z3UTFsVlNFMUVZVFJ1WXpWeVJFc3dhREZTWjBWcWVtSlJSbkJGY3l0d2RsSlFUMjlRV2pkak5rbDROMHhNZW1NM2RFUnZVM2RXQ25Oak1YQnJUSFZFZW1OMmNuVTJaa2w2TTJkNU5FUXpSMUUzT0dOclFXWXhVVW8yVTFCWGVUaE5NRlkyYURoYVpFdEdZbFUzYlM4d1VXcEJablpzYkZFS1dWRlhUVTlsTTBaVVUya3ZUbkZOYUdaNlYwVnFZeXQxWTFkSFNsSkdTbVZVYUVod2RWSXZiMGwzVW5sa1EzcG5kMVlyWWxabVRtUkllREJ5ZEhadU1BcGtPVVJ5VWxVd01FTkxhVWRzYjA0cmVXTTVjRXhSUms1eWRVUjJVM0ZGUWsxclpIVXJlVUpyVVdKWWFHcG9WM2Q2VkVKMlVYSnJTSFIyVUhWWk4wWm5DbFJLUWtSVFRrRlRPSFpFTlZwa1duaEpSVlp0VjJkd01FbFFaamt4YjJOMVRIRjJjeXRRVTJaeWFFbHZNV3RZYW5VelZGVTNiSGQ1VmtGaVdTOVhaMG9LUldjelVYUTROa2hwT0dWcWExVlNNazB4WWt0bk5EZG5kM2RqV25OTFVESk5iWHBPUzNnMlIyNXNMMG95UzI1MWJVSnBkMXBYUjJwb1dXZHJRbE01V2dvemFtbzRRbTVWVjBSckwyWmhRVGRsYlVWbU4wOXFiVFJWU21odmFWVkNRVlV2UTJ4NVozQk1PVlpMWkM5TmMzTnZaV1p1VGxwRVdVMVBkRE50YkROMkNpOURWV1pXTVZNNU4yVTJNR1J1YUVkYU0yWnljVE4zUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMmRKUWtGQlMwTkJaMFZCTVRGYVNraHNVWG94VGt4S1dEZzVRMHAxYlZKNFYwVlFkVGgzWTFRclZFVm9jSFJuUkdWU2EyWlFVV2MxUVRkekNrdEVUWEF4YW1jdk9FRkdhVFZGYTFGRU9UaFFSbXhLUkdWSFYyVmlOVEZsVml0bVdEWlBTV2hJZW05eWIzcHZjV2hUT1ZOVWVscDZXVzlQYkdvNFpHNEtVMGRxTjBGbE1URkViaTlCSzFWa1JYRkJSVmN3TnpKVE1rRXpabU54TmpsMk4wWkZTMk55ZHpGSWNUaENjVU42TDA5dFFtdzVkRzlNVDFONGVreDBSd3BaTmpSNGFHdDVVMWRyVkdKME4zUnZUa2hsUmxZNU1XeFFVbFV5U2k5Q1RIaG5WRFlyYVU1a2FISjFVamN6UTFCNFIyUnZWMk0xTkdKTEsydEhSRGxTQ2pWTUwydENNMEV6VDFsUWNWZEliUzlJWjNnME9YWkNaVXRVUzBVeGNqRlZTV0l2VFZsTmEyNTJaM1ppWWs5aldYUm5abUZvWVUxM1NXWlpWQ3Q2TDNBS1RtZDNRV3hOVmtac1pWcFZOVFZJYzNGMlVtMUpjVWhrV25sd0wzZG9SVzh2TURCYWVsSjJZMHRsV0hGMk5sZHVkMU14TVZnNFEybGtORkJHT1RKdGFRcFJTVFZ2VjI5UFdVaHRRV0p0Y2xRdmVVbDZkSG95UTA0eFYyWklibmRoUWxOSlNuTllabGx6VGpCSk1Ha3hhSFpGY1hkMldIQnNWRU5KZEhZMk5EWlhDbGhOYUVad1dqbFNNRU0yWld0eWNqQlZkWEJUZVcxaVptUnBRVEZpUVRZeE5sTjBlRGhyWm04MGNGRjJjRU1yVnpZemRtbFNNRmQyU1drNVUxVlZlR29LVkZkSVVraGhUMVJFYjA4M1RrZEJPRVEyY1dSQ0wzbEVSUzlGT0hCcmVuUm9hak5NVHpkbE1taEJSWEp6UjFZNEsySnphVk5UYzB4dU5tUlFiazFVZWdwd0t5OWxhaTk0VlhWT2NHSXpkRXgzUkZWb2FIWnpNaXRpVjFBdmJGUkpOR1JZVlZkRmExWnZWRkJzWjBJekwwVkdXVWhrWVhOa1IyTllhbk51UlhSS0NuTlhlbEJFZGsxbmNrSk9jelpoTmtrd1ExRTRPWGN2UzNCNlQwVXpUR1pYT1hGUlUydFhVRmQ0TVRSTlZIRk9ZazVsU0VGeGRFTnhia1J6UTBGM1JVRUtRVkZMUTBGblJVRjRXRzVQZDJrMlRDOWtPVEJhZUZoR016ZFBVbE5CV2xWRVNFRktaM05qVkRWNlJ6QkxLMnhKYzJ0TFluRjViRFJNZDBkRmJUTjVid3BRWlhremFWRjZjakoyU1M5bWMxQm5UbWhvVXpkS04xQjBlVkJhYjBOMFNVaHpRVlUxY2t4bU4xcFlVa1ZQTW5CalV6SjZaR2xDZVhWcVpqQkJVR1ZJQ25kek1ISTFhVGhUWVd4UVpGbEVOMWt6UzFGVlVqZExlVTV2Y0ZaTVZrbzNLM2NyTTFGUmFUbEtka2h3VFRVNE1XTlFOR3huT1VFeWNFSkdTMUExVVZnS1NIZDBTWGczZW05MWFucHNibmRrWXpSWFEwUmpjWEoxWjIxR2N6TkdiakJYYVhaSWEwZExWWEJhVVVSWlYwSXdiRmtyV213NVluaDJhWEYyTjNCYVpBcFFjbE5aUVRVeFlYaEROMEl2UVhaQkwyeDZhVGMxT1dVclZHaFJUVWMwYjNOVFRtdHFaMFk0WVhWeVZ6TnVhMmxIWmt3eWNtaEpWbEk0YUVndlEySlNDbEZ5SzJoSE1rSTJVSFZwTUdoWmQxWlpOV1paTkRsemFUQnpXV1JKYjNGR2MxbzVUSEpXT0hCQlNTdENMMFZsT1VKVVJtVmhRMGxTVkdOSFNFVlRNemtLVFhkUlFWQnNVMk00U21kU1pXdE5VVlYxYUhSeVZtVnRNM1phTkdWc01tNURVV3AzTVc5T1NVOU9hUzlpWTNsTllreEZTM016UzNsU2FUZFNaRmRaWWdwVFpHSmtkMVZDYVZjMFlqRlFTa3N6Y0dSdWJDOVZTbmx6WXpjMU5WWnNTVUZKVDFVMVdYcHpaRmQ0VjBWM2JEWXZSVEF4VEdwdGQzUnlTRlo1WkVOVENubHNWM0V5Wm0xbWRsaDJiakp1UWxKbkwxUmlkamhzWkd4SGNDdE5VbnBCY0c5UlFYQnJVbWwyTVhSaGVpOWlZMGRCTkhaalRqZDRXbVp6V1ZaMk9XWUtkRkZ1YXpoUGVUVnRkRW8xV1VaRk1VWklaRFp4ZFVwTVJtUk5hMXBxWTJGTmRrMVZRVTE2VTJjMlJuVmtUVzEwV2s5b2RHUkphRlpXTjJabWEyVkhOZ3BKT1hGelJYWlJOV3RIVnpnemIwVnhOMlphVG5jcmJFYzRVMjl4U0dKQllYQnFZbFp4WkVnNGJtYzBWRzFSY3pkemFXdERaMmRGUWtGUGF6aG1SVlp5Q21sQlpYQXdTRTlUYkVSMmR5dDNWV055ZDFRM01GaHNhV3hOVjBveUx6aExURXB0VjNWM1VrZHhTbEo2WlV4WVZFZENVRzgwWlVRM2FsSjVNbE16U1RJS2REVllPU3QyTkdsaWRVcDZZMFo2Y21oUWFrRlRLemhqZERZdlFrcFpUM0ZPVWpJNFNYWlNObUZNUXpOM1lqRjVlV1ZKYUM5V1lXZFBWVlZHZW1jMU9BcG1aM2t2V2pKMGVYTmlkbVpJVlM4MlV6TnVjbEpGTkRKS1FYVnpiMWR3V0c1SEwzSmFOQzgxTmtaemVXUjBiM1pOWjFOWFZYWlpURUZOYTAxeVl6bDBDbTFMVkdOcU4xZEplRzV3VEVWdlZERkdWRk5OVFVFd0sxQmhNekZ6WTFOTE5HeEViMDVMYkdSdWJVZG5PSEZ6WmsxV05qUjFVSFkxWTJveVpUaEliVEVLVW1OQ1dUWkdiMEY0Tlcxd2R5dEtiM2wyY0RabmNYQXdRMkZSTTNSa1RXNVpRM3BzT0hJek9FbE1iamwwTkRVdldHMW1lVXB5VG1aUFRIWkdVa1pKYkFwdlpYVnVOSFIxYTFkWGJEZzVTV05EWjJkRlFrRlBlR0ZzU0RjelFrWnlWWFJLUlhJeUsyOVJWa0oyWTBaR1VFeEllV2hpWW5GSFYyWnlhamgyUnpWd0NpOVVVSFZhYUZGTlRXWlBMM2d3ZURSUk55dElTUzl2Y2k5eFIwc3dTV3BoZDAxWlJXWmxTVE5yT1RGdE5VdExTREp1ZG1wRU1YVlFla1ZrWjNSaVJVRUthekpPZGxGRVVFbHZORms1UVdoYWRIVnlPRTB5WjFkSk9HbEpSRlkwYm1Kc1VYY3hWbGg0YkVsMWQyWTBXR1pJZFRkaFdUUndURkUwWTNsR1pVbGlNUXBLTVdob2NGTllTQ3QzWjJGWVN6Qk1NMUpDUW1Kc1IzWlhUM1I2Ym14NGExZzFXSFZzV1ZodU1URjZPVGxDU3pNd2RrOUNWMkUwTkU5Mk1HNWhXVEYxQ2xkc1luSlNablk1YjA1V2VIYzVaMHRMTVhJeldteDZOM1J0TW1wQk0yOU9TMk5JUWpCYVZ6SnVZWHBpTUhOSFlrSnNLeXRKZEVWWWVVeHVlVE4wVHpnS1dFRnhaazFWTUVJd1FqRnNXRFkyVDNSd1RWSk1kMUJIU1VRdmNVUXZlVlZPVjBWTVQwVm1MeXMyTUVOblowVkJVQzlRV0RFeWEyVjVXWE5yYm5sM1NBb3ZWU3RqV2s1Q2VYQlNhM1pZVDNST1FUaFdSRlF6UmtsMlYzZzFTbnByUVhKSlVHeERNbGwzWVdaVmJsTnVkSFpQTDI4MFVXSTRSRWs1ZFdGWlQybHpDa2wxWlc5WVlrbDFjV00yUVdjM1dVdElLMVZGUm14QmNtUkdXRXc1SzBaQmNEUlJZbGRaYTB0R2FteG1jamh6VEV0UlVHOWthM2h2WlRkS1dEbDZlR2dLZHpkUWRqUTJaM0l6WldoSGRVaE9ZaXQwSzBFcmVHMHJlVmRzZHpScFpWTk5URGx5YlROUWNHTlNlVTgzZFhkb1kxQTVURUZXT1RWNFYzRTRPVkJtYlFwQ1JUVnNZVFZQVVVaMlMwSnJiMEZKYUZwVGFrRTVUbHBNZG05amVHNTJia2MzYmpSRlJHWnFXRFpsYWtGWFVuRnJURGQxUkZaR1NrdFBOak01TUZoVUNtUlRlalZwZWtaVmVITXlhekp1ZDNFd1NqVTVLM05KU0U5M2FIRlJVRWhNVUROU01GTnNlR1ZXU0RSMldXMTFkbk5NZW5ObFQwaGpkbXBOZDI1NU1ETUtXSGhrYlV4UlMwTkJVVVZCY25aV1MxVlZXVWhoYW14clVrMWFSSEl4ZEZFNU5rdE9VbGt6Y0hwYVZVcExkMHBrV1doQ2MyRkJkRGRVU0V4blF6RXdVQXB4VWtSQmRHbEhZMlpQTTB4MWQyWlJTVTFNUTBwV2VGSk5VVkJ2VERSdVYyOXBSR3hvUlRaMVl5dERZalJNY0hOcVJGaFNjVmR1TUhOTWJVMTJRV2c0Q25wQlZHcFJOMnROWTFKd1VsWmhSMUJKTlVJemRqSjJWbEpGYkVOek5tVnRSakJhZFZBMU1sSnVaRkpGWmtWMU1YRm9SSFpNUnk5VVNsVkNOalJMU0U0S1pVc3dWRUl5U0hSNldHVjRPSHBQY1hwbVozcE9UVGt3Vm0xa1lrNWtiSFFyWWpsbVlXMHJOamN4YUVWRE5IaERWbXd4VkdKRlpGSkNiVUkwTWs1V2FBcDBhamRXY1RGdGVubEZNakEzTkZoQ1FVSXlXVzFGVDJkTmJtRklOelY0VkRCaU5sUnVORGxxVVRSS1lrRlpOM0Z1YjA1cVdWUmtaM0IwWnpaNFdHUm1Da2RFVDFCb1dXSk9UR05oWkd3NWVWVjVUbk0xTlVVelRubGlNV3hrZURkT2NsRkxRMEZSUlVGeE1WUkROa2RJUzJSTWEweEhOek5VYUU5aGFFRkVWRzRLYVUxWldXTXZRM3BJY0VrM1FsTjRaRWRHVEdOdVpIWXpkbkJ3Y3l0eVZsRTNZek5yUTNONFJFMXJRM0JWTUdnNE5uSXZjRFJITWxReFFsUktVSFJKZHdwTWQzUmFWM3BUZVZaUlRtWkNhMmd2UVVFMlEzVkpkQzlyY1RCTWNWQlBWRWRzVGtneU5TdG1SemwwU2pSU1QxUlZkMVZHU0ZsUFdtNUhRWEp5UjFGM0NuSnJZbHBXVUhVdmNFcDBWbFptTms5TWNsZFllRVpPY0VadldpOTVlRWRqZDIxTVVYaFVOV2xJTkRjelJVazFVVTQzUjNaRk0xQlRhemRIVGl0bVFWZ0taVWc0T0RGdU5qaEhhV3RpTWxGclpFMWlMMFpJVWxWeVpITnZjVGxUYzFjeGJtRm5RVTVvTW5Cb016UmFaVWRYWVVGcWJrRnlWazl6UXl0RGExVkdTQW8xTmtSNU9VZFlTRkEyYzI1eEwwRkZZV0ZyV1VsQ1JFMVNiR2RDYmtWcWVtcHJNRE5vWVRkTlNsUTVabk5RVEVKcWRGUm9XbTkyTld0UUsyUnVkejA5Q2kwdExTMHRSVTVFSUZKVFFTQlFVa2xXUVZSRklFdEZXUzB0TFMwdENnPT0KICAgIHRva2VuOiAyNzNhNWYxNWY3MDQwMTMwMmYwNGM1Zjc0MWI0MjgwY2UyMjRjY2Q1YzRjMTNiMDEwNDRhZWQzZTg2Y2Q4YjIzMWE2MjlkNmYxYzU3NTNjZDI5MTEzZTQ0ZjkzMzc5MmE2MGUzNmUxNjM4ZGE0ZGE0YTk1OTZmMzQyMjA4YzliMQo=\"\n }\n ]\n }", + "x-ms-request-id" : "9a73af81-d4ff-4887-b9ad-b609f90f88e1", + "Body" : "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUkUxelRERXJka1JPZUcxSlNHOHhkR1JzU25GSlJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUV3BCTTAxcVZYZE5lbEV4VGtST1lVZEJPSGxOUkZWNVRVUmplVTVVUVhwT1ZGVXdUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVONkNsQTBZMFJRYTFSMlMwOXZaWFYwTW0xWGNrdFhkSFppTVVoWmJqQjBOalpzZGt0c0wyTmxTSEpvVFc1WWFtcFFhMnB4T1c5R1JFNHdLM0psY0dkbFlrY0tORWx0UWxaMmRYcFhWbThyWVZNMlZ6Y3JiRkZXVEdSdFlsVkNTRmt5VVRscVRFbHVZVGhZUzBaSE9DOW9TakpHU1ZZNFdqTTBXRXRNWTFCTE5rODBiZ3BLYjFWalZIUmhSVTlRTUhCRlJIbFJZM281T0VSeFFuRjJUVlI1VEVadFR6TlJNa0V4YlVKalIxcEhNRW96VnpSYVltWTBhRTk1YjJsNlMxSnNRMkkxQ2xRd1pVUk1OVzAwZVZOUk1YQlBNbE5MSzFwV05IcFlNREY1Tm1ob2QycE5UVW8xUmpNelZXdENPR3BaV0hkb1dHVjZUV05UWkcxTk56RlBVMmN2Ym5ZS1NHNTRaRmxpTW5NNE1IaHpNV1kzVGtoRlUwUnFURlZGTm1wc01VOUNNa2gyTVdKRWVXWnpaekV5ZVZneldtcDJZM2hMVTBORldqa3pPRWRoYXl0clNRcG5XbVZEWWpaM0syOUNjVXhsTkc4NFdIaDNZakZ1Y0dGS2FESXpVVFI1TDBKb09Dc3hiMVZYTDI1M1FsSk9OVWhLY21OM1QxbDVObGxIZDBWdlFXUkdDbGMxVDJrMk9VVnBSSG8wWmxWaWVXMVhWVkF4TUhBNFYwUnZWRkJJWjA4NFRuUjNiV0ptUlV0VmVUUmxXRTlUYWxSbVRYZG1aelp2SzI5SFkwbGhhVVVLUm5KVlNUQXlVMWRDWTI1M2RuRldNMWdyTVhZNWJtOVhOREZrU1c1eWJXaENUVXRSVkRWWlprWnNWSGxQTDFWdFptdG1hM2wzYkV0eGRsVnBXRlpLTkFwcVN6Z3dXRGwzTkZKb2FFTktVMGN3Ylc1WE5qTkVla0pHTWxWb1lXVk1URWRWTlZGc1REUm5iakF5YVhaWE9FODVaVVZ5WldaU1ZXOU9Ra05IZUdkU0NsbE9hVkJOY0dvM1JXZDZSVlZ6WjNVMVZrNXNZMHd6YXpselFuZHJLM2RZUW5GeE4xUkpXSE5sWmtrelEwb3JRMWxUVVN0TmVqVllkMUowWm5vMlZFc0tibGN4YVVVNFYzcFdOelpNWTJ0VGIwWjJWbXAzTUdRMGMwSjJabWxNVW5KWVZrTjZTalV4VW5wM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVNVp6QnlkMkpMYVVwbVRGSTBZazhyQ2xOU1NrazJXVVJ1VWtOQmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR1RpOXBXbXg2TnpOQ09GZG9WVVpMUjJKS1MydHJia2dyWlZZS1J6TnFaV3BZVEZWaVZ6aE9PVlphYWtwdWNURkliV2hxZFVGbU5IcEdhREpRUkVkUWJHNVRXVXRZZUZKd1ZETnhNRlF2SzJ4SVVVMUNVRGhDUW5jeFN3cDFTalUxVUZGcllTOVdTM0ZoUkhOelVYVlhNVU0yT0RSS1ltcDRRamxRVFVacVRFMTVTM2N6UVVaRVZEaG5kVTg1YTFSRlFYVmpUbFJqZEVZeVlrTkRDbTFoVkhnemVrWXpkMVJrTldSUFlqRjFVbGRtV0dZdmNHaFBRbkZsTWtGblJIbE9WREF5YWt4UlZUWmhaa05ZUm1wcU9VRjBOVVUzUjJSWldYcFZhMmdLVVhSbWFYaEhWalJYV1hwc0x6bEVSRkJoYkZoaU9VOXhkRmh5Y1ZsSWFXOXBLMDFyVVVWNmF6RjJPVTFyY0c1UksyeFJNRkp4Yms5RmEwOHpSakp5VXdwbVprOUpWbU5FV1RCck9YWm9WbU51Y25ScmF6Tm5XSGcwT0hrNGRsbFhUM2h6WlVGMVdqYzBaMmNyWTA5SmJuQkdTMmt3YlhRMlQydFlNeXRGVFRaS0Nra3JaRTFYTW1ORloyMWtaRTkxTlVzeFZHaFJVbGhVWlM5MlYxcEdiMEptVUVabU1rbHZUVXBzZFRKR1FYaEpWalJzTUhKTmJYVm1kMUJOTm5Od1Rrd0tiV1JGUlZKMFJ6bHZORkYxUVRCa05ESm9PR0V5Vm5oR09YZG9jVkJTZUdSVmRqSnRiMmhMVEM5elVtTXdNSEZqWWt4WU5taEhRMm9yY1VseWRYYzRhd3BpY1dab1RubFJUMGhNU3k5YU1qQTJWemh2VGpCbmJWY3plbmN4WkU1NWJVbEhZbGRQU1ZWb1ZrSk5aRVoxVkhCc1QzcFVTMGhFY1ZsWGJ6aERjMk4wQ25GT1VVZDNNVVpMWldGVE1FVXhPVlJaVjNWc2VHc3JTSFp5Tm5GR1lsUnJWSEptVlhSM1ExTkJXVVZIWTNWTWJIUnRNbGRNTDBOa1NrSTFaelZKUjNNS2NGUmllakp3Um1ocGVEaERUMncyZGl0dksxcGFWM2hEZFhWWmFFbDRUMUppUml0T05GVlRXV2wxWkZBNFJrSnFNVFZvT0RkRlRtZGphVXB4WjB0dWJBbzRUalpLWjFoMmRXSjJPVnBOZVhGa0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL21wMWRuczIzOTE2Mi00MWVlMzNiMC5oY3AuY2VudHJhbHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBha3MyNTk1MzVjYQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogYWtzMjU5NTM1Y2EKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2phdmFhY3NyZzA5MDc2X2FrczI1OTUzNWNhCiAgbmFtZTogYWtzMjU5NTM1Y2EKY3VycmVudC1jb250ZXh0OiBha3MyNTk1MzVjYQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2phdmFhY3NyZzA5MDc2X2FrczI1OTUzNWNhCiAgdXNlcjoKICAgIGNsaWVudC1jZXJ0aWZpY2F0ZS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VaSVZFTkRRWGRYWjBGM1NVSkJaMGxSU1V4TmMyMTBOVUk1YjBaQ1REUnNlbWxXVGtwblJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjVUV3BCTTAxcVZYZE5lbEV4VGtST1lVWjNNSGxPUkVFelRXcFZkMDE2VlRGT1JFNWhUVVJCZUFwR2VrRldRbWRPVmtKQmIxUkViazQxWXpOU2JHSlVjSFJaV0U0d1dsaEtlazFTVlhkRmQxbEVWbEZSUkVWM2VIUlpXRTR3V2xoS2FtSkhiR3hpYmxGM0NtZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSWmVFbHlVV3g0VTFOMFltczVUeTlOVTBwQ1NXMEtTbXBKYW1KdVNUaGtRazFGTm5KM2RFRk5ZM0owVWxwUGJFUjROa0ZITUdrMk0zUjFRVmw1UTA1VFpWaE1UMWxPUWtkdmEya3pXRzFQUjI5a2F6RmlaQW81VGxoa01EbG1NM293ZUUwclZGcFBVMGhQY21VME4yUkVZVzlZUzNCeFEzaGpNbWhXVHk5TFVtRTVjbXRRYlZsT01XbG5aMVpVTTFGS2NXUndka2hEQ2tOT05USnVhaXRKY1VKbE5ETnBVak5vUnpkRUwzVjZRMmd3TjFkQ09HNVRlVkpRYTNoSGFscEpVMUZCTmpWV1NtRmFhVWhpUlVOb1EzTkRVbVp1U0dnS1UzcDFOMHRFVkZCbWFqSXJjVmMwU0U5SGJrWTVZeTlJV0hoS2QzY3dTM3BKWVVkd2JqQlJaMHRuWW1OSlRsVXZSRlJQVlhGTlpUWnBXUzlKVVZGeVdBcDFlVnAzVFZkMlVpc3lUU3MzT0ZoU2JVeHNkWHBZU0VKcFQzRm1VaTkwYlUxaU9ITmFValptWVhSd2IxZERNVlpSZGtwcWMxbHdZVEpLVFhsaFpIbHRDbTVKTjNoV01pODFWVXBZY2pOSWMydDVjVlJvVDNOMmFuSkpZMW9yYTJSbVJFaG9hRkpHYXpabFJUZEpibmQyT0VnMVptNHhiRmxyUkdSWGRWUXhiek1LUlRCR1oyaHJOa1ptVjFoelJHSm1TV1JPVGxFclVrbENVRmRhY0VoT1NYbzNXRGRaY3paRFJVeDVlRE5PV0ZOWlZHZHVaWEpHZGtSR01rUm9hekl5ZUFvMlUwRmxiV1JpTDJZdk4weEplRVZxUjB3NE5YcE1VVTFKV1Nzd1Z6UXJkRkV5WlZGUlNGSTJWSEpMVTBVdlowdFFUWEV4TUN0SVdVRmxOSE5DZFZCckNpdFRlVEp1YlZoQlZrTndNMGh1T0ZCbk4zYzFWV3hJUWxKU1FsRjNUWFZuZDJwdGFXeDFSa3hDUlRCS1kwbFJiMlJITm5CamNYRnZXaTlhVjB3MWFYQUtVMUZJZDI1VVpsSlVlakYyTWpSTVZIQk1WVkEwYURWMVZsWjNkbTQ1TW5KWU1tbG9ZakJXTldwMkswRndabTltVW1vMWQxUTBhSEZtV2tvdk5rNDFjQXBYTm1SWE9UaE5LMkpXTDB3NVMwUnRiMXBPVWs5M1NVUkJVVUZDYnpGWmQxWkVRVTlDWjA1V1NGRTRRa0ZtT0VWQ1FVMURRbUZCZDBWM1dVUldVakJzQ2tKQmQzZERaMWxKUzNkWlFrSlJWVWhCZDBsM1JFRlpSRlpTTUZSQlVVZ3ZRa0ZKZDBGRVFXWkNaMDVXU0ZOTlJVZEVRVmRuUWxReVJGTjJRbk54U1d3S09IUklhSE0zTlVwRmEycHdaMDlrUlVsRVFVNUNaMnR4YUd0cFJ6bDNNRUpCVVhOR1FVRlBRMEZuUlVGUGQxVkZUMk5SY2l0V2RFTTFibmh5WmpnME13cHRPRE5LVms1a1VteFJabkZIV2twRVptVlFTelV2Y0hONGFGVlRNMWN4U0RGVGNXWTFhUzlyWW1KYVNtaDVkRWgzT0ZCMlZFeHJRMGhMT1c5SkszbFJDa3BuZGxGWFZISnRZbTVhWVdGeWVrMVhjRUZwU0UxQkszcGhRMUJHVFdKSGFuQnJNRmRhV2paNVZHSnNkbFpQY0VSblRuaE9VR1pRTWpSbVEyZEVTMnNLWjFGcFZFUklUR3BuYTIxMFFpOTNSbWRSZDNaVVJUTTFhak5sYnpCWVVGSktiVVpoYWxGUFoyZHZOWEJZT1ZwVFp6WlNWMXBLVkdKVWNXSnRaMVZLVVFwNWVURk9UbkJsT1VSalVGRTVjV1V3VWtrM2VuVXlWakIxY2taMlRXMXNMelZZVGxKU09VNHpRVlFyUkc1NWJEQndXV1ZpYm1wQ1VtZGtNbkpIWVdZMkNuUklhRFJsUTBFMlVIQmhOekp2WnpGVmNWQmlSVVF3UjFOTGMzQkxkRTV4ZVRGRVZWVXJWSGt5ZG1ZM1MxUnRVbk4zTmtoV2RHcEtWRmhzY0ZCdFZVZ0tTbFZUTkdWclEwOVhPSEkxTHpsd1NGcE5LM2hYTjNOaUsyRTJha2hNWWtSTFJ6YzFSRkUyVG5KQ2RHRkNOR1JqZVVweUwwczBRM1JOVmtsVWFEaEJkd3BqZW5kelYySlBhWGQzWlhwM2RYVlFRWEJSY2s5RU4xWk9hWGxNUkhVeUwwNXdkVzQ0VkRSTk5ESkpMelkwZVZaU2FXbG9PWE5uVGl0MFFWRkhjVkJ5Q21SQlRVTkZTRXA1TVhCNmRXTk9LMGR2UVVwT1ZtVk1SVWxXTlU1SGJrOU5VRmg0ZWxsa1dIRXpRMDlUVFdaUFdtSkVlRWsyT0dOcE5rOUpSSFEyUkZZS2NGcG5kWFpUVmxZcmJITlNObHAyYVZCRVdVbHdiVTgzZFRkb2VWaHpibk5sTm5aV2FWSTRUamhHV1ZWQlpYcFZTV1JQZWtWbVltTTVjVXRwUVZST09BcFlNVWt5YzFoUVkxaDJTbTQ1ZW5kaFRHOVZiVlpuZEUxWGRrNXZiVFV4T0hkdFdrZDVjRE5TZGpSSmRHWmtla1JaTDBsU1UzcGlWMDltUjJSSE5HVmFDalJWTmt0a09GVjZVbWh3WlRoNVdqTkpMMlF5UVZkelBRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIGNsaWVudC1rZXktZGF0YTogTFMwdExTMUNSVWRKVGlCU1UwRWdVRkpKVmtGVVJTQkxSVmt0TFMwdExRcE5TVWxLUzBGSlFrRkJTME5CWjBWQk1rMVRTekJLWTFWcmNsYzFVRlIyZWtWcFVWTkthVmw1U1RJMWVWQklVVlJDVDNFNFRGRkVTRXMzVlZkVWNGRTRDbVZuUW5SSmRYUTNZbWRIVFdkcVZXNXNlWHB0UkZGU2NVcEpkREUxYW1oeFNGcE9Wek5tVkZZelpGQllPVGc1VFZSUWF6SlVhMmg2Y1ROMVR6TlJNbkVLUm5seFlXZHpXRTV2VmxSMmVXdFhkbUUxUkRWdFJHUlpiMGxHVlRrd1EyRnVZV0o0ZDJkcVpXUndOQzlwUzJkWWRVNDBhMlEwVW5WM0x6ZHpkMjlrVHdveFoyWktNSE5yVkRWTlVtOHlVMFZyUVU5MVZsTlhiVmxvTW5oQmIxRnlRV3RZTlhnMFZYTTNkWGxuTUhvek5EbDJjV3gxUW5wb2NIaG1XRkI0TVRoVENtTk5Ua056ZVVkb2NWbzVSVWxEYjBjelEwUldVSGN3ZW14TGFraDFiMjFRZVVWRlN6RTNjMjFqUkVaeU1HWjBhbEIxTDBZd1dtazFZbk14ZUhkWmFuRUtiakJtTjFwcVJ5OU1SMVZsYmpKeVlXRkdaM1JXVlV4NVdUZEhTMWQwYVZSTmJXNWpjSEI1VHpoV1pIWXJWa05XTmpsNE4wcE5jV3MwVkhKTU5EWjVTQXBIWm5CSVdIZDRORmxWVWxwUGJtaFBlVW80VEM5Q0sxZzFPVnBYU2tFelZuSnJPV0ZPZUU1Q1dVbGFUMmhZTVd3M1FUSXplVWhVVkZWUWExTkJWREZ0Q21GU2VsTk5LekVyTWt4UFoyaERPSE5rZWxZd2JVVTBTak54ZUdKM2VHUm5ORnBPZEhObGEyZEljRzVYTHpNdkszbDVUVkpKZUdrdlQyTjVNRVJEUjFBS2RFWjFVSEpWVG01clJVSXdaV3MyZVd0b1VEUkRhbnBMZEdSUWFESkJTSFZNUVdKcU5WQnJjM1J3Tld4M1JsRnhaSGcxTDBRMFR6aFBWa3BTZDFWVlVRcFZUVVJNYjAxSk5XOXdZbWhUZDFKT1ExaERSVXRJVW5WeFdFdHhjVWRtTWxacEsxbHhWV3RDT0Vvd016QlZPRGxpT1hWRE1EWlRNVVFyU1dWaWJGWmpDa3cxTDJSeE1UbHZiMWM1Um1WWk55OW5TMWcyU0RCWksyTkZLMGxoYmpKVFppdHFaV0ZXZFc1V2RtWkVVRzB4Wm5rdlUyYzFjVWRVVlZSelEwRjNSVUVLUVZGTFEwRm5Rbmd2WlcxRFFpOUZjSFJoWWxWTVRrdEhiRGRHZW01dFNpOW1NMVpVYkZSaWNsQjNXREpLU2t0WmVWbEpVbXRMU3psQ1luaGxkMHhqU1FwQmIybENZMHhMUWt4WWRFNUlVMVV3VlhGTFRtcDBNQ3M0Um5sbFNFVk1ZbWhMZG5WQ1dGWTJhRkpQY0RGNUx6Z3paREJxU1dsNGQxRnNZeXR5WjJGVkNqaE1WM0JEVkhoWGRFMWhUVFZaTkZZeVpURXdiVTlUTWxGNlUyWmtWWEZJTVc1Q1UzcFNTM05vVTFadlRrcDVURTVYVVUxaFJuUnpPRzExVVVSWE5Fa0tkamhFYW1KcGIyY3dZMHRRSzBwbVpHNHlMMlJSUjNCRlIwNXhTMUEyV1Vwd1puTm1iM0ZQVm5kRlR6aFRSVFZZWWtGNk5Fc3lZbTVLWTJaT2NUaElOQXBGVjJ0cFFWQm1ZV2wxYlZwWWNtWm9WbGREZWtZclVXdDVkeXRKYnpCS2VtWlpibFozZGpGT0t6UnNjbm8wVXpCWlFsZFRWVkUwVVRsVGJXWmtSVzB3Q21KMmFreHVUVllyVjJWQ09VWmtaV2d4V25WTllYQm1PWGwxTTJST05tWmxhMXBaV25wMFNIUjBNemxwV2pCalJEUjNjVEpSU1d3dmJVOHZVbEYwVVVzS2VuSTNlSGhLVTFOcWNWRTNSRXRZUVRORmFrNHZURGN3TW10RlRqQXlaSHBFUkVaSWNsaGpaVkYwYzBZeU0wTlljbVZzVFhSNFlUUkJjRUp2YW01a1RRcGhOM1Y1U1dNd1ZHUXpiRlZsUVhscVFtRnJhMlZKVUc1Nk5WcERjelJ3YVZsNmRVeEZRVWwyWmxWVU5HUlZjV3RUYWtrd2N6ZFFVR3RhZUNzdlVETjFDa2xyVVd0a1pVMDRSMnREYW1kcFlTOXhSbU5hYVRaQ2FXMURLekJ6ZUVVdlNtRXhkSGc0WTJGRVprNXdSMWc1YjNSeWFHSTBjRGx5WnpWemNHNVVOemtLYmpoaWMxUjVSMFpTYVRSQmVqa3hWbkI2VmxaMU9UbGlaMEpCTTNRNFUxWmxXVnBaVm5oNVowdEZSR3MyV0RCRmNGRm5OREEyTW5WdU5HdG1UbFZyUXdwTGVEQjROalZYZDNSbFRHbzNOalp2VTJoc1VtSmFUVlV6U25rd01IWk9aeTlpV1U1R1RWVlJTM05xU1M4M2NtcEJVVXREUVZGRlFUSlhTM2xuYkRWNkNscHBNalF3VWs1eVNqbFFNM052VDJWbEwzaDRSazA0V21vM1RUZDRkRU5ETVROM1IzSk1WVlV5T0VGemJqbG5NRnBNUW5aMFZUQkRRbWxGTjNWcVluVUtaMnd3UVZkRGNtWllWMGxXWkhvMGFVTk1jMHhCVUcxNFprOVlRa2xWTm1ORmJYRndUSGM0VWxScVRFZHhXRmxXZEVVemRqTjRPRmhpT0RGNE5reFlPUXBtU3pGdU5qaHdNRGh4ZVdkSE1XZExkR2RUYmtsbFluQjVWeTlFVlRoeVQyaFlUekpxWkdaQ1NrcGFWMVpKT0ZFd1NWVmtjams1ZFVSU1dVTmlkbEk1Q2xCNFUzUnNVVkI2WVN0SU4yeHJkalJrTTAxcVpXUkJMMEpYV0N0amRVOW5jVXhxTldwbWRUbEZXRmswVUZWMmN6QXZNRE42YUdocmJFRkRWbGhUZVRFS1lVTTVjV05HZEVsU05FOHlMMkY0TnpKdlVXdzRORzVySzFoVVRqbEJSWGRvV2xJck5VRlZjSFV5YnpkdVNFbDJPSEpMYml0aGVFSTNZMkZaZVZKcmJ3cE1jRFl4YWxOQlUzazVTa3hhVVV0RFFWRkZRUzh3V0VGaVVYRk1iRmhaTDNveWFEZDVVVkIyUzFwSlFtMWFjMUJWTW1rcmVpdDVPVzFKT0dodVdFeE1DazFYV0U5aE1IUnFkV0ZGUzBGUU9WSTFPWEZGYUhsVVdtbG1jbkpKYjBKc1RqVTNjRXRhVVVsTVVGcG5kak5YU2t4dkszaERXRUV2UVdJeFkyMXJVbWdLV0ZFcmFGRlVUR2h5YVM5RVpYZFVjVFV5TUdoaFkyRkRRM1kxZG1kWEwxSkRWQ3RuUzNNeU0xRkJlR2x0UTNKRGFrVnVUV3B4ZFc1dGMwcFlZM0Z4YWdwamFUaExSbGxQUkZKM04wbFlTSEZMVUVWS2IxcDFPR05ZVkd3dlJDOUJNM0pDVjNRNFdWVm9ReXRIUlVwV2RuaFhkVmxuTlhoTGNsSTViSGxIVDNWbENqWXJXRWxXTlUxcldtZFJlRmRTY25acWR6RkpjMFZrWnl0Qk1XRmlOVTE1VkhBNU56RnBjVmROTDNCdGRtOXZUMVpFVUhVd1drWTNibmx1YzFKUldVUUtWbVZYVDBGWmIyRnRNRFJsTm5oMU5XOVdZV2hSUjNGNVlVZ3pUR2g0TXpsclQyOHpNVFpDZDBoM1MwTkJVVUUzU2xNMVlXRkRXbEJ4Tm5JMFVEWmtUUW9yT1VGT05IUXJkemRxY3paS1UzSlpVRlJVVEZsQ2JuQldVbHBtTUZKcWRYWlVaVzByWlZWMllrRXpTWEo2TkZsMWRIZE5VM3AyVkdacmFFVjBUVEV6Q2tVclQzaFJUbVI2ZEhGb1JYbExjbmQ0TTFsdVowMU1XVUVyYzNGSldtaGplRlpZYkRjemJubFNOalF5TnpkbGNIUkxWVVZaZEdWdlNESnZRamR0UTNBS1ZXbDRlSEJDSzNRM1JrRnZNbXBJVEcwM2RubFNWME40VlVreFpuaEZPRXBxUm01TGQyVTBZVkJqTWxrNU1YQjVPWGRWVFdWVWNrZGxaa3hOWXpOdE9BcGFXWHBXUmt4Q2VXdzBTVlZrTkU1bFJHRlZVVlI2ZURoRE1pOXBiMHBoVG1STVVGTm5ZVVJpUVVzNE5WSk5ka0YwVUZCMWJVOWFNbWhWWjFwaU9IbFlDbTlKSzJWTU1YRXpWbTVOV1RoMlF6UnhialJMYjBoUk5rMHJMMlZVUlZaU1pEVk1iV1YxTjNWM2IzTlFWa1F6VURKMFVHaERlRmw1YzFBelIyVjFOa01LVWtOSk9VRnZTVUpCUjFCU2VEZFJZalp2WTNkaVZGWlRaWGN3V1hJM00wZHlWRGtyYUdScGN6TmxhRFptTkRCWVkzbExXbFFyUm5GSFVGTldlakZKTkFwTFlYaEpTM0ZSUzBzNFlWa3pNRkEwVkZabU5XTjRjbm94WlV3dlZYTTRZVXhMZWxKaWFXODFORUpXTjNkbVpWSk1OVkJZV2pKak0yaEhkakZXU2tORUNtUjFTVEZCZUVsd09USllaMVJPZFRGelN6Wm9jR1JGUkVFd1QxcHROakk0Tm1oVWMzRTFVMjFEZDNCRVJERkJVamRLV1ZoTFkwTjBjV3BxVG1FeGEzVUtOalpTVml0d1dXcDBZVmREYmsxdVRHZFBZMlp1VUZZMmNVMUZTSFZQZEc1aVVVRmhNblE0WW01QlVXWndZMEkzZUVGVlFYQmxNVU4wYW5WblpYaDNNUXBUV1VzMVlVeEhPR3hSTjNoaGJtRXdObWRqTVZCUVpraHVNbTlaZW5oR1YwOXFWVW93VWpaWFJFTTBRWGRMUmpGcFJVWmFXRFZoU1VwRFduWTVXVmRFQ2xnNE1qVXdjbGhJU2xaclIwZ3JkVU5RVlUxQ2RFUlRiR3RrTmsxcGVYTkRaMmRGUWtGS05FRk5SbkZLYTBWMWNVcExNRk56VFhSbE5ERlJPWFoxUzBnS1dUQldVbk55T0VacEwzbE9hbHBZYjFwT1Z6SjVjSFl4T0hKTGNDc3phWE5uWkdOWWMwaEZZbGhsTURCSmJFRmtTbVZUYjJwSFNXSXpTRzFIWW10SGFncDJWRUo0UW01MmJXd3hNM2RxVG1sbmJYSTFjRVY0WVU5eWJGSlFXbXhoVjJWS09YWmlaR3NyVUVKbmJYZElNVE5pVm5oT2RIZzBhRzlSTDNrNVJXZDVDbTExU3pOT1NIRXJiRUpxTm5wNlZYUXhMM05IWWtkdE4zQXlXVU41T1RCc2FWcENRWEpFZUZNMWN6VnBXRzlrWjBwcmRsbFdiRFZXUW1sSGRuaHpOVXdLUzJnNWNWRk5haXRpYUZOYVVXVjBVR1JsYkVkdE5VZHJWV1pDT0ZOSlVGUk9WMGhsTVc0emMxVm1PWEF6V2pZcmNsbE1lbTFSZG1ka01uVllVRmxtVVFvdk0weEdVelJsY0dWbGFtTldjREZxVjBVMGRsWkNjRmxGWkdSdWRUaGtjMWQwVnpkaGIybENTRkZHTVc5ME5GSXdTV1JrWjFONlN6RkRaejBLTFMwdExTMUZUa1FnVWxOQklGQlNTVlpCVkVVZ1MwVlpMUzB0TFMwSwogICAgdG9rZW46IDI0YWY1NzhmZjQ4ZWM2ZGUyM2NlNmFlYzUwZDliN2MzYzNlY2ZlZTI5NWU5NTViOGNlMzM5YjhlYWZkOGJhMjhiYTNiOWFkYjEzNzYyMGZlYzYxNTBlNTRjZWQ4ZjBiOTk4MDk4ZjVkYzY4ZjdjZGJiMmVjNTZmMDJiNzkyZDIxCg==\"\n }\n ]\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg31034/providers/Microsoft.ContainerService/managedClusters/aks0179674f/listClusterUserCredential?api-version=2022-04-01&format=exec", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg09076/providers/Microsoft.ContainerService/managedClusters/aks259535ca/listClusterUserCredential?api-version=2022-06-01&format=exec", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "24555279-cf37-45fb-ac26-1123b7a8afce", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e8c212fd-b38f-4025-a60d-a23450b304dc", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "13044", + "content-length" : "13024", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "x-ms-ratelimit-remaining-subscription-writes" : "1199", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "x-ms-correlation-request-id" : "38dd3716-bcfa-491a-aa0f-49283330ca24", - "Date" : "Fri, 08 Apr 2022 08:34:58 GMT", + "x-ms-correlation-request-id" : "3f1c91d5-3afa-4a90-97b3-af2c7aad3c1b", + "Date" : "Mon, 25 Jul 2022 04:00:58 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083459Z:38dd3716-bcfa-491a-aa0f-49283330ca24", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040058Z:3f1c91d5-3afa-4a90-97b3-af2c7aad3c1b", "Expires" : "-1", - "x-ms-request-id" : "6df89f82-e297-4469-9b53-694c8a2af6ff", - "Body" : "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVUxa2ExaFBWM1pFWkZGUlpUUlhRbXB1VVVrMk9VMTNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BKZDA1RVFUUk5SR2Q1VFVSRk1WZG9aMUJOYWtFeFRXcEJNRTFFWjNkUFJFMTNUVlJXWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuUTJNM1o1T1Vnd09XSjNhRUZuVGtKTWRYSTRZa0ZSYm1sc1prVkNhMWREUTFaUlJFcHRRaXRTWVhsMFozQnlTUzlZU1d0Nk9GWmlSbWhIYVdGNlpIVUtjRkZ6YjBsaE5qVXhUVU4wTDBZd05WbERZV05FUmxSS09TOWxkR1VyYlVoYWFtSlBOR1pMVVRKUFowdzBhR3ROZHpGbmJITk1hRlpxUkdadWMwa3ZhQXBhT1dWTmNFOTJlRGxhZEhKRVR6UllVMGxWUmt4UkwybG5OMjVyZEVOMVRVbFJSbGx1VVRkelpDOXZOMGhMTlZJdldrNUhjMEZYTVdKak9VbG9Ua1Y1Q21ac01WRmFUakl2WVVKNVpXaHJNblpTTUVaQlZITXhjMnN3Ym5FeU1GVXlNR28zVVVod1dWSlFkVUkwVkhGUU9YcGljMjlXVWpoTlkyUlNWRTVTZGtJS1QxaHpjbEYwZURVMFJrNVhPRUZTTUV4NFNVMUpRMGt2WTBvM2N6SjJiMjk2V1M4eU1tWnVObEE1UW1OcmEwcEZNamxPWjB4U1VXVTBSMVl6UjJ0T2FBcFdhRWxQU1VSMFJITldaVkZGYWpob2EwbEJhbFZZWkRoRFRHRXZiRlV4VTFOTlVFbFBjRmwyT0VkVWR6aGFWMDlJVlRkWGVFRnZhRFJIYTNWNGJXSTFDa1pOTjJkMWFVVlZOa3BOYzFGNlVXRkxRMmczT0M5SU4xRXlTMmcwUnk5RFIxRkJZMjlMTW10WU4xTk1XbkF4TTJVMGFtVmpSMGMzUVV0Q1kzWlZNME1LVDJsNmJsQlNSMHR0VTA1WlpWRllVVFZDV25oMFJsbEdSREJzTTNOcmRHWlBhRVJ1VUZKQ1RuRklPR2RWZUZCakwyWmhOR2xPVVdoTWRGTnlMMVJ2VGdwclR6QlhURUpIS3lzeVJHeGFUalJpV1c1VVdIWlZUbFZYT0d0VVNGRXZVelZJTDBVeU5reEZhV1ZqTmsxM05YQk1TRUZ5ZWtSclVYSjNPWEZwTVhNeENsbzRTMmhhWjFwRlFYaHRUelpPYTBaUE5tc3dUa1kwV1RaWVpqVldVRzEyZVVSSGVtcHpOMnhLYTB0MlJEWlhPSG9yYlRNelRrSTFkWGw2TDJKTWNUY0tNQ3RaVjFVNE0yRllhemRaVXpZcmNFUmxkWFpUZVhreGNYQm1aR2w2VHpKMlJFbHRORzV2U0cxWWMwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1N6RmhXWEEzZG1SMWRWVlpVVmhFQ2l0NlZFZ3laRVZxTmpBNU4wMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFqaGFTRGxyUkRoVVdHOHlTMGc1VDBsaE5WbE1NRGxUYURnS1RrWnpURk5ITTFGT2VIbGhWelU0Yml0cVZHZzBZVk5sZVVJMFdERkZTVGd3WjFReFJIZGpTSEpOWlRoNGRXeEJXV0ZVUTJsVWVqQlRRbUUyWVdoYVpBcEVOMnd5WVVGbU5rUmtXR0pwWjNWNmVXNTRLMmRFTVc5VU4wcG1kVVZyY3pWNGRGSnBPV1ZwYlVVeFZXNXFUalpsT1ZGcE1sVXZlV2d3VlZNM1UybG1DbGdyTDJaR1FrTkVPRWwxVG5WMlpITkZjMDlaV1hobmJuQXphMVZMVTA5cFREZHBhRFpEV0ROdWFsSllPV05MY2xaR1ZrRXJibGxLYmxoaVVVVm1NbVlLTW1oaFIwMXlibFpDV0hNdk16QkRjUzl2VTJsaFRqUkhlWGwzY1hOV1dERnpPVkpqVWxjMkwzYzBObVl2WjBNd2FrdFRZVEF6U2tOTllYcHhTR0pTZGdwaVZWUmFRMlV5T0RsNVNXUlFWV1pUZEVSa1prcHROR1JRVTBKdU1FSlVZbE15ZG1SWVNrTkZORGRXWW1kdWQybHFWbWRwUmpWcVJVbFZlR1E0ZVdwMUNreHZlbUZoZFRkQllYSkpSalV3YUdsb1VqUXZNbXh5Y0c0MmNtMXhTRU13Wm5scllsRllWVWxTYUU5VVNuZE5Uak0yUlhSMlUydFJZVmhMWWpKVloyVUthRFJMVldkUFNGWlBia04zWVRFNFNYbFJVMUZKWXpCd2JFUnBPRE54UnpkRVVtOU5kbHBuWWxGdmRFNW9VelIyVDJZcmREUTVlRGhOTURKUmVtZE5UUXA0V0ZKcGNFbGhXU3RLVm0wMFRrZHhkVkZGVEhnNVIzVTBUWFJ4WkVSeE5XeEtPSHAzUTBOaWFFaDJibnBSTTFoS09HcERVRGh5VnpCdVZEQmxXbFUzQ2t4dFJVcE9ka1V4VFhOR1UwcFlNVEJSVEZCcldsbDBSbEFyVmpKMGJIbGpVa2RqTm1OclUwdDZXbU53U0ZKdVQybFdORTRyT0VKaFZUQjZUVTA0TUZBS01rdGtibGR3ZW5ObGFXOHlTVVJvWjNCaU9VWlFZa3hZU1daS0swSXlWMUIxWVRFdk1UQTBPVEZYYmxOd2EzaFVjMGswWldOM1NFTmxOR2w0ZFhOak9BbzFUM2xvSzBocGNXbE5jVzVHVEdOTlIyYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vbXAxZG5zMTUxOTY4LTllNzkzYWY5LmhjcC5jZW50cmFsdXMuYXptazhzLmlvOjQ0MwogIG5hbWU6IGFrczAxNzk2NzRmCmNvbnRleHRzOgotIGNvbnRleHQ6CiAgICBjbHVzdGVyOiBha3MwMTc5Njc0ZgogICAgdXNlcjogY2x1c3RlclVzZXJfamF2YWFjc3JnMzEwMzRfYWtzMDE3OTY3NGYKICBuYW1lOiBha3MwMTc5Njc0ZgpjdXJyZW50LWNvbnRleHQ6IGFrczAxNzk2NzRmCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfamF2YWFjc3JnMzEwMzRfYWtzMDE3OTY3NGYKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJZVVJDZERaSllVMUNWMDh6YUU1SVdrcEdiazh2ZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRXcEJNRTFFWjNkUFJFbDNUVlJXWVVaM01IbE9SRUV3VFVSbmQwOUVUWGROVkZaaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJZVm10clpWWkVVRlV3YzJ4bWVqQkpiVFphU0VZS1dWRXJOM3BDZUZBMVRWTkhiVEpCVGpWSFVqZzVRMFJyUkhWM2IwMTVibGRQUkM5M1FWZE1hMU5TUVZBemR6aFhWV3RPTkZwYU5YWnVWalZZTlRsbWJ3bzBhVVZtVDJsMWFrOXBjVVpNTVVwUVRtNU9hV2MyVjFCNE1tUkpZVkJ6UWpkWVZVOW1PRVExVWpCVGIwRlNZbFIyV2t4WlJHUTVlWEp5TWk5elZWRndDbmwyUkZWbGNuZEhiMHhRT0RaWlIxZ3lNbWR6TlV4SVRYVXdXbXB5YWtkSFZFcEtZVkpPZFROMU1tY3daRFJXV0ROWFZUbEdWRmx1T0VWMlIwSlFjallLU1RFeVIzVTFTSFpqU1M5RldqSm9XbnB1YUhOeU5sRlpVREZJYTNZclVVaGpSR00xWnl0d1dXVmlPR1ZFU0dveU9FWTBjRTF2VkZkMlZsRm9kamg0WndwNVUyVXJRemwwY3pWNGFUSkNPWEZHYjNwQmFEbG9VRGRRSzJzeVJFRkRWWGhWVjFZMWJGUnVhMlY1Y1RsSFdXbHZaREZ1UzI0dlEwVlRhaTlVVW01T0NrYzVkM0ExWlhFdmNHRm1Ra3hZVm1aM1Mwb3paemhZTTJGaFNrRnFiV2hoWnpWblpWbENkV0YwVUM5SmFrOHpVRmxKTTFaYU9HVm1RbTlHU1dkdGVHUUtPV2wzTTFGcVUweFhSemhUY2tNNVpXMVdUVWxwTWk5eWFuQmFZM2xGVjJ4dU1VaFJUSEEyVTNWMlVsTTJiRXhMV25RNU1rbEVWbk5FY2xod1N6TkllUXBTSzJwcGJFTXJhMHcxWW5KbEswcElVbUU0YVV3eFNsSlVSMDVPV1dSRlpHODFUVTluTjNNd1dVUjNVSEZ3TUVndlNVMVVPRlI1YlZSUE1rZFFZM00zQ25RM1lVVkJVM1YzV2xoNk5YVjVTa3BMZDNWbWNEQXJZM2hRVDI0M09UWlFMMFpUTkRKc2RtVXdka0ZPVTBkSEszcGlOWFJaTHl0V1RXcG9NV1JTV1ZNS1VsZG9UU3RYUVVobU9GRldaMlF4Y1hnd1duaGxUM2xqVXpCdGVHSk5PRTg0ZVVOelJUSjZjSEp2YWxGS1JIb3pSRGh4YmswMFZHTjBPV0l5Y0VKTFVncFpPV0pJV0dkNFQyOHhjekUwWTBOeE1FdHhZMDkzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE4wVjIxTFpUY3pZbklLYkVkRlJuY3ZjekI0T1c1U1NTdDBVR1Y2UVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZ6WVd3M2JEQmpUVXRsTlUxSU9XcHRPVmhTYUFvNGEySjBMeTh2YzNFek9GUXhRblpPYUhacmJXZFpRMng0ZFdoU1lXcElTWGxvYzJOTU5YSk9VVTg1SzFSM1oyeDZVQ3RRTTNremRqZzNkRVZ6T1N0Q0NtWXdlRzU1ZEVOM1F6Vk9OekJtVFdkM05ISm5iR2g2ZEhkT05HMW1ZVmRXUkVOV1VqWTFaamxESzNSMFRsQkJUMWhQUjFvdk56ZExPVko1ZUhac2JFVUtWWGRpTW5CbVltUlZaamhoSzJKM1VGSk9XVEl4VFZWaFNtSjVSMDlUYnk5c2RtRmhZVWxtU1VnMFUzVlJSbTFpZFhGdFNFeG9PVFpYT1U5cVF6QTJOd3AwUzFFeVJVVkxXV0Z3UTFsVlNFMUVZVFJ1WXpWeVJFc3dhREZTWjBWcWVtSlJSbkJGY3l0d2RsSlFUMjlRV2pkak5rbDROMHhNZW1NM2RFUnZVM2RXQ25Oak1YQnJUSFZFZW1OMmNuVTJaa2w2TTJkNU5FUXpSMUUzT0dOclFXWXhVVW8yVTFCWGVUaE5NRlkyYURoYVpFdEdZbFUzYlM4d1VXcEJablpzYkZFS1dWRlhUVTlsTTBaVVUya3ZUbkZOYUdaNlYwVnFZeXQxWTFkSFNsSkdTbVZVYUVod2RWSXZiMGwzVW5sa1EzcG5kMVlyWWxabVRtUkllREJ5ZEhadU1BcGtPVVJ5VWxVd01FTkxhVWRzYjA0cmVXTTVjRXhSUms1eWRVUjJVM0ZGUWsxclpIVXJlVUpyVVdKWWFHcG9WM2Q2VkVKMlVYSnJTSFIyVUhWWk4wWm5DbFJLUWtSVFRrRlRPSFpFTlZwa1duaEpSVlp0VjJkd01FbFFaamt4YjJOMVRIRjJjeXRRVTJaeWFFbHZNV3RZYW5VelZGVTNiSGQ1VmtGaVdTOVhaMG9LUldjelVYUTROa2hwT0dWcWExVlNNazB4WWt0bk5EZG5kM2RqV25OTFVESk5iWHBPUzNnMlIyNXNMMG95UzI1MWJVSnBkMXBYUjJwb1dXZHJRbE01V2dvemFtbzRRbTVWVjBSckwyWmhRVGRsYlVWbU4wOXFiVFJWU21odmFWVkNRVlV2UTJ4NVozQk1PVlpMWkM5TmMzTnZaV1p1VGxwRVdVMVBkRE50YkROMkNpOURWV1pXTVZNNU4yVTJNR1J1YUVkYU0yWnljVE4zUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMmRKUWtGQlMwTkJaMFZCTVRGYVNraHNVWG94VGt4S1dEZzVRMHAxYlZKNFYwVlFkVGgzWTFRclZFVm9jSFJuUkdWU2EyWlFVV2MxUVRkekNrdEVUWEF4YW1jdk9FRkdhVFZGYTFGRU9UaFFSbXhLUkdWSFYyVmlOVEZsVml0bVdEWlBTV2hJZW05eWIzcHZjV2hUT1ZOVWVscDZXVzlQYkdvNFpHNEtVMGRxTjBGbE1URkViaTlCSzFWa1JYRkJSVmN3TnpKVE1rRXpabU54TmpsMk4wWkZTMk55ZHpGSWNUaENjVU42TDA5dFFtdzVkRzlNVDFONGVreDBSd3BaTmpSNGFHdDVVMWRyVkdKME4zUnZUa2hsUmxZNU1XeFFVbFV5U2k5Q1RIaG5WRFlyYVU1a2FISjFVamN6UTFCNFIyUnZWMk0xTkdKTEsydEhSRGxTQ2pWTUwydENNMEV6VDFsUWNWZEliUzlJWjNnME9YWkNaVXRVUzBVeGNqRlZTV0l2VFZsTmEyNTJaM1ppWWs5aldYUm5abUZvWVUxM1NXWlpWQ3Q2TDNBS1RtZDNRV3hOVmtac1pWcFZOVFZJYzNGMlVtMUpjVWhrV25sd0wzZG9SVzh2TURCYWVsSjJZMHRsV0hGMk5sZHVkMU14TVZnNFEybGtORkJHT1RKdGFRcFJTVFZ2VjI5UFdVaHRRV0p0Y2xRdmVVbDZkSG95UTA0eFYyWklibmRoUWxOSlNuTllabGx6VGpCSk1Ha3hhSFpGY1hkMldIQnNWRU5KZEhZMk5EWlhDbGhOYUVad1dqbFNNRU0yWld0eWNqQlZkWEJUZVcxaVptUnBRVEZpUVRZeE5sTjBlRGhyWm04MGNGRjJjRU1yVnpZemRtbFNNRmQyU1drNVUxVlZlR29LVkZkSVVraGhUMVJFYjA4M1RrZEJPRVEyY1dSQ0wzbEVSUzlGT0hCcmVuUm9hak5NVHpkbE1taEJSWEp6UjFZNEsySnphVk5UYzB4dU5tUlFiazFVZWdwd0t5OWxhaTk0VlhWT2NHSXpkRXgzUkZWb2FIWnpNaXRpVjFBdmJGUkpOR1JZVlZkRmExWnZWRkJzWjBJekwwVkdXVWhrWVhOa1IyTllhbk51UlhSS0NuTlhlbEJFZGsxbmNrSk9jelpoTmtrd1ExRTRPWGN2UzNCNlQwVXpUR1pYT1hGUlUydFhVRmQ0TVRSTlZIRk9ZazVsU0VGeGRFTnhia1J6UTBGM1JVRUtRVkZMUTBGblJVRjRXRzVQZDJrMlRDOWtPVEJhZUZoR016ZFBVbE5CV2xWRVNFRktaM05qVkRWNlJ6QkxLMnhKYzJ0TFluRjViRFJNZDBkRmJUTjVid3BRWlhremFWRjZjakoyU1M5bWMxQm5UbWhvVXpkS04xQjBlVkJhYjBOMFNVaHpRVlUxY2t4bU4xcFlVa1ZQTW5CalV6SjZaR2xDZVhWcVpqQkJVR1ZJQ25kek1ISTFhVGhUWVd4UVpGbEVOMWt6UzFGVlVqZExlVTV2Y0ZaTVZrbzNLM2NyTTFGUmFUbEtka2h3VFRVNE1XTlFOR3huT1VFeWNFSkdTMUExVVZnS1NIZDBTWGczZW05MWFucHNibmRrWXpSWFEwUmpjWEoxWjIxR2N6TkdiakJYYVhaSWEwZExWWEJhVVVSWlYwSXdiRmtyV213NVluaDJhWEYyTjNCYVpBcFFjbE5aUVRVeFlYaEROMEl2UVhaQkwyeDZhVGMxT1dVclZHaFJUVWMwYjNOVFRtdHFaMFk0WVhWeVZ6TnVhMmxIWmt3eWNtaEpWbEk0YUVndlEySlNDbEZ5SzJoSE1rSTJVSFZwTUdoWmQxWlpOV1paTkRsemFUQnpXV1JKYjNGR2MxbzVUSEpXT0hCQlNTdENMMFZsT1VKVVJtVmhRMGxTVkdOSFNFVlRNemtLVFhkUlFWQnNVMk00U21kU1pXdE5VVlYxYUhSeVZtVnRNM1phTkdWc01tNURVV3AzTVc5T1NVOU9hUzlpWTNsTllreEZTM016UzNsU2FUZFNaRmRaWWdwVFpHSmtkMVZDYVZjMFlqRlFTa3N6Y0dSdWJDOVZTbmx6WXpjMU5WWnNTVUZKVDFVMVdYcHpaRmQ0VjBWM2JEWXZSVEF4VEdwdGQzUnlTRlo1WkVOVENubHNWM0V5Wm0xbWRsaDJiakp1UWxKbkwxUmlkamhzWkd4SGNDdE5VbnBCY0c5UlFYQnJVbWwyTVhSaGVpOWlZMGRCTkhaalRqZDRXbVp6V1ZaMk9XWUtkRkZ1YXpoUGVUVnRkRW8xV1VaRk1VWklaRFp4ZFVwTVJtUk5hMXBxWTJGTmRrMVZRVTE2VTJjMlJuVmtUVzEwV2s5b2RHUkphRlpXTjJabWEyVkhOZ3BKT1hGelJYWlJOV3RIVnpnemIwVnhOMlphVG5jcmJFYzRVMjl4U0dKQllYQnFZbFp4WkVnNGJtYzBWRzFSY3pkemFXdERaMmRGUWtGUGF6aG1SVlp5Q21sQlpYQXdTRTlUYkVSMmR5dDNWV055ZDFRM01GaHNhV3hOVjBveUx6aExURXB0VjNWM1VrZHhTbEo2WlV4WVZFZENVRzgwWlVRM2FsSjVNbE16U1RJS2REVllPU3QyTkdsaWRVcDZZMFo2Y21oUWFrRlRLemhqZERZdlFrcFpUM0ZPVWpJNFNYWlNObUZNUXpOM1lqRjVlV1ZKYUM5V1lXZFBWVlZHZW1jMU9BcG1aM2t2V2pKMGVYTmlkbVpJVlM4MlV6TnVjbEpGTkRKS1FYVnpiMWR3V0c1SEwzSmFOQzgxTmtaemVXUjBiM1pOWjFOWFZYWlpURUZOYTAxeVl6bDBDbTFMVkdOcU4xZEplRzV3VEVWdlZERkdWRk5OVFVFd0sxQmhNekZ6WTFOTE5HeEViMDVMYkdSdWJVZG5PSEZ6WmsxV05qUjFVSFkxWTJveVpUaEliVEVLVW1OQ1dUWkdiMEY0Tlcxd2R5dEtiM2wyY0RabmNYQXdRMkZSTTNSa1RXNVpRM3BzT0hJek9FbE1iamwwTkRVdldHMW1lVXB5VG1aUFRIWkdVa1pKYkFwdlpYVnVOSFIxYTFkWGJEZzVTV05EWjJkRlFrRlBlR0ZzU0RjelFrWnlWWFJLUlhJeUsyOVJWa0oyWTBaR1VFeEllV2hpWW5GSFYyWnlhamgyUnpWd0NpOVVVSFZhYUZGTlRXWlBMM2d3ZURSUk55dElTUzl2Y2k5eFIwc3dTV3BoZDAxWlJXWmxTVE5yT1RGdE5VdExTREp1ZG1wRU1YVlFla1ZrWjNSaVJVRUthekpPZGxGRVVFbHZORms1UVdoYWRIVnlPRTB5WjFkSk9HbEpSRlkwYm1Kc1VYY3hWbGg0YkVsMWQyWTBXR1pJZFRkaFdUUndURkUwWTNsR1pVbGlNUXBLTVdob2NGTllTQ3QzWjJGWVN6Qk1NMUpDUW1Kc1IzWlhUM1I2Ym14NGExZzFXSFZzV1ZodU1URjZPVGxDU3pNd2RrOUNWMkUwTkU5Mk1HNWhXVEYxQ2xkc1luSlNablk1YjA1V2VIYzVaMHRMTVhJeldteDZOM1J0TW1wQk0yOU9TMk5JUWpCYVZ6SnVZWHBpTUhOSFlrSnNLeXRKZEVWWWVVeHVlVE4wVHpnS1dFRnhaazFWTUVJd1FqRnNXRFkyVDNSd1RWSk1kMUJIU1VRdmNVUXZlVlZPVjBWTVQwVm1MeXMyTUVOblowVkJVQzlRV0RFeWEyVjVXWE5yYm5sM1NBb3ZWU3RqV2s1Q2VYQlNhM1pZVDNST1FUaFdSRlF6UmtsMlYzZzFTbnByUVhKSlVHeERNbGwzWVdaVmJsTnVkSFpQTDI4MFVXSTRSRWs1ZFdGWlQybHpDa2wxWlc5WVlrbDFjV00yUVdjM1dVdElLMVZGUm14QmNtUkdXRXc1SzBaQmNEUlJZbGRaYTB0R2FteG1jamh6VEV0UlVHOWthM2h2WlRkS1dEbDZlR2dLZHpkUWRqUTJaM0l6WldoSGRVaE9ZaXQwSzBFcmVHMHJlVmRzZHpScFpWTk5URGx5YlROUWNHTlNlVTgzZFhkb1kxQTVURUZXT1RWNFYzRTRPVkJtYlFwQ1JUVnNZVFZQVVVaMlMwSnJiMEZKYUZwVGFrRTVUbHBNZG05amVHNTJia2MzYmpSRlJHWnFXRFpsYWtGWFVuRnJURGQxUkZaR1NrdFBOak01TUZoVUNtUlRlalZwZWtaVmVITXlhekp1ZDNFd1NqVTVLM05KU0U5M2FIRlJVRWhNVUROU01GTnNlR1ZXU0RSMldXMTFkbk5NZW5ObFQwaGpkbXBOZDI1NU1ETUtXSGhrYlV4UlMwTkJVVVZCY25aV1MxVlZXVWhoYW14clVrMWFSSEl4ZEZFNU5rdE9VbGt6Y0hwYVZVcExkMHBrV1doQ2MyRkJkRGRVU0V4blF6RXdVQXB4VWtSQmRHbEhZMlpQTTB4MWQyWlJTVTFNUTBwV2VGSk5VVkJ2VERSdVYyOXBSR3hvUlRaMVl5dERZalJNY0hOcVJGaFNjVmR1TUhOTWJVMTJRV2c0Q25wQlZHcFJOMnROWTFKd1VsWmhSMUJKTlVJemRqSjJWbEpGYkVOek5tVnRSakJhZFZBMU1sSnVaRkpGWmtWMU1YRm9SSFpNUnk5VVNsVkNOalJMU0U0S1pVc3dWRUl5U0hSNldHVjRPSHBQY1hwbVozcE9UVGt3Vm0xa1lrNWtiSFFyWWpsbVlXMHJOamN4YUVWRE5IaERWbXd4VkdKRlpGSkNiVUkwTWs1V2FBcDBhamRXY1RGdGVubEZNakEzTkZoQ1FVSXlXVzFGVDJkTmJtRklOelY0VkRCaU5sUnVORGxxVVRSS1lrRlpOM0Z1YjA1cVdWUmtaM0IwWnpaNFdHUm1Da2RFVDFCb1dXSk9UR05oWkd3NWVWVjVUbk0xTlVVelRubGlNV3hrZURkT2NsRkxRMEZSUlVGeE1WUkROa2RJUzJSTWEweEhOek5VYUU5aGFFRkVWRzRLYVUxWldXTXZRM3BJY0VrM1FsTjRaRWRHVEdOdVpIWXpkbkJ3Y3l0eVZsRTNZek5yUTNONFJFMXJRM0JWTUdnNE5uSXZjRFJITWxReFFsUktVSFJKZHdwTWQzUmFWM3BUZVZaUlRtWkNhMmd2UVVFMlEzVkpkQzlyY1RCTWNWQlBWRWRzVGtneU5TdG1SemwwU2pSU1QxUlZkMVZHU0ZsUFdtNUhRWEp5UjFGM0NuSnJZbHBXVUhVdmNFcDBWbFptTms5TWNsZFllRVpPY0VadldpOTVlRWRqZDIxTVVYaFVOV2xJTkRjelJVazFVVTQzUjNaRk0xQlRhemRIVGl0bVFWZ0taVWc0T0RGdU5qaEhhV3RpTWxGclpFMWlMMFpJVWxWeVpITnZjVGxUYzFjeGJtRm5RVTVvTW5Cb016UmFaVWRYWVVGcWJrRnlWazl6UXl0RGExVkdTQW8xTmtSNU9VZFlTRkEyYzI1eEwwRkZZV0ZyV1VsQ1JFMVNiR2RDYmtWcWVtcHJNRE5vWVRkTlNsUTVabk5RVEVKcWRGUm9XbTkyTld0UUsyUnVkejA5Q2kwdExTMHRSVTVFSUZKVFFTQlFVa2xXUVZSRklFdEZXUzB0TFMwdENnPT0KICAgIHRva2VuOiAyNzNhNWYxNWY3MDQwMTMwMmYwNGM1Zjc0MWI0MjgwY2UyMjRjY2Q1YzRjMTNiMDEwNDRhZWQzZTg2Y2Q4YjIzMWE2MjlkNmYxYzU3NTNjZDI5MTEzZTQ0ZjkzMzc5MmE2MGUzNmUxNjM4ZGE0ZGE0YTk1OTZmMzQyMjA4YzliMQo=\"\n }\n ]\n }", + "x-ms-request-id" : "f152cb7e-9b5d-4d6f-9b8c-fb44d2722810", + "Body" : "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUkUxelRERXJka1JPZUcxSlNHOHhkR1JzU25GSlJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUV3BCTTAxcVZYZE5lbEV4VGtST1lVZEJPSGxOUkZWNVRVUmplVTVVUVhwT1ZGVXdUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVONkNsQTBZMFJRYTFSMlMwOXZaWFYwTW0xWGNrdFhkSFppTVVoWmJqQjBOalpzZGt0c0wyTmxTSEpvVFc1WWFtcFFhMnB4T1c5R1JFNHdLM0psY0dkbFlrY0tORWx0UWxaMmRYcFhWbThyWVZNMlZ6Y3JiRkZXVEdSdFlsVkNTRmt5VVRscVRFbHVZVGhZUzBaSE9DOW9TakpHU1ZZNFdqTTBXRXRNWTFCTE5rODBiZ3BLYjFWalZIUmhSVTlRTUhCRlJIbFJZM281T0VSeFFuRjJUVlI1VEVadFR6TlJNa0V4YlVKalIxcEhNRW96VnpSYVltWTBhRTk1YjJsNlMxSnNRMkkxQ2xRd1pVUk1OVzAwZVZOUk1YQlBNbE5MSzFwV05IcFlNREY1Tm1ob2QycE5UVW8xUmpNelZXdENPR3BaV0hkb1dHVjZUV05UWkcxTk56RlBVMmN2Ym5ZS1NHNTRaRmxpTW5NNE1IaHpNV1kzVGtoRlUwUnFURlZGTm1wc01VOUNNa2gyTVdKRWVXWnpaekV5ZVZneldtcDJZM2hMVTBORldqa3pPRWRoYXl0clNRcG5XbVZEWWpaM0syOUNjVXhsTkc4NFdIaDNZakZ1Y0dGS2FESXpVVFI1TDBKb09Dc3hiMVZYTDI1M1FsSk9OVWhLY21OM1QxbDVObGxIZDBWdlFXUkdDbGMxVDJrMk9VVnBSSG8wWmxWaWVXMVhWVkF4TUhBNFYwUnZWRkJJWjA4NFRuUjNiV0ptUlV0VmVUUmxXRTlUYWxSbVRYZG1aelp2SzI5SFkwbGhhVVVLUm5KVlNUQXlVMWRDWTI1M2RuRldNMWdyTVhZNWJtOVhOREZrU1c1eWJXaENUVXRSVkRWWlprWnNWSGxQTDFWdFptdG1hM2wzYkV0eGRsVnBXRlpLTkFwcVN6Z3dXRGwzTkZKb2FFTktVMGN3Ylc1WE5qTkVla0pHTWxWb1lXVk1URWRWTlZGc1REUm5iakF5YVhaWE9FODVaVVZ5WldaU1ZXOU9Ra05IZUdkU0NsbE9hVkJOY0dvM1JXZDZSVlZ6WjNVMVZrNXNZMHd6YXpselFuZHJLM2RZUW5GeE4xUkpXSE5sWmtrelEwb3JRMWxUVVN0TmVqVllkMUowWm5vMlZFc0tibGN4YVVVNFYzcFdOelpNWTJ0VGIwWjJWbXAzTUdRMGMwSjJabWxNVW5KWVZrTjZTalV4VW5wM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVNVp6QnlkMkpMYVVwbVRGSTBZazhyQ2xOU1NrazJXVVJ1VWtOQmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR1RpOXBXbXg2TnpOQ09GZG9WVVpMUjJKS1MydHJia2dyWlZZS1J6TnFaV3BZVEZWaVZ6aE9PVlphYWtwdWNURkliV2hxZFVGbU5IcEdhREpRUkVkUWJHNVRXVXRZZUZKd1ZETnhNRlF2SzJ4SVVVMUNVRGhDUW5jeFN3cDFTalUxVUZGcllTOVdTM0ZoUkhOelVYVlhNVU0yT0RSS1ltcDRRamxRVFVacVRFMTVTM2N6UVVaRVZEaG5kVTg1YTFSRlFYVmpUbFJqZEVZeVlrTkRDbTFoVkhnemVrWXpkMVJrTldSUFlqRjFVbGRtV0dZdmNHaFBRbkZsTWtGblJIbE9WREF5YWt4UlZUWmhaa05ZUm1wcU9VRjBOVVUzUjJSWldYcFZhMmdLVVhSbWFYaEhWalJYV1hwc0x6bEVSRkJoYkZoaU9VOXhkRmh5Y1ZsSWFXOXBLMDFyVVVWNmF6RjJPVTFyY0c1UksyeFJNRkp4Yms5RmEwOHpSakp5VXdwbVprOUpWbU5FV1RCck9YWm9WbU51Y25ScmF6Tm5XSGcwT0hrNGRsbFhUM2h6WlVGMVdqYzBaMmNyWTA5SmJuQkdTMmt3YlhRMlQydFlNeXRGVFRaS0Nra3JaRTFYTW1ORloyMWtaRTkxTlVzeFZHaFJVbGhVWlM5MlYxcEdiMEptVUVabU1rbHZUVXBzZFRKR1FYaEpWalJzTUhKTmJYVm1kMUJOTm5Od1Rrd0tiV1JGUlZKMFJ6bHZORkYxUVRCa05ESm9PR0V5Vm5oR09YZG9jVkJTZUdSVmRqSnRiMmhMVEM5elVtTXdNSEZqWWt4WU5taEhRMm9yY1VseWRYYzRhd3BpY1dab1RubFJUMGhNU3k5YU1qQTJWemh2VGpCbmJWY3plbmN4WkU1NWJVbEhZbGRQU1ZWb1ZrSk5aRVoxVkhCc1QzcFVTMGhFY1ZsWGJ6aERjMk4wQ25GT1VVZDNNVVpMWldGVE1FVXhPVlJaVjNWc2VHc3JTSFp5Tm5GR1lsUnJWSEptVlhSM1ExTkJXVVZIWTNWTWJIUnRNbGRNTDBOa1NrSTFaelZKUjNNS2NGUmllakp3Um1ocGVEaERUMncyZGl0dksxcGFWM2hEZFhWWmFFbDRUMUppUml0T05GVlRXV2wxWkZBNFJrSnFNVFZvT0RkRlRtZGphVXB4WjB0dWJBbzRUalpLWjFoMmRXSjJPVnBOZVhGa0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL21wMWRuczIzOTE2Mi00MWVlMzNiMC5oY3AuY2VudHJhbHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBha3MyNTk1MzVjYQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogYWtzMjU5NTM1Y2EKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2phdmFhY3NyZzA5MDc2X2FrczI1OTUzNWNhCiAgbmFtZTogYWtzMjU5NTM1Y2EKY3VycmVudC1jb250ZXh0OiBha3MyNTk1MzVjYQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2phdmFhY3NyZzA5MDc2X2FrczI1OTUzNWNhCiAgdXNlcjoKICAgIGNsaWVudC1jZXJ0aWZpY2F0ZS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VaSVZFTkRRWGRYWjBGM1NVSkJaMGxSU1V4TmMyMTBOVUk1YjBaQ1REUnNlbWxXVGtwblJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjVUV3BCTTAxcVZYZE5lbEV4VGtST1lVWjNNSGxPUkVFelRXcFZkMDE2VlRGT1JFNWhUVVJCZUFwR2VrRldRbWRPVmtKQmIxUkViazQxWXpOU2JHSlVjSFJaV0U0d1dsaEtlazFTVlhkRmQxbEVWbEZSUkVWM2VIUlpXRTR3V2xoS2FtSkhiR3hpYmxGM0NtZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSWmVFbHlVV3g0VTFOMFltczVUeTlOVTBwQ1NXMEtTbXBKYW1KdVNUaGtRazFGTm5KM2RFRk5ZM0owVWxwUGJFUjROa0ZITUdrMk0zUjFRVmw1UTA1VFpWaE1UMWxPUWtkdmEya3pXRzFQUjI5a2F6RmlaQW81VGxoa01EbG1NM293ZUUwclZGcFBVMGhQY21VME4yUkVZVzlZUzNCeFEzaGpNbWhXVHk5TFVtRTVjbXRRYlZsT01XbG5aMVpVTTFGS2NXUndka2hEQ2tOT05USnVhaXRKY1VKbE5ETnBVak5vUnpkRUwzVjZRMmd3TjFkQ09HNVRlVkpRYTNoSGFscEpVMUZCTmpWV1NtRmFhVWhpUlVOb1EzTkRVbVp1U0dnS1UzcDFOMHRFVkZCbWFqSXJjVmMwU0U5SGJrWTVZeTlJV0hoS2QzY3dTM3BKWVVkd2JqQlJaMHRuWW1OSlRsVXZSRlJQVlhGTlpUWnBXUzlKVVZGeVdBcDFlVnAzVFZkMlVpc3lUU3MzT0ZoU2JVeHNkWHBZU0VKcFQzRm1VaTkwYlUxaU9ITmFValptWVhSd2IxZERNVlpSZGtwcWMxbHdZVEpLVFhsaFpIbHRDbTVKTjNoV01pODFWVXBZY2pOSWMydDVjVlJvVDNOMmFuSkpZMW9yYTJSbVJFaG9hRkpHYXpabFJUZEpibmQyT0VnMVptNHhiRmxyUkdSWGRWUXhiek1LUlRCR1oyaHJOa1ptVjFoelJHSm1TV1JPVGxFclVrbENVRmRhY0VoT1NYbzNXRGRaY3paRFJVeDVlRE5PV0ZOWlZHZHVaWEpHZGtSR01rUm9hekl5ZUFvMlUwRmxiV1JpTDJZdk4weEplRVZxUjB3NE5YcE1VVTFKV1Nzd1Z6UXJkRkV5WlZGUlNGSTJWSEpMVTBVdlowdFFUWEV4TUN0SVdVRmxOSE5DZFZCckNpdFRlVEp1YlZoQlZrTndNMGh1T0ZCbk4zYzFWV3hJUWxKU1FsRjNUWFZuZDJwdGFXeDFSa3hDUlRCS1kwbFJiMlJITm5CamNYRnZXaTlhVjB3MWFYQUtVMUZJZDI1VVpsSlVlakYyTWpSTVZIQk1WVkEwYURWMVZsWjNkbTQ1TW5KWU1tbG9ZakJXTldwMkswRndabTltVW1vMWQxUTBhSEZtV2tvdk5rNDFjQXBYTm1SWE9UaE5LMkpXTDB3NVMwUnRiMXBPVWs5M1NVUkJVVUZDYnpGWmQxWkVRVTlDWjA1V1NGRTRRa0ZtT0VWQ1FVMURRbUZCZDBWM1dVUldVakJzQ2tKQmQzZERaMWxKUzNkWlFrSlJWVWhCZDBsM1JFRlpSRlpTTUZSQlVVZ3ZRa0ZKZDBGRVFXWkNaMDVXU0ZOTlJVZEVRVmRuUWxReVJGTjJRbk54U1d3S09IUklhSE0zTlVwRmEycHdaMDlrUlVsRVFVNUNaMnR4YUd0cFJ6bDNNRUpCVVhOR1FVRlBRMEZuUlVGUGQxVkZUMk5SY2l0V2RFTTFibmh5WmpnME13cHRPRE5LVms1a1VteFJabkZIV2twRVptVlFTelV2Y0hONGFGVlRNMWN4U0RGVGNXWTFhUzlyWW1KYVNtaDVkRWgzT0ZCMlZFeHJRMGhMT1c5SkszbFJDa3BuZGxGWFZISnRZbTVhWVdGeWVrMVhjRUZwU0UxQkszcGhRMUJHVFdKSGFuQnJNRmRhV2paNVZHSnNkbFpQY0VSblRuaE9VR1pRTWpSbVEyZEVTMnNLWjFGcFZFUklUR3BuYTIxMFFpOTNSbWRSZDNaVVJUTTFhak5sYnpCWVVGSktiVVpoYWxGUFoyZHZOWEJZT1ZwVFp6WlNWMXBLVkdKVWNXSnRaMVZLVVFwNWVURk9UbkJsT1VSalVGRTVjV1V3VWtrM2VuVXlWakIxY2taMlRXMXNMelZZVGxKU09VNHpRVlFyUkc1NWJEQndXV1ZpYm1wQ1VtZGtNbkpIWVdZMkNuUklhRFJsUTBFMlVIQmhOekp2WnpGVmNWQmlSVVF3UjFOTGMzQkxkRTV4ZVRGRVZWVXJWSGt5ZG1ZM1MxUnRVbk4zTmtoV2RHcEtWRmhzY0ZCdFZVZ0tTbFZUTkdWclEwOVhPSEkxTHpsd1NGcE5LM2hYTjNOaUsyRTJha2hNWWtSTFJ6YzFSRkUyVG5KQ2RHRkNOR1JqZVVweUwwczBRM1JOVmtsVWFEaEJkd3BqZW5kelYySlBhWGQzWlhwM2RYVlFRWEJSY2s5RU4xWk9hWGxNUkhVeUwwNXdkVzQ0VkRSTk5ESkpMelkwZVZaU2FXbG9PWE5uVGl0MFFWRkhjVkJ5Q21SQlRVTkZTRXA1TVhCNmRXTk9LMGR2UVVwT1ZtVk1SVWxXTlU1SGJrOU5VRmg0ZWxsa1dIRXpRMDlUVFdaUFdtSkVlRWsyT0dOcE5rOUpSSFEyUkZZS2NGcG5kWFpUVmxZcmJITlNObHAyYVZCRVdVbHdiVTgzZFRkb2VWaHpibk5sTm5aV2FWSTRUamhHV1ZWQlpYcFZTV1JQZWtWbVltTTVjVXRwUVZST09BcFlNVWt5YzFoUVkxaDJTbTQ1ZW5kaFRHOVZiVlpuZEUxWGRrNXZiVFV4T0hkdFdrZDVjRE5TZGpSSmRHWmtla1JaTDBsU1UzcGlWMDltUjJSSE5HVmFDalJWTmt0a09GVjZVbWh3WlRoNVdqTkpMMlF5UVZkelBRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIGNsaWVudC1rZXktZGF0YTogTFMwdExTMUNSVWRKVGlCU1UwRWdVRkpKVmtGVVJTQkxSVmt0TFMwdExRcE5TVWxLUzBGSlFrRkJTME5CWjBWQk1rMVRTekJLWTFWcmNsYzFVRlIyZWtWcFVWTkthVmw1U1RJMWVWQklVVlJDVDNFNFRGRkVTRXMzVlZkVWNGRTRDbVZuUW5SSmRYUTNZbWRIVFdkcVZXNXNlWHB0UkZGU2NVcEpkREUxYW1oeFNGcE9Wek5tVkZZelpGQllPVGc1VFZSUWF6SlVhMmg2Y1ROMVR6TlJNbkVLUm5seFlXZHpXRTV2VmxSMmVXdFhkbUUxUkRWdFJHUlpiMGxHVlRrd1EyRnVZV0o0ZDJkcVpXUndOQzlwUzJkWWRVNDBhMlEwVW5WM0x6ZHpkMjlrVHdveFoyWktNSE5yVkRWTlVtOHlVMFZyUVU5MVZsTlhiVmxvTW5oQmIxRnlRV3RZTlhnMFZYTTNkWGxuTUhvek5EbDJjV3gxUW5wb2NIaG1XRkI0TVRoVENtTk5Ua056ZVVkb2NWbzVSVWxEYjBjelEwUldVSGN3ZW14TGFraDFiMjFRZVVWRlN6RTNjMjFqUkVaeU1HWjBhbEIxTDBZd1dtazFZbk14ZUhkWmFuRUtiakJtTjFwcVJ5OU1SMVZsYmpKeVlXRkdaM1JXVlV4NVdUZEhTMWQwYVZSTmJXNWpjSEI1VHpoV1pIWXJWa05XTmpsNE4wcE5jV3MwVkhKTU5EWjVTQXBIWm5CSVdIZDRORmxWVWxwUGJtaFBlVW80VEM5Q0sxZzFPVnBYU2tFelZuSnJPV0ZPZUU1Q1dVbGFUMmhZTVd3M1FUSXplVWhVVkZWUWExTkJWREZ0Q21GU2VsTk5LekVyTWt4UFoyaERPSE5rZWxZd2JVVTBTak54ZUdKM2VHUm5ORnBPZEhObGEyZEljRzVYTHpNdkszbDVUVkpKZUdrdlQyTjVNRVJEUjFBS2RFWjFVSEpWVG01clJVSXdaV3MyZVd0b1VEUkRhbnBMZEdSUWFESkJTSFZNUVdKcU5WQnJjM1J3Tld4M1JsRnhaSGcxTDBRMFR6aFBWa3BTZDFWVlVRcFZUVVJNYjAxSk5XOXdZbWhUZDFKT1ExaERSVXRJVW5WeFdFdHhjVWRtTWxacEsxbHhWV3RDT0Vvd016QlZPRGxpT1hWRE1EWlRNVVFyU1dWaWJGWmpDa3cxTDJSeE1UbHZiMWM1Um1WWk55OW5TMWcyU0RCWksyTkZLMGxoYmpKVFppdHFaV0ZXZFc1V2RtWkVVRzB4Wm5rdlUyYzFjVWRVVlZSelEwRjNSVUVLUVZGTFEwRm5Rbmd2WlcxRFFpOUZjSFJoWWxWTVRrdEhiRGRHZW01dFNpOW1NMVpVYkZSaWNsQjNXREpLU2t0WmVWbEpVbXRMU3psQ1luaGxkMHhqU1FwQmIybENZMHhMUWt4WWRFNUlVMVV3VlhGTFRtcDBNQ3M0Um5sbFNFVk1ZbWhMZG5WQ1dGWTJhRkpQY0RGNUx6Z3paREJxU1dsNGQxRnNZeXR5WjJGVkNqaE1WM0JEVkhoWGRFMWhUVFZaTkZZeVpURXdiVTlUTWxGNlUyWmtWWEZJTVc1Q1UzcFNTM05vVTFadlRrcDVURTVYVVUxaFJuUnpPRzExVVVSWE5Fa0tkamhFYW1KcGIyY3dZMHRRSzBwbVpHNHlMMlJSUjNCRlIwNXhTMUEyV1Vwd1puTm1iM0ZQVm5kRlR6aFRSVFZZWWtGNk5Fc3lZbTVLWTJaT2NUaElOQXBGVjJ0cFFWQm1ZV2wxYlZwWWNtWm9WbGREZWtZclVXdDVkeXRKYnpCS2VtWlpibFozZGpGT0t6UnNjbm8wVXpCWlFsZFRWVkUwVVRsVGJXWmtSVzB3Q21KMmFreHVUVllyVjJWQ09VWmtaV2d4V25WTllYQm1PWGwxTTJST05tWmxhMXBaV25wMFNIUjBNemxwV2pCalJEUjNjVEpSU1d3dmJVOHZVbEYwVVVzS2VuSTNlSGhLVTFOcWNWRTNSRXRZUVRORmFrNHZURGN3TW10RlRqQXlaSHBFUkVaSWNsaGpaVkYwYzBZeU0wTlljbVZzVFhSNFlUUkJjRUp2YW01a1RRcGhOM1Y1U1dNd1ZHUXpiRlZsUVhscVFtRnJhMlZKVUc1Nk5WcERjelJ3YVZsNmRVeEZRVWwyWmxWVU5HUlZjV3RUYWtrd2N6ZFFVR3RhZUNzdlVETjFDa2xyVVd0a1pVMDRSMnREYW1kcFlTOXhSbU5hYVRaQ2FXMURLekJ6ZUVVdlNtRXhkSGc0WTJGRVprNXdSMWc1YjNSeWFHSTBjRGx5WnpWemNHNVVOemtLYmpoaWMxUjVSMFpTYVRSQmVqa3hWbkI2VmxaMU9UbGlaMEpCTTNRNFUxWmxXVnBaVm5oNVowdEZSR3MyV0RCRmNGRm5OREEyTW5WdU5HdG1UbFZyUXdwTGVEQjROalZYZDNSbFRHbzNOalp2VTJoc1VtSmFUVlV6U25rd01IWk9aeTlpV1U1R1RWVlJTM05xU1M4M2NtcEJVVXREUVZGRlFUSlhTM2xuYkRWNkNscHBNalF3VWs1eVNqbFFNM052VDJWbEwzaDRSazA0V21vM1RUZDRkRU5ETVROM1IzSk1WVlV5T0VGemJqbG5NRnBNUW5aMFZUQkRRbWxGTjNWcVluVUtaMnd3UVZkRGNtWllWMGxXWkhvMGFVTk1jMHhCVUcxNFprOVlRa2xWTm1ORmJYRndUSGM0VWxScVRFZHhXRmxXZEVVemRqTjRPRmhpT0RGNE5reFlPUXBtU3pGdU5qaHdNRGh4ZVdkSE1XZExkR2RUYmtsbFluQjVWeTlFVlRoeVQyaFlUekpxWkdaQ1NrcGFWMVpKT0ZFd1NWVmtjams1ZFVSU1dVTmlkbEk1Q2xCNFUzUnNVVkI2WVN0SU4yeHJkalJrTTAxcVpXUkJMMEpYV0N0amRVOW5jVXhxTldwbWRUbEZXRmswVUZWMmN6QXZNRE42YUdocmJFRkRWbGhUZVRFS1lVTTVjV05HZEVsU05FOHlMMkY0TnpKdlVXdzRORzVySzFoVVRqbEJSWGRvV2xJck5VRlZjSFV5YnpkdVNFbDJPSEpMYml0aGVFSTNZMkZaZVZKcmJ3cE1jRFl4YWxOQlUzazVTa3hhVVV0RFFWRkZRUzh3V0VGaVVYRk1iRmhaTDNveWFEZDVVVkIyUzFwSlFtMWFjMUJWTW1rcmVpdDVPVzFKT0dodVdFeE1DazFYV0U5aE1IUnFkV0ZGUzBGUU9WSTFPWEZGYUhsVVdtbG1jbkpKYjBKc1RqVTNjRXRhVVVsTVVGcG5kak5YU2t4dkszaERXRUV2UVdJeFkyMXJVbWdLV0ZFcmFGRlVUR2h5YVM5RVpYZFVjVFV5TUdoaFkyRkRRM1kxZG1kWEwxSkRWQ3RuUzNNeU0xRkJlR2x0UTNKRGFrVnVUV3B4ZFc1dGMwcFlZM0Z4YWdwamFUaExSbGxQUkZKM04wbFlTSEZMVUVWS2IxcDFPR05ZVkd3dlJDOUJNM0pDVjNRNFdWVm9ReXRIUlVwV2RuaFhkVmxuTlhoTGNsSTViSGxIVDNWbENqWXJXRWxXTlUxcldtZFJlRmRTY25acWR6RkpjMFZrWnl0Qk1XRmlOVTE1VkhBNU56RnBjVmROTDNCdGRtOXZUMVpFVUhVd1drWTNibmx1YzFKUldVUUtWbVZYVDBGWmIyRnRNRFJsTm5oMU5XOVdZV2hSUjNGNVlVZ3pUR2g0TXpsclQyOHpNVFpDZDBoM1MwTkJVVUUzU2xNMVlXRkRXbEJ4Tm5JMFVEWmtUUW9yT1VGT05IUXJkemRxY3paS1UzSlpVRlJVVEZsQ2JuQldVbHBtTUZKcWRYWlVaVzByWlZWMllrRXpTWEo2TkZsMWRIZE5VM3AyVkdacmFFVjBUVEV6Q2tVclQzaFJUbVI2ZEhGb1JYbExjbmQ0TTFsdVowMU1XVUVyYzNGSldtaGplRlpZYkRjemJubFNOalF5TnpkbGNIUkxWVVZaZEdWdlNESnZRamR0UTNBS1ZXbDRlSEJDSzNRM1JrRnZNbXBJVEcwM2RubFNWME40VlVreFpuaEZPRXBxUm01TGQyVTBZVkJqTWxrNU1YQjVPWGRWVFdWVWNrZGxaa3hOWXpOdE9BcGFXWHBXUmt4Q2VXdzBTVlZrTkU1bFJHRlZVVlI2ZURoRE1pOXBiMHBoVG1STVVGTm5ZVVJpUVVzNE5WSk5ka0YwVUZCMWJVOWFNbWhWWjFwaU9IbFlDbTlKSzJWTU1YRXpWbTVOV1RoMlF6UnhialJMYjBoUk5rMHJMMlZVUlZaU1pEVk1iV1YxTjNWM2IzTlFWa1F6VURKMFVHaERlRmw1YzFBelIyVjFOa01LVWtOSk9VRnZTVUpCUjFCU2VEZFJZalp2WTNkaVZGWlRaWGN3V1hJM00wZHlWRGtyYUdScGN6TmxhRFptTkRCWVkzbExXbFFyUm5GSFVGTldlakZKTkFwTFlYaEpTM0ZSUzBzNFlWa3pNRkEwVkZabU5XTjRjbm94WlV3dlZYTTRZVXhMZWxKaWFXODFORUpXTjNkbVpWSk1OVkJZV2pKak0yaEhkakZXU2tORUNtUjFTVEZCZUVsd09USllaMVJPZFRGelN6Wm9jR1JGUkVFd1QxcHROakk0Tm1oVWMzRTFVMjFEZDNCRVJERkJVamRLV1ZoTFkwTjBjV3BxVG1FeGEzVUtOalpTVml0d1dXcDBZVmREYmsxdVRHZFBZMlp1VUZZMmNVMUZTSFZQZEc1aVVVRmhNblE0WW01QlVXWndZMEkzZUVGVlFYQmxNVU4wYW5WblpYaDNNUXBUV1VzMVlVeEhPR3hSTjNoaGJtRXdObWRqTVZCUVpraHVNbTlaZW5oR1YwOXFWVW93VWpaWFJFTTBRWGRMUmpGcFJVWmFXRFZoU1VwRFduWTVXVmRFQ2xnNE1qVXdjbGhJU2xaclIwZ3JkVU5RVlUxQ2RFUlRiR3RrTmsxcGVYTkRaMmRGUWtGS05FRk5SbkZLYTBWMWNVcExNRk56VFhSbE5ERlJPWFoxUzBnS1dUQldVbk55T0VacEwzbE9hbHBZYjFwT1Z6SjVjSFl4T0hKTGNDc3phWE5uWkdOWWMwaEZZbGhsTURCSmJFRmtTbVZUYjJwSFNXSXpTRzFIWW10SGFncDJWRUo0UW01MmJXd3hNM2RxVG1sbmJYSTFjRVY0WVU5eWJGSlFXbXhoVjJWS09YWmlaR3NyVUVKbmJYZElNVE5pVm5oT2RIZzBhRzlSTDNrNVJXZDVDbTExU3pOT1NIRXJiRUpxTm5wNlZYUXhMM05IWWtkdE4zQXlXVU41T1RCc2FWcENRWEpFZUZNMWN6VnBXRzlrWjBwcmRsbFdiRFZXUW1sSGRuaHpOVXdLUzJnNWNWRk5haXRpYUZOYVVXVjBVR1JsYkVkdE5VZHJWV1pDT0ZOSlVGUk9WMGhsTVc0emMxVm1PWEF6V2pZcmNsbE1lbTFSZG1ka01uVllVRmxtVVFvdk0weEdVelJsY0dWbGFtTldjREZxVjBVMGRsWkNjRmxGWkdSdWRUaGtjMWQwVnpkaGIybENTRkZHTVc5ME5GSXdTV1JrWjFONlN6RkRaejBLTFMwdExTMUZUa1FnVWxOQklGQlNTVlpCVkVVZ1MwVlpMUzB0TFMwSwogICAgdG9rZW46IDI0YWY1NzhmZjQ4ZWM2ZGUyM2NlNmFlYzUwZDliN2MzYzNlY2ZlZTI5NWU5NTViOGNlMzM5YjhlYWZkOGJhMjhiYTNiOWFkYjEzNzYyMGZlYzYxNTBlNTRjZWQ4ZjBiOTk4MDk4ZjVkYzY4ZjdjZGJiMmVjNTZmMDJiNzkyZDIxCg==\"\n }\n ]\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg31034?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg09076?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "dfd2ca0e-755a-46b4-9cf0-135471ae41e6", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ef17d9c2-4ed6-446c-96fb-43abf4621313", "Content-Type" : "application/json" }, "Response" : { "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "StatusCode" : "202", - "x-ms-correlation-request-id" : "371c5c49-2d0e-4c41-8ffd-100db4ef728b", - "Date" : "Fri, 08 Apr 2022 08:35:01 GMT", + "x-ms-correlation-request-id" : "2f5a6986-21c3-4fd1-a999-6f002cdaf6d1", + "Date" : "Mon, 25 Jul 2022 04:01:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083501Z:371c5c49-2d0e-4c41-8ffd-100db4ef728b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T040101Z:2f5a6986-21c3-4fd1-a999-6f002cdaf6d1", "Expires" : "-1", - "x-ms-request-id" : "371c5c49-2d0e-4c41-8ffd-100db4ef728b", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQUNTUkczMTAzNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" + "x-ms-request-id" : "2f5a6986-21c3-4fd1-a999-6f002cdaf6d1", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQUNTUkcwOTA3Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" }, "Exception" : null } ], - "variables" : [ "javaacsrg31034", "aks0179674f", "dns151968", "ap0573214" ] + "variables" : [ "javaacsrg09076", "aks259535ca", "dns239162", "ap0660837" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.testKubernetesClusterAzureRbac.json b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.testKubernetesClusterAzureRbac.json index 5c64e121054e..39c8d93ab627 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.testKubernetesClusterAzureRbac.json +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/resources/session-records/KubernetesClustersTests.testKubernetesClusterAzureRbac.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg89001?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg44974?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "cb51c6e0-c36c-455b-9cfb-b131eecd9ec5", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5d547b70-a9be-4e52-b6b4-d86e2e005af6", "Content-Type" : "application/json" }, "Response" : { @@ -14,311 +14,285 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "8c7bc636-3d8e-454d-b177-52fde014ff90", - "Date" : "Fri, 08 Apr 2022 08:29:43 GMT", + "x-ms-correlation-request-id" : "a7812bbf-f8b7-4dca-b29e-ede212a8e053", + "Date" : "Mon, 25 Jul 2022 03:54:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T082943Z:8c7bc636-3d8e-454d-b177-52fde014ff90", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035440Z:a7812bbf-f8b7-4dca-b29e-ede212a8e053", "Expires" : "-1", - "x-ms-request-id" : "8c7bc636-3d8e-454d-b177-52fde014ff90", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg89001\",\"name\":\"javaacsrg89001\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "a7812bbf-f8b7-4dca-b29e-ede212a8e053", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg44974\",\"name\":\"javaacsrg44974\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg89001/providers/Microsoft.ContainerService/managedClusters/aks23661e4d?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg44974/providers/Microsoft.ContainerService/managedClusters/aks15257a99?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "b6dea5d3-4aa0-43dc-9259-b55992858f84", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e12782c6-e489-47ba-80b2-d03f4af1ee2e", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "2255", + "content-length" : "2531", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "x-ms-ratelimit-remaining-subscription-writes" : "1198", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "59060edf-3c10-48bc-9798-81b530dbb26a", - "Date" : "Fri, 08 Apr 2022 08:29:55 GMT", + "x-ms-correlation-request-id" : "a8699906-ecf9-4b9f-8ade-df1560df7294", + "Date" : "Mon, 25 Jul 2022 03:54:59 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T082956Z:59060edf-3c10-48bc-9798-81b530dbb26a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035459Z:a8699906-ecf9-4b9f-8ade-df1560df7294", "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3911825c-e9be-4154-a371-48522de2154e?api-version=2016-03-30", - "x-ms-request-id" : "3911825c-e9be-4154-a371-48522de2154e", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg89001/providers/Microsoft.ContainerService/managedClusters/aks23661e4d\",\n \"location\": \"westus3\",\n \"name\": \"aks23661e4d\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns198113\",\n \"fqdn\": \"mp1dns198113-49f3f96e.hcp.westus3.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns198113-49f3f96e.portal.hcp.westus3.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap062265a\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v3\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg89001_aks23661e4d_westus3\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": null,\n \"adminUsers\": null,\n \"enableAzureRBAC\": true,\n \"tenantID\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": true,\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"09f0de91-eed1-40ec-8f21-49ad3986aac0\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7365899c-cde1-4783-ad2b-8c1c999fd373?api-version=2016-03-30", + "x-ms-request-id" : "7365899c-cde1-4783-ad2b-8c1c999fd373", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg44974/providers/Microsoft.ContainerService/managedClusters/aks15257a99\",\n \"location\": \"westus3\",\n \"name\": \"aks15257a99\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns898328\",\n \"fqdn\": \"mp1dns898328-fbff0525.hcp.westus3.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns898328-fbff0525.portal.hcp.westus3.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0049186\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v3\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg44974_aks15257a99_westus3\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": null,\n \"adminUsers\": null,\n \"enableAzureRBAC\": true,\n \"tenantID\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": true,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"7aa80571-6ab1-4463-8037-b470cdd5d9a4\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3911825c-e9be-4154-a371-48522de2154e?api-version=2016-03-30", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7365899c-cde1-4783-ad2b-8c1c999fd373?api-version=2016-03-30", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d84fb5a5-2928-4ff6-9c9a-9b1ba07c3ceb" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f4c8a31d-baaf-47ff-8fcc-f201af5f63f3" }, "Response" : { - "content-length" : "126", + "content-length" : "120", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "x-ms-correlation-request-id" : "feece07f-e88f-4de3-85b1-8c2de01f198f", - "Date" : "Fri, 08 Apr 2022 08:30:25 GMT", + "x-ms-correlation-request-id" : "96d70c5b-096a-4de8-ba13-b7a1972906ae", + "Date" : "Mon, 25 Jul 2022 03:55:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083026Z:feece07f-e88f-4de3-85b1-8c2de01f198f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035530Z:96d70c5b-096a-4de8-ba13-b7a1972906ae", "Expires" : "-1", - "x-ms-request-id" : "0775ec59-93d6-4ebf-8bd1-fe249b5cd654", - "Body" : "{\n \"name\": \"5c821139-bee9-5441-a371-48522de2154e\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:54.9033333Z\"\n }", + "x-ms-request-id" : "1e9a9b78-358f-4de5-a002-c258452bbb80", + "Body" : "{\n \"name\": \"9c896573-e1cd-8347-ad2b-8c1c999fd373\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:58.7Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3911825c-e9be-4154-a371-48522de2154e?api-version=2016-03-30", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7365899c-cde1-4783-ad2b-8c1c999fd373?api-version=2016-03-30", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "97ff585a-051d-4b46-ab8f-e1ac713b2d2f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0c3cd448-2e10-47b0-baae-9e1d0088cc98" }, "Response" : { - "content-length" : "126", + "content-length" : "120", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d4ac7ef-569d-49c9-acbe-a273d5e50556", - "Date" : "Fri, 08 Apr 2022 08:30:56 GMT", + "x-ms-correlation-request-id" : "3fafc3f8-d193-4a57-b949-764d14328a25", + "Date" : "Mon, 25 Jul 2022 03:55:59 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083056Z:8d4ac7ef-569d-49c9-acbe-a273d5e50556", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035600Z:3fafc3f8-d193-4a57-b949-764d14328a25", "Expires" : "-1", - "x-ms-request-id" : "01754c87-2be1-402b-aac1-681865eb512a", - "Body" : "{\n \"name\": \"5c821139-bee9-5441-a371-48522de2154e\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:54.9033333Z\"\n }", + "x-ms-request-id" : "a76c5805-4a49-45b0-8e45-8d3ad8731c8a", + "Body" : "{\n \"name\": \"9c896573-e1cd-8347-ad2b-8c1c999fd373\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:58.7Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3911825c-e9be-4154-a371-48522de2154e?api-version=2016-03-30", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7365899c-cde1-4783-ad2b-8c1c999fd373?api-version=2016-03-30", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "60d91a2f-503b-4ce2-81fd-f19b15f5824c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "cb3ed309-3ef4-40ca-84e2-770c07213a55" }, "Response" : { - "content-length" : "126", + "content-length" : "120", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "x-ms-correlation-request-id" : "4ead31fd-6bfb-471d-837f-9e6da8462173", - "Date" : "Fri, 08 Apr 2022 08:31:26 GMT", + "x-ms-correlation-request-id" : "56e2e90c-3cf4-4aa8-9f79-419ac05264c0", + "Date" : "Mon, 25 Jul 2022 03:56:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083127Z:4ead31fd-6bfb-471d-837f-9e6da8462173", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035630Z:56e2e90c-3cf4-4aa8-9f79-419ac05264c0", "Expires" : "-1", - "x-ms-request-id" : "5230721f-e267-43dd-9ff2-a9105680ee8f", - "Body" : "{\n \"name\": \"5c821139-bee9-5441-a371-48522de2154e\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:54.9033333Z\"\n }", + "x-ms-request-id" : "0a40fa6a-eb51-4a08-af85-fb2f0e848206", + "Body" : "{\n \"name\": \"9c896573-e1cd-8347-ad2b-8c1c999fd373\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:58.7Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3911825c-e9be-4154-a371-48522de2154e?api-version=2016-03-30", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7365899c-cde1-4783-ad2b-8c1c999fd373?api-version=2016-03-30", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "fc991030-ae9b-4e41-8c86-10969cef32ca" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7e9c7755-de45-4ac8-92a0-bbe99b7d71f7" }, "Response" : { - "content-length" : "126", + "content-length" : "120", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8cd34446-9698-4924-8be3-d68ead0daa08", - "Date" : "Fri, 08 Apr 2022 08:31:57 GMT", + "x-ms-correlation-request-id" : "e7b74e48-5ff8-49db-b1f4-fe625f8fd7ec", + "Date" : "Mon, 25 Jul 2022 03:57:00 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083157Z:8cd34446-9698-4924-8be3-d68ead0daa08", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035701Z:e7b74e48-5ff8-49db-b1f4-fe625f8fd7ec", "Expires" : "-1", - "x-ms-request-id" : "ea5cc502-f41e-465b-a6fc-58048a11e1b1", - "Body" : "{\n \"name\": \"5c821139-bee9-5441-a371-48522de2154e\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:54.9033333Z\"\n }", + "x-ms-request-id" : "b6932a24-f7e2-4965-89e3-5bc5167fa6f3", + "Body" : "{\n \"name\": \"9c896573-e1cd-8347-ad2b-8c1c999fd373\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:58.7Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3911825c-e9be-4154-a371-48522de2154e?api-version=2016-03-30", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7365899c-cde1-4783-ad2b-8c1c999fd373?api-version=2016-03-30", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e3358af8-f694-46cb-a9de-3d0dae3475bf" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7ff00847-96eb-48ea-aa47-18c987fe0d18" }, "Response" : { - "content-length" : "126", + "content-length" : "120", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "x-ms-correlation-request-id" : "7dedaaf2-b171-4720-a374-d5321f6b33b3", - "Date" : "Fri, 08 Apr 2022 08:32:27 GMT", + "x-ms-correlation-request-id" : "5480f159-387d-4f57-a208-f869c491cdcc", + "Date" : "Mon, 25 Jul 2022 03:57:31 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083227Z:7dedaaf2-b171-4720-a374-d5321f6b33b3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035731Z:5480f159-387d-4f57-a208-f869c491cdcc", "Expires" : "-1", - "x-ms-request-id" : "d901d9e9-2a59-4ab3-9143-e83f1c3a7c7b", - "Body" : "{\n \"name\": \"5c821139-bee9-5441-a371-48522de2154e\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:54.9033333Z\"\n }", + "x-ms-request-id" : "b31362b2-2fab-47e5-bc50-bfeb2483c3d1", + "Body" : "{\n \"name\": \"9c896573-e1cd-8347-ad2b-8c1c999fd373\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:58.7Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3911825c-e9be-4154-a371-48522de2154e?api-version=2016-03-30", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7365899c-cde1-4783-ad2b-8c1c999fd373?api-version=2016-03-30", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "98e81685-e241-48ea-87b7-73b5885af3f8" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "62401b86-fcba-4a30-84e6-c8851a3adf2f" }, "Response" : { - "content-length" : "126", + "content-length" : "120", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "x-ms-correlation-request-id" : "605f69a6-9360-4dcd-b833-f075a728c293", - "Date" : "Fri, 08 Apr 2022 08:32:57 GMT", + "x-ms-correlation-request-id" : "2e968fe3-d19e-4708-bbab-dcc321a4740c", + "Date" : "Mon, 25 Jul 2022 03:58:00 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083258Z:605f69a6-9360-4dcd-b833-f075a728c293", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035801Z:2e968fe3-d19e-4708-bbab-dcc321a4740c", "Expires" : "-1", - "x-ms-request-id" : "177c13b0-bf98-41f4-a630-a4aae9b3dc2c", - "Body" : "{\n \"name\": \"5c821139-bee9-5441-a371-48522de2154e\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:54.9033333Z\"\n }", + "x-ms-request-id" : "b0d62467-4373-4051-af85-87fe8bfa97fa", + "Body" : "{\n \"name\": \"9c896573-e1cd-8347-ad2b-8c1c999fd373\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:58.7Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3911825c-e9be-4154-a371-48522de2154e?api-version=2016-03-30", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7365899c-cde1-4783-ad2b-8c1c999fd373?api-version=2016-03-30", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e1ea3b11-85e8-4403-bee0-1c957dbd7531" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ee3fdfb3-6b87-458c-a27d-ae095670b100" }, "Response" : { - "content-length" : "126", + "content-length" : "120", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "x-ms-correlation-request-id" : "da735485-4889-4284-b56a-1a1b5ea5f082", - "Date" : "Fri, 08 Apr 2022 08:33:28 GMT", + "x-ms-correlation-request-id" : "b8c07a15-2863-4295-b35c-63994c286ea2", + "Date" : "Mon, 25 Jul 2022 03:58:31 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083328Z:da735485-4889-4284-b56a-1a1b5ea5f082", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035832Z:b8c07a15-2863-4295-b35c-63994c286ea2", "Expires" : "-1", - "x-ms-request-id" : "de3e520f-ce4f-43d2-ac43-a8f0bb010af8", - "Body" : "{\n \"name\": \"5c821139-bee9-5441-a371-48522de2154e\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:54.9033333Z\"\n }", + "x-ms-request-id" : "55754d68-3ec2-466c-8493-aa28ecba8209", + "Body" : "{\n \"name\": \"9c896573-e1cd-8347-ad2b-8c1c999fd373\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-07-25T03:54:58.7Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3911825c-e9be-4154-a371-48522de2154e?api-version=2016-03-30", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7365899c-cde1-4783-ad2b-8c1c999fd373?api-version=2016-03-30", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "f61acf68-012c-4bd1-8e80-f4bdfef86b91" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "eba74339-b1c5-4610-8586-367633e6ebd4" }, "Response" : { - "content-length" : "126", + "content-length" : "164", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "x-ms-correlation-request-id" : "332333d2-edc9-4485-a81c-7d96e5861c85", - "Date" : "Fri, 08 Apr 2022 08:33:58 GMT", + "x-ms-correlation-request-id" : "a208df3d-3eb0-4dda-a5aa-bbbc6064b36d", + "Date" : "Mon, 25 Jul 2022 03:59:02 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083359Z:332333d2-edc9-4485-a81c-7d96e5861c85", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035902Z:a208df3d-3eb0-4dda-a5aa-bbbc6064b36d", "Expires" : "-1", - "x-ms-request-id" : "088ecd11-5dfe-42b4-949d-da62a31d6ac0", - "Body" : "{\n \"name\": \"5c821139-bee9-5441-a371-48522de2154e\",\n \"status\": \"InProgress\",\n \"startTime\": \"2022-04-08T08:29:54.9033333Z\"\n }", + "x-ms-request-id" : "6a75ed99-78cb-43ae-92d3-4e48f5c18645", + "Body" : "{\n \"name\": \"9c896573-e1cd-8347-ad2b-8c1c999fd373\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-07-25T03:54:58.7Z\",\n \"endTime\": \"2022-07-25T03:58:36.4909455Z\"\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3911825c-e9be-4154-a371-48522de2154e?api-version=2016-03-30", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg44974/providers/Microsoft.ContainerService/managedClusters/aks15257a99?api-version=2022-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "7af761ad-8a54-404a-b92e-800a0e727051" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4b5cb4ed-1024-4528-acf7-07abd30df2f0" }, "Response" : { - "content-length" : "170", + "content-length" : "3173", "Server" : "nginx", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c9cae17-5a93-4dcb-81b1-3f1664af2a9d", - "Date" : "Fri, 08 Apr 2022 08:34:28 GMT", + "x-ms-correlation-request-id" : "17802e8f-9ac4-49ee-a738-0bb143b72abd", + "Date" : "Mon, 25 Jul 2022 03:59:03 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083429Z:6c9cae17-5a93-4dcb-81b1-3f1664af2a9d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035903Z:17802e8f-9ac4-49ee-a738-0bb143b72abd", "Expires" : "-1", - "x-ms-request-id" : "3ec2352b-0455-4608-95f6-18618b865e0c", - "Body" : "{\n \"name\": \"5c821139-bee9-5441-a371-48522de2154e\",\n \"status\": \"Succeeded\",\n \"startTime\": \"2022-04-08T08:29:54.9033333Z\",\n \"endTime\": \"2022-04-08T08:34:16.0512661Z\"\n }", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javaacsrg89001/providers/Microsoft.ContainerService/managedClusters/aks23661e4d?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "f8d02dd0-6368-46d2-90f7-383d6a249d89" - }, - "Response" : { - "content-length" : "2897", - "Server" : "nginx", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bae23dca-5743-431f-92f2-3d0fbf4bfd3a", - "Date" : "Fri, 08 Apr 2022 08:34:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083430Z:bae23dca-5743-431f-92f2-3d0fbf4bfd3a", - "Expires" : "-1", - "x-ms-request-id" : "7cedc1e5-40e4-411a-8118-66eed62edf4e", - "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg89001/providers/Microsoft.ContainerService/managedClusters/aks23661e4d\",\n \"location\": \"westus3\",\n \"name\": \"aks23661e4d\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": \"mp1dns198113\",\n \"fqdn\": \"mp1dns198113-49f3f96e.hcp.westus3.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns198113-49f3f96e.portal.hcp.westus3.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap062265a\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v3\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.9\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.03.23\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg89001_aks23661e4d_westus3\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg89001_aks23661e4d_westus3/providers/Microsoft.Network/publicIPAddresses/a36c35e1-e3ce-467b-9c72-d59bbb367d73\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": null,\n \"adminUsers\": null,\n \"enableAzureRBAC\": true,\n \"tenantID\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg89001_aks23661e4d_westus3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks23661e4d-agentpool\",\n \"clientId\": \"4858d218-4da8-4378-b476-632854b15688\",\n \"objectId\": \"e293bc85-dbb3-4be4-93ee-0ca26ec61a1e\"\n }\n },\n \"disableLocalAccounts\": true,\n \"securityProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"09f0de91-eed1-40ec-8f21-49ad3986aac0\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", + "x-ms-request-id" : "780ed519-0953-46af-b17e-7b5657f5ae84", + "Body" : "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg44974/providers/Microsoft.ContainerService/managedClusters/aks15257a99\",\n \"location\": \"westus3\",\n \"name\": \"aks15257a99\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.11\",\n \"currentKubernetesVersion\": \"1.22.11\",\n \"dnsPrefix\": \"mp1dns898328\",\n \"fqdn\": \"mp1dns898328-fbff0525.hcp.westus3.azmk8s.io\",\n \"azurePortalFQDN\": \"mp1dns898328-fbff0525.portal.hcp.westus3.azmk8s.io\",\n \"agentPoolProfiles\": [\n {\n \"name\": \"ap0049186\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2_v3\",\n \"osDiskSizeGB\": 30,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.11\",\n \"currentOrchestratorVersion\": \"1.22.11\",\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804containerd-2022.07.04\",\n \"enableFIPS\": false\n }\n ],\n \"servicePrincipalProfile\": {\n \"clientId\": \"msi\"\n },\n \"nodeResourceGroup\": \"MC_javaacsrg44974_aks15257a99_westus3\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_javaacsrg44974_aks15257a99_westus3/providers/Microsoft.Network/publicIPAddresses/5d591464-b4df-4463-9ed8-e460d815576c\"\n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": null,\n \"adminUsers\": null,\n \"enableAzureRBAC\": true,\n \"tenantID\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_javaacsrg44974_aks15257a99_westus3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aks15257a99-agentpool\",\n \"clientId\": \"08f2db5d-6893-45fb-92ff-80f858dfddbf\",\n \"objectId\": \"39530ecf-aba9-40fa-9645-1c142f4a194c\"\n }\n },\n \"disableLocalAccounts\": true,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\": \"7aa80571-6ab1-4463-8037-b470cdd5d9a4\",\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg89001?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javaacsrg44974?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a3a81d3c-26a7-4ac7-a950-d3b7bd843292", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.17.0-beta.1 (11.0.15.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ba07c3b3-bf28-4c65-ac5e-bb3cc08ed1bd", "Content-Type" : "application/json" }, "Response" : { @@ -327,17 +301,17 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "StatusCode" : "202", - "x-ms-correlation-request-id" : "34549042-9048-4dd8-996d-3162e17ed6a9", - "Date" : "Fri, 08 Apr 2022 08:34:32 GMT", + "x-ms-correlation-request-id" : "af064d14-07f5-47b3-9282-4a78d2bac733", + "Date" : "Mon, 25 Jul 2022 03:59:06 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-routing-request-id" : "JAPANEAST:20220408T083433Z:34549042-9048-4dd8-996d-3162e17ed6a9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220725T035906Z:af064d14-07f5-47b3-9282-4a78d2bac733", "Expires" : "-1", - "x-ms-request-id" : "34549042-9048-4dd8-996d-3162e17ed6a9", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQUNTUkc4OTAwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" + "x-ms-request-id" : "af064d14-07f5-47b3-9282-4a78d2bac733", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQUNTUkc0NDk3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" }, "Exception" : null } ], - "variables" : [ "javaacsrg89001", "aks23661e4d", "dns198113", "ap062265a" ] + "variables" : [ "javaacsrg44974", "aks15257a99", "dns898328", "ap0049186" ] } \ No newline at end of file From 019bd3984a2b490b389c46247b57585f99338663 Mon Sep 17 00:00:00 2001 From: xiaofeicao Date: Mon, 25 Jul 2022 13:46:17 +0800 Subject: [PATCH 4/7] changelog --- .../azure-resourcemanager-containerservice/CHANGELOG.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/CHANGELOG.md b/sdk/resourcemanager/azure-resourcemanager-containerservice/CHANGELOG.md index 12a3e7f1d777..f9f335facdad 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/CHANGELOG.md +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/CHANGELOG.md @@ -2,13 +2,11 @@ ## 2.17.0-beta.1 (Unreleased) -### Features Added - -### Breaking Changes +### Other Changes -### Bugs Fixed +#### Dependency Updates -### Other Changes +- Updated `api-version` to `2022-06-01`. ## 2.16.0 (2022-06-24) From fc03d8f3df2a0f8fcbae09a26ffc6e33ec6dd1ce Mon Sep 17 00:00:00 2001 From: xiaofeicao Date: Mon, 25 Jul 2022 14:00:25 +0800 Subject: [PATCH 5/7] add revapi.skip=true and change log for breaking change --- .../azure-resourcemanager-containerservice/CHANGELOG.md | 6 ++++++ .../azure-resourcemanager-containerservice/pom.xml | 1 + 2 files changed, 7 insertions(+) diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/CHANGELOG.md b/sdk/resourcemanager/azure-resourcemanager-containerservice/CHANGELOG.md index f9f335facdad..fa87e9ff5aa0 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/CHANGELOG.md +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/CHANGELOG.md @@ -2,6 +2,12 @@ ## 2.17.0-beta.1 (Unreleased) +### Breaking Changes + +- Replaced property `azureDefender` with `defender` of type `ManagedClusterSecurityProfileDefender` + in `ManagedClusterSecurityProfileDefender`. +- Removed class `ManagedClusterSecurityProfileAzureDefender`. + ### Other Changes #### Dependency Updates diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/pom.xml b/sdk/resourcemanager/azure-resourcemanager-containerservice/pom.xml index fefc914cc766..9203ad011fbd 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/pom.xml @@ -40,6 +40,7 @@ --add-opens com.azure.resourcemanager.containerservice/com.azure.resourcemanager.containerservice=ALL-UNNAMED --add-opens com.azure.resourcemanager.containerservice/com.azure.resourcemanager.containerservice.implementation=ALL-UNNAMED + true From 454fcd5cd2cb43527356b8baac6ff1d481a460cf Mon Sep 17 00:00:00 2001 From: xiaofeicao Date: Mon, 25 Jul 2022 14:28:00 +0800 Subject: [PATCH 6/7] related session records --- ...sterTests.testManageKubernetesCluster.json | 8 ++--- ...bernetesClusterWithAdvancedNetworking.json | 8 ++--- ...rceManagerTests.testKubernetesCluster.json | 36 +++++++++---------- ...s.testKubernetesClusterAadIntegration.json | 28 +++++++-------- ...etesCniTests.testKubernetesClusterCni.json | 8 ++--- ...ts.canCreateClusterWithDiskEncryption.json | 4 +-- ...ivateLinkTests.testPrivateEndpointAKS.json | 12 +++---- 7 files changed, 52 insertions(+), 52 deletions(-) diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/KubernetesClusterTests.testManageKubernetesCluster.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/KubernetesClusterTests.testManageKubernetesCluster.json index 64608bd20bde..f9d0c487f9f2 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/KubernetesClusterTests.testManageKubernetesCluster.json +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/KubernetesClusterTests.testManageKubernetesCluster.json @@ -27,7 +27,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks0760306/providers/Microsoft.ContainerService/managedClusters/akssample57451e0305333?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks0760306/providers/Microsoft.ContainerService/managedClusters/akssample57451e0305333?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "e4111161-3890-4661-8062-75c3ff6c6d1b", @@ -315,7 +315,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks0760306/providers/Microsoft.ContainerService/managedClusters/akssample57451e0305333?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks0760306/providers/Microsoft.ContainerService/managedClusters/akssample57451e0305333?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "66270b29-375f-422d-a7b4-ff5b0775569b" @@ -341,7 +341,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks0760306/providers/Microsoft.ContainerService/managedClusters/akssample57451e0305333?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks0760306/providers/Microsoft.ContainerService/managedClusters/akssample57451e0305333?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "4049bae2-ae06-4a6a-86a7-0ce54b885655", @@ -759,7 +759,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks0760306/providers/Microsoft.ContainerService/managedClusters/akssample57451e0305333?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks0760306/providers/Microsoft.ContainerService/managedClusters/akssample57451e0305333?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "8a8f6772-1233-4340-9677-9dbc40f2b17c" diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/KubernetesClusterTests.testManageKubernetesClusterWithAdvancedNetworking.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/KubernetesClusterTests.testManageKubernetesClusterWithAdvancedNetworking.json index 944324cf5018..3ed6cc01aa74 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/KubernetesClusterTests.testManageKubernetesClusterWithAdvancedNetworking.json +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/KubernetesClusterTests.testManageKubernetesClusterWithAdvancedNetworking.json @@ -144,7 +144,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks83242b2/providers/Microsoft.ContainerService/managedClusters/akssample442464fa9146f?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks83242b2/providers/Microsoft.ContainerService/managedClusters/akssample442464fa9146f?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "a0922c0a-8b58-452b-b310-1605f6c7b0ac", @@ -432,7 +432,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks83242b2/providers/Microsoft.ContainerService/managedClusters/akssample442464fa9146f?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks83242b2/providers/Microsoft.ContainerService/managedClusters/akssample442464fa9146f?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "621d372e-3791-4638-be85-b40e08089a07" @@ -458,7 +458,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks83242b2/providers/Microsoft.ContainerService/managedClusters/akssample442464fa9146f?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks83242b2/providers/Microsoft.ContainerService/managedClusters/akssample442464fa9146f?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "40c41dcb-7674-49a7-927d-053843a4482c", @@ -798,7 +798,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks83242b2/providers/Microsoft.ContainerService/managedClusters/akssample442464fa9146f?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaks83242b2/providers/Microsoft.ContainerService/managedClusters/akssample442464fa9146f?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "8be1a23c-77b3-49c7-9bab-76b65d878b34" diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testKubernetesCluster.json b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testKubernetesCluster.json index 7568a4cbfdf2..aa8b41c51ce8 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testKubernetesCluster.json +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testKubernetesCluster.json @@ -1,7 +1,7 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/managedClusters?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/managedClusters?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "6f7db7d0-47a3-435f-aa47-05d0f5ff6765", @@ -28,7 +28,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/managedClusters?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/managedClusters?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "083b3afb-1ef8-4c84-82ad-99e9fd032839", @@ -81,7 +81,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "2627d20e-94de-4ab4-b189-f19a4c6c07a9", @@ -265,7 +265,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "806047fa-103e-4659-810c-33e616865966" @@ -291,7 +291,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e/listClusterUserCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e/listClusterUserCredential?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "55d67267-4bbb-4f19-8aa2-56f2322183ae", @@ -318,7 +318,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e/listClusterAdminCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e/listClusterAdminCredential?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "7d105e78-fa98-4a7a-aaef-728fe1238385", @@ -345,7 +345,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "65545be4-435f-4157-b617-8066e0c8d1aa", @@ -372,7 +372,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e/listClusterAdminCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e/listClusterAdminCredential?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "d04b382a-78f7-45c1-b021-5c6387976b47", @@ -399,7 +399,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e/listClusterUserCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e/listClusterUserCredential?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "ac18bd03-4165-4459-bc8b-57fd1d57a04e", @@ -426,7 +426,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/managedClusters?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/managedClusters?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "c0b49b0a-b733-46c5-8e93-fb8f5986ae52", @@ -453,7 +453,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/managedClusters?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/managedClusters?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "02bcabca-f341-4fb9-b3fe-39c684247294", @@ -480,7 +480,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "0d1e2780-e211-4186-b41a-c1ec239148ff", @@ -507,7 +507,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "80872f84-5263-4d63-8ebc-83de4243034f", @@ -534,7 +534,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "22cf7d74-9100-4553-9a3a-65445190602c", @@ -718,7 +718,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "1c1b238b-3325-4593-a2f9-1ece14e29276" @@ -744,7 +744,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e/listClusterAdminCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e/listClusterAdminCredential?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "65d4bdf0-de29-4227-a5ad-8707b936b141", @@ -771,7 +771,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e/listClusterUserCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e/listClusterUserCredential?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "6e39d12d-631a-43f5-b99e-061e355d321f", @@ -798,7 +798,7 @@ "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aks57554egroup/providers/Microsoft.ContainerService/managedClusters/aks57554e?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "eece328c-17a1-4283-a363-508cee33947f", diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/KubernetesAadTests.testKubernetesClusterAadIntegration.json b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/KubernetesAadTests.testKubernetesClusterAadIntegration.json index e7f240df3764..c63a478d62de 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/KubernetesAadTests.testKubernetesClusterAadIntegration.json +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/KubernetesAadTests.testKubernetesClusterAadIntegration.json @@ -120,7 +120,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "92d7d6e4-4f97-4ae2-a047-272f70f726ed", @@ -356,7 +356,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "d42d42d9-8dee-4a48-b03d-7caa783d755e" @@ -382,7 +382,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9/listClusterUserCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9/listClusterUserCredential?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "ce6e3cc9-3b63-405e-94fe-f4b7f0a982d1", @@ -409,7 +409,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "73c8c63f-46b9-4aa3-9ef2-92f090588c3f", @@ -515,7 +515,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "ed05cc92-8815-4483-9d21-0ff821d211cd" @@ -541,7 +541,7 @@ "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "dd6b7b2e-3a48-428b-90bc-debd09c17b3d", @@ -1088,7 +1088,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "ca9c91bd-113b-4546-b79e-538413de3c10", @@ -1558,7 +1558,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "18033c56-e8b8-4904-bc54-0279f18125f8" @@ -1584,7 +1584,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "063be782-6fb3-45e8-a33a-d066a6938a7b", @@ -1716,7 +1716,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "5d8ef4fe-45eb-48cd-8768-a085cc33846c" @@ -1742,7 +1742,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9/listClusterUserCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9/listClusterUserCredential?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "02a499c4-591e-4886-8e0e-e9623bbf687c", @@ -1769,7 +1769,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "f33ff730-8adc-4567-b54d-8da1f58717f2", @@ -1901,7 +1901,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "ba93cd07-a69d-435d-854d-8dc803124cd9" @@ -1927,7 +1927,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9/listClusterUserCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg59907/providers/Microsoft.ContainerService/managedClusters/aks773856c9/listClusterUserCredential?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", "x-ms-client-request-id" : "670dcdce-3e3c-4556-a37b-1f6e11ff5a66", diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/KubernetesCniTests.testKubernetesClusterCni.json b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/KubernetesCniTests.testKubernetesClusterCni.json index baeedd42cdb1..9a8aac1e2e58 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/KubernetesCniTests.testKubernetesClusterCni.json +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/KubernetesCniTests.testKubernetesClusterCni.json @@ -115,7 +115,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg30673/providers/Microsoft.ContainerService/managedClusters/aks564242dd?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg30673/providers/Microsoft.ContainerService/managedClusters/aks564242dd?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.5.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "f09a27c2-0c26-43d9-9380-b4e7093b19cb", @@ -299,7 +299,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg30673/providers/Microsoft.ContainerService/managedClusters/aks564242dd?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg30673/providers/Microsoft.ContainerService/managedClusters/aks564242dd?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "9bbab3c8-d3c6-4541-a0b5-12b74ebe26d3" @@ -325,7 +325,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg30673/providers/Microsoft.ContainerService/managedClusters/aks564242dd/listClusterUserCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg30673/providers/Microsoft.ContainerService/managedClusters/aks564242dd/listClusterUserCredential?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.5.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "62b6678c-3fd1-4917-9b6c-f4c13a188c93", @@ -352,7 +352,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg30673/providers/Microsoft.ContainerService/managedClusters/aks564242dd/listClusterAdminCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg30673/providers/Microsoft.ContainerService/managedClusters/aks564242dd/listClusterAdminCredential?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.5.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "fc0a088e-7f55-41ff-ad73-694a55242dd1", diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/KubernetesEncryptionTests.canCreateClusterWithDiskEncryption.json b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/KubernetesEncryptionTests.canCreateClusterWithDiskEncryption.json index 48193f1ab84c..da383693a848 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/KubernetesEncryptionTests.canCreateClusterWithDiskEncryption.json +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/KubernetesEncryptionTests.canCreateClusterWithDiskEncryption.json @@ -495,7 +495,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01544/providers/Microsoft.ContainerService/managedClusters/aks44609582?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01544/providers/Microsoft.ContainerService/managedClusters/aks44609582?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", "x-ms-client-request-id" : "a2b2f767-ac74-49f1-95b6-dc47bfa9ade9", @@ -783,7 +783,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01544/providers/Microsoft.ContainerService/managedClusters/aks44609582?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg01544/providers/Microsoft.ContainerService/managedClusters/aks44609582?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", "x-ms-client-request-id" : "b4248505-aecb-420e-ae57-f92ec8c3fd47" diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/PrivateLinkTests.testPrivateEndpointAKS.json b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/PrivateLinkTests.testPrivateEndpointAKS.json index 088eda6c6a26..f0d03026cd92 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/PrivateLinkTests.testPrivateEndpointAKS.json +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/PrivateLinkTests.testPrivateEndpointAKS.json @@ -27,7 +27,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg26720/providers/Microsoft.ContainerService/managedClusters/aks08596?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg26720/providers/Microsoft.ContainerService/managedClusters/aks08596?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "beb79570-84c2-4d48-8358-616599b539a1", @@ -419,7 +419,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg26720/providers/Microsoft.ContainerService/managedClusters/aks08596?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg26720/providers/Microsoft.ContainerService/managedClusters/aks08596?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "5fb8abd2-186e-4874-a296-68f9d5b028c8" @@ -445,7 +445,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg26720/providers/Microsoft.ContainerService/managedClusters/aks08596/listClusterUserCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg26720/providers/Microsoft.ContainerService/managedClusters/aks08596/listClusterUserCredential?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "519175ed-5b6f-4c0d-9003-55c24b7af1d2", @@ -472,7 +472,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg26720/providers/Microsoft.ContainerService/managedClusters/aks08596/listClusterAdminCredential?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg26720/providers/Microsoft.ContainerService/managedClusters/aks08596/listClusterAdminCredential?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "240f4883-1e3d-439d-a4b2-7472379442f6", @@ -499,7 +499,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg26720/providers/Microsoft.ContainerService/managedClusters/aks08596/privateLinkResources?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg26720/providers/Microsoft.ContainerService/managedClusters/aks08596/privateLinkResources?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "7bbe5f55-c43e-4f04-8461-654c7f136551", @@ -526,7 +526,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg26720/providers/Microsoft.ContainerService/managedClusters/aks08596/privateEndpointConnections?api-version=2022-04-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg26720/providers/Microsoft.ContainerService/managedClusters/aks08596/privateEndpointConnections?api-version=2022-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerservice/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "0cda42de-5a93-4379-9c45-5266619cb74e", From 83af06ec1e8f5fb2acff08a12e1bde0ed8a4727f Mon Sep 17 00:00:00 2001 From: xiaofeicao Date: Mon, 25 Jul 2022 14:49:40 +0800 Subject: [PATCH 7/7] fix changelog --- .../azure-resourcemanager-containerservice/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/CHANGELOG.md b/sdk/resourcemanager/azure-resourcemanager-containerservice/CHANGELOG.md index fa87e9ff5aa0..28d21b6c97a2 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/CHANGELOG.md +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/CHANGELOG.md @@ -5,7 +5,7 @@ ### Breaking Changes - Replaced property `azureDefender` with `defender` of type `ManagedClusterSecurityProfileDefender` - in `ManagedClusterSecurityProfileDefender`. + in `ManagedClusterSecurityProfile`. - Removed class `ManagedClusterSecurityProfileAzureDefender`. ### Other Changes