Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# Release History

## 2.60.0-beta.1 (Unreleased)

### Features Added

### Breaking Changes
## 2.60.0-beta.1 (2026-04-21)

### Bugs Fixed

- Fixed bug that `nodeImageVersion` was not settable in `ManagedClusterAgentPoolProfileProperties`.

### Other Changes

#### Dependency Updates

- Updated `api-version` to `2026-02-02-preview`.

## 2.59.0 (2026-04-20)

### Other Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ For documentation on how to use this package, please see [Azure Management Libra
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-containerservice</artifactId>
<version>2.59.0</version>
<version>2.60.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@

--add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED
</javaModulesSurefireArgLine>
<revapi.skip>true</revapi.skip>
</properties>

<developers>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,122 @@ SyncPoller<PollResult<Void>, Void> beginAbortLatestOperation(String resourceGrou
@ServiceMethod(returns = ReturnType.SINGLE)
void abortLatestOperation(String resourceGroupName, String resourceName, String agentPoolName, Context context);

/**
* Completes the upgrade of an agent pool.
*
* Completes the upgrade operation for the specified agent pool.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the managed cluster resource.
* @param agentPoolName The name of the agent pool.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @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.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono<Response<Flux<ByteBuffer>>> completeUpgradeWithResponseAsync(String resourceGroupName, String resourceName,
String agentPoolName);

/**
* Completes the upgrade of an agent pool.
*
* Completes the upgrade operation for the specified agent pool.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the managed cluster resource.
* @param agentPoolName The name of the agent pool.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @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.
* @return the {@link PollerFlux} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
PollerFlux<PollResult<Void>, Void> beginCompleteUpgradeAsync(String resourceGroupName, String resourceName,
String agentPoolName);

/**
* Completes the upgrade of an agent pool.
*
* Completes the upgrade operation for the specified agent pool.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the managed cluster resource.
* @param agentPoolName The name of the agent pool.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @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.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller<PollResult<Void>, Void> beginCompleteUpgrade(String resourceGroupName, String resourceName,
String agentPoolName);

/**
* Completes the upgrade of an agent pool.
*
* Completes the upgrade operation for the specified agent pool.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the managed cluster resource.
* @param agentPoolName The name of the agent pool.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @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.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller<PollResult<Void>, Void> beginCompleteUpgrade(String resourceGroupName, String resourceName,
String agentPoolName, Context context);

/**
* Completes the upgrade of an agent pool.
*
* Completes the upgrade operation for the specified agent pool.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the managed cluster resource.
* @param agentPoolName The name of the agent pool.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @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.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono<Void> completeUpgradeAsync(String resourceGroupName, String resourceName, String agentPoolName);

/**
* Completes the upgrade of an agent pool.
*
* Completes the upgrade operation for the specified agent pool.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the managed cluster resource.
* @param agentPoolName The name of the agent pool.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @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.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void completeUpgrade(String resourceGroupName, String resourceName, String agentPoolName);

/**
* Completes the upgrade of an agent pool.
*
* Completes the upgrade operation for the specified agent pool.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the managed cluster resource.
* @param agentPoolName The name of the agent pool.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @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.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void completeUpgrade(String resourceGroupName, String resourceName, String agentPoolName, Context context);

/**
* Deletes specific machines in an agent pool.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,20 +95,62 @@ public interface ContainerServiceManagementClient {
*/
SnapshotsClient getSnapshots();

/**
* Gets the ManagedClusterSnapshotsClient object to access its operations.
*
* @return the ManagedClusterSnapshotsClient object.
*/
ManagedClusterSnapshotsClient getManagedClusterSnapshots();

/**
* Gets the TrustedAccessRoleBindingsClient object to access its operations.
*
* @return the TrustedAccessRoleBindingsClient object.
*/
TrustedAccessRoleBindingsClient getTrustedAccessRoleBindings();

/**
* Gets the LoadBalancersClient object to access its operations.
*
* @return the LoadBalancersClient object.
*/
LoadBalancersClient getLoadBalancers();

/**
* Gets the IdentityBindingsClient object to access its operations.
*
* @return the IdentityBindingsClient object.
*/
IdentityBindingsClient getIdentityBindings();

/**
* Gets the JWTAuthenticatorsClient object to access its operations.
*
* @return the JWTAuthenticatorsClient object.
*/
JWTAuthenticatorsClient getJWTAuthenticators();

/**
* Gets the MeshMembershipsClient object to access its operations.
*
* @return the MeshMembershipsClient object.
*/
MeshMembershipsClient getMeshMemberships();

/**
* Gets the OperationsClient object to access its operations.
*
* @return the OperationsClient object.
*/
OperationsClient getOperations();

/**
* Gets the OperationStatusResultsClient object to access its operations.
*
* @return the OperationStatusResultsClient object.
*/
OperationStatusResultsClient getOperationStatusResults();

/**
* Gets the PrivateLinkResourcesClient object to access its operations.
*
Expand All @@ -129,4 +171,11 @@ public interface ContainerServiceManagementClient {
* @return the TrustedAccessRolesClient object.
*/
TrustedAccessRolesClient getTrustedAccessRoles();

/**
* Gets the VmSkusClient object to access its operations.
*
* @return the VmSkusClient object.
*/
VmSkusClient getVmSkus();
}
Loading
Loading