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,14 +1,60 @@
# Release History

## 1.3.0-beta.3 (Unreleased)
## 1.3.0-beta.3 (2026-02-25)

### Features Added
- Azure Resource Manager Container Service Fleet client library for Java. This package contains Microsoft Azure SDK for Container Service Fleet Management SDK. Azure Kubernetes Fleet Manager api client. Package api-version 2025-08-01-preview. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Breaking Changes

### Bugs Fixed
#### `models.FleetUpdateStrategies` was modified

* `listByFleet(java.lang.String,java.lang.String,com.azure.core.util.Context)` was removed

#### `models.Fleets` was modified

* `list(com.azure.core.util.Context)` was removed

#### `models.FleetMembers` was modified

* `listByFleet(java.lang.String,java.lang.String,com.azure.core.util.Context)` was removed

#### `models.Gates` was modified

* `listByFleet(java.lang.String,java.lang.String,com.azure.core.util.Context)` was removed

#### `models.UpdateRuns` was modified

* `listByFleet(java.lang.String,java.lang.String,com.azure.core.util.Context)` was removed

#### `models.AutoUpgradeProfiles` was modified

* `listByFleet(java.lang.String,java.lang.String,com.azure.core.util.Context)` was removed

### Features Added

#### `models.FleetUpdateStrategies` was modified

* `listByFleet(java.lang.String,java.lang.String,java.lang.Integer,java.lang.String,com.azure.core.util.Context)` was added

#### `models.Fleets` was modified

* `list(java.lang.Integer,java.lang.String,com.azure.core.util.Context)` was added

#### `models.FleetMembers` was modified

* `listByFleet(java.lang.String,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,com.azure.core.util.Context)` was added

#### `models.Gates` was modified

* `listByFleet(java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.String,com.azure.core.util.Context)` was added

#### `models.UpdateRuns` was modified

* `listByFleet(java.lang.String,java.lang.String,java.lang.Integer,java.lang.String,com.azure.core.util.Context)` was added

#### `models.AutoUpgradeProfiles` was modified

### Other Changes
* `listByFleet(java.lang.String,java.lang.String,java.lang.Integer,java.lang.String,com.azure.core.util.Context)` was added

## 1.3.0-beta.2 (2025-12-03)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-containerservicefleet</artifactId>
<version>1.3.0-beta.2</version>
<version>1.3.0-beta.3</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public final class AutoUpgradeProfilesListByFleetSamples {
*/
public static void listsTheAutoUpgradeProfileResourcesByFleet(
com.azure.resourcemanager.containerservicefleet.ContainerServiceFleetManager manager) {
manager.autoUpgradeProfiles().listByFleet("rg1", "fleet1", com.azure.core.util.Context.NONE);
manager.autoUpgradeProfiles().listByFleet("rg1", "fleet1", null, null, com.azure.core.util.Context.NONE);
}

/*
Expand All @@ -247,7 +247,7 @@ public final class AutoUpgradeProfilesListByFleetSamples {
*/
public static void listsTheAutoUpgradeProfileResourcesByFleetGeneratedByMaximumSetRule(
com.azure.resourcemanager.containerservicefleet.ContainerServiceFleetManager manager) {
manager.autoUpgradeProfiles().listByFleet("rgfleets", "fleet1", com.azure.core.util.Context.NONE);
manager.autoUpgradeProfiles().listByFleet("rgfleets", "fleet1", null, null, com.azure.core.util.Context.NONE);
}
}
```
Expand Down Expand Up @@ -589,7 +589,7 @@ public final class FleetMembersListByFleetSamples {
*/
public static void listsTheMembersOfAFleetGeneratedByMaximumSetRule(
com.azure.resourcemanager.containerservicefleet.ContainerServiceFleetManager manager) {
manager.fleetMembers().listByFleet("rgfleets", "fleet1", com.azure.core.util.Context.NONE);
manager.fleetMembers().listByFleet("rgfleets", "fleet1", null, null, null, com.azure.core.util.Context.NONE);
}

/*
Expand All @@ -602,7 +602,7 @@ public final class FleetMembersListByFleetSamples {
*/
public static void
listsTheMembersOfAFleet(com.azure.resourcemanager.containerservicefleet.ContainerServiceFleetManager manager) {
manager.fleetMembers().listByFleet("rg1", "fleet1", com.azure.core.util.Context.NONE);
manager.fleetMembers().listByFleet("rg1", "fleet1", null, null, null, com.azure.core.util.Context.NONE);
}
}
```
Expand Down Expand Up @@ -803,7 +803,7 @@ public final class FleetUpdateStrategiesListByFleetSamples {
*/
public static void listTheFleetUpdateStrategyResourcesByFleet(
com.azure.resourcemanager.containerservicefleet.ContainerServiceFleetManager manager) {
manager.fleetUpdateStrategies().listByFleet("rg1", "fleet1", com.azure.core.util.Context.NONE);
manager.fleetUpdateStrategies().listByFleet("rg1", "fleet1", null, null, com.azure.core.util.Context.NONE);
}

/*
Expand All @@ -816,7 +816,7 @@ public final class FleetUpdateStrategiesListByFleetSamples {
*/
public static void listTheFleetUpdateStrategyResourcesByFleetGeneratedByMaximumSetRule(
com.azure.resourcemanager.containerservicefleet.ContainerServiceFleetManager manager) {
manager.fleetUpdateStrategies().listByFleet("rgfleets", "fleet1", com.azure.core.util.Context.NONE);
manager.fleetUpdateStrategies().listByFleet("rgfleets", "fleet1", null, null, com.azure.core.util.Context.NONE);
}
}
```
Expand Down Expand Up @@ -990,7 +990,7 @@ public final class FleetsListSamples {
*/
public static void listsTheFleetResourcesInASubscriptionGeneratedByMaximumSetRule(
com.azure.resourcemanager.containerservicefleet.ContainerServiceFleetManager manager) {
manager.fleets().list(com.azure.core.util.Context.NONE);
manager.fleets().list(null, null, com.azure.core.util.Context.NONE);
}

/*
Expand All @@ -1003,7 +1003,7 @@ public final class FleetsListSamples {
*/
public static void listsTheFleetResourcesInASubscription(
com.azure.resourcemanager.containerservicefleet.ContainerServiceFleetManager manager) {
manager.fleets().list(com.azure.core.util.Context.NONE);
manager.fleets().list(null, null, com.azure.core.util.Context.NONE);
}
}
```
Expand Down Expand Up @@ -1198,7 +1198,7 @@ public final class GatesListByFleetSamples {
*/
public static void
listsTheGatesOfAFleet(com.azure.resourcemanager.containerservicefleet.ContainerServiceFleetManager manager) {
manager.gates().listByFleet("rg1", "fleet1", com.azure.core.util.Context.NONE);
manager.gates().listByFleet("rg1", "fleet1", null, null, null, com.azure.core.util.Context.NONE);
}

/*
Expand All @@ -1211,7 +1211,7 @@ public final class GatesListByFleetSamples {
*/
public static void gatesListByFleetMaximumSet(
com.azure.resourcemanager.containerservicefleet.ContainerServiceFleetManager manager) {
manager.gates().listByFleet("rgfleets", "fleet-1", com.azure.core.util.Context.NONE);
manager.gates().listByFleet("rgfleets", "fleet-1", null, null, null, com.azure.core.util.Context.NONE);
}
}
```
Expand Down Expand Up @@ -1480,7 +1480,7 @@ public final class UpdateRunsListByFleetSamples {
*/
public static void listsTheUpdateRunResourcesByFleet(
com.azure.resourcemanager.containerservicefleet.ContainerServiceFleetManager manager) {
manager.updateRuns().listByFleet("rg1", "fleet1", com.azure.core.util.Context.NONE);
manager.updateRuns().listByFleet("rg1", "fleet1", null, null, com.azure.core.util.Context.NONE);
}

/*
Expand All @@ -1493,7 +1493,7 @@ public final class UpdateRunsListByFleetSamples {
*/
public static void listsTheUpdateRunResourcesByFleetGeneratedByMaximumSetRule(
com.azure.resourcemanager.containerservicefleet.ContainerServiceFleetManager manager) {
manager.updateRuns().listByFleet("rgfleets", "fleet1", com.azure.core.util.Context.NONE);
manager.updateRuns().listByFleet("rgfleets", "fleet1", null, null, com.azure.core.util.Context.NONE);
}
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
~ Licensed under the MIT License.
~ Code generated by Microsoft (R) TypeSpec Code Generator.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.azure</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,12 +197,15 @@ void delete(String resourceGroupName, String fleetName, String autoUpgradeProfil
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param fleetName The name of the Fleet resource.
* @param top The number of result items to return.
* @param skipToken The page-continuation token to use with a paged version of this API.
* @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 response of a AutoUpgradeProfile list operation as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable<AutoUpgradeProfileInner> listByFleet(String resourceGroupName, String fleetName, Context context);
PagedIterable<AutoUpgradeProfileInner> listByFleet(String resourceGroupName, String fleetName, Integer top,
String skipToken, Context context);
}
Original file line number Diff line number Diff line change
Expand Up @@ -263,12 +263,16 @@ SyncPoller<PollResult<Void>, Void> beginDelete(String resourceGroupName, String
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param fleetName The name of the Fleet resource.
* @param top The number of result items to return.
* @param skipToken The page-continuation token to use with a paged version of this API.
* @param filter Filter the result list using the given expression.
* @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 response of a FleetMember list operation as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable<FleetMemberInner> listByFleet(String resourceGroupName, String fleetName, Context context);
PagedIterable<FleetMemberInner> listByFleet(String resourceGroupName, String fleetName, Integer top,
String skipToken, String filter, Context context);
}
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,15 @@ SyncPoller<PollResult<Void>, Void> beginDelete(String resourceGroupName, String
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param fleetName The name of the Fleet resource.
* @param top The number of result items to return.
* @param skipToken The page-continuation token to use with a paged version of this API.
* @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 response of a FleetUpdateStrategy list operation as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable<FleetUpdateStrategyInner> listByFleet(String resourceGroupName, String fleetName, Context context);
PagedIterable<FleetUpdateStrategyInner> listByFleet(String resourceGroupName, String fleetName, Integer top,
String skipToken, Context context);
}
Original file line number Diff line number Diff line change
Expand Up @@ -267,14 +267,16 @@ SyncPoller<PollResult<Void>, Void> beginDelete(String resourceGroupName, String
/**
* Lists fleets in the specified subscription.
*
* @param top The number of result items to return.
* @param skipToken The page-continuation token to use with a paged version of this API.
* @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 response of a Fleet list operation as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable<FleetInner> list(Context context);
PagedIterable<FleetInner> list(Integer top, String skipToken, Context context);

/**
* Lists the user credentials of a Fleet.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,16 @@ GateInner update(String resourceGroupName, String fleetName, String gateName, Ga
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param fleetName The name of the Fleet resource.
* @param filter Filter the result list using the given expression.
* @param top The number of result items to return.
* @param skipToken The page-continuation token to use with a paged version of this API.
* @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 response of a Gate list operation as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable<GateInner> listByFleet(String resourceGroupName, String fleetName, Context context);
PagedIterable<GateInner> listByFleet(String resourceGroupName, String fleetName, String filter, Integer top,
String skipToken, Context context);
}
Original file line number Diff line number Diff line change
Expand Up @@ -198,14 +198,17 @@ SyncPoller<PollResult<Void>, Void> beginDelete(String resourceGroupName, String
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param fleetName The name of the Fleet resource.
* @param top The number of result items to return.
* @param skipToken The page-continuation token to use with a paged version of this API.
* @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 response of a UpdateRun list operation as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable<UpdateRunInner> listByFleet(String resourceGroupName, String fleetName, Context context);
PagedIterable<UpdateRunInner> listByFleet(String resourceGroupName, String fleetName, Integer top, String skipToken,
Context context);

/**
* Starts an UpdateRun.
Expand Down
Loading
Loading