Skip to content
Closed
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,6 +1,8 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.1 (2023-08-09)

- Azure Resource Manager ContainerServiceFleet client library for Java. This package contains Microsoft Azure SDK for ContainerServiceFleet Management SDK. Azure Kubernetes Fleet Manager Client. Package tag package-2023-03-preview. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Features Added

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.0.0-beta.1</version>
<version>1.0.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down Expand Up @@ -103,3 +103,5 @@ This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For m
[cg]: https://github.com/Azure/azure-sdk-for-java/blob/main/CONTRIBUTING.md
[coc]: https://opensource.microsoft.com/codeofconduct/
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/

![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-java%2Fsdk%2Fcontainerservicefleet%2Fazure-resourcemanager-containerservicefleet%2FREADME.png)
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

import com.azure.core.annotation.Fluent;
import com.azure.core.management.ProxyResource;
import com.azure.core.management.SystemData;
import com.azure.resourcemanager.containerservicefleet.models.ManagedClusterUpdate;
import com.azure.resourcemanager.containerservicefleet.models.UpdateRunProvisioningState;
import com.azure.resourcemanager.containerservicefleet.models.UpdateRunStatus;
Expand All @@ -31,12 +30,6 @@ public final class UpdateRunInner extends ProxyResource {
@JsonProperty(value = "eTag", access = JsonProperty.Access.WRITE_ONLY)
private String etag;

/*
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
@JsonProperty(value = "systemData", access = JsonProperty.Access.WRITE_ONLY)
private SystemData systemData;

/** Creates an instance of UpdateRunInner class. */
public UpdateRunInner() {
}
Expand All @@ -62,15 +55,6 @@ public String etag() {
return this.etag;
}

/**
* Get the systemData property: Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
* @return the systemData value.
*/
public SystemData systemData() {
return this.systemData;
}

/**
* Get the provisioningState property: The provisioning state of the UpdateRun resource.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

package com.azure.resourcemanager.containerservicefleet.implementation;

import com.azure.core.management.SystemData;
import com.azure.core.util.Context;
import com.azure.resourcemanager.containerservicefleet.fluent.models.UpdateRunInner;
import com.azure.resourcemanager.containerservicefleet.models.ManagedClusterUpdate;
Expand Down Expand Up @@ -34,10 +33,6 @@ public String etag() {
return this.innerModel().etag();
}

public SystemData systemData() {
return this.innerModel().systemData();
}

public UpdateRunProvisioningState provisioningState() {
return this.innerModel().provisioningState();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,13 @@ interface Definition
DefinitionStages.WithResourceGroup,
DefinitionStages.WithCreate {
}

/** The Fleet definition stages. */
interface DefinitionStages {
/** The first stage of the Fleet definition. */
interface Blank extends WithLocation {
}

/** The stage of the Fleet definition allowing to specify location. */
interface WithLocation {
/**
Expand All @@ -137,6 +139,7 @@ interface WithLocation {
*/
WithResourceGroup withRegion(String location);
}

/** The stage of the Fleet definition allowing to specify parent resource. */
interface WithResourceGroup {
/**
Expand All @@ -147,6 +150,7 @@ interface WithResourceGroup {
*/
WithCreate withExistingResourceGroup(String resourceGroupName);
}

/**
* The stage of the Fleet definition which contains all the minimum required properties for the resource to be
* created, but also allows for any other optional properties to be specified.
Expand All @@ -171,6 +175,7 @@ interface WithCreate
*/
Fleet create(Context context);
}

/** The stage of the Fleet definition allowing to specify tags. */
interface WithTags {
/**
Expand All @@ -181,6 +186,7 @@ interface WithTags {
*/
WithCreate withTags(Map<String, String> tags);
}

/** The stage of the Fleet definition allowing to specify hubProfile. */
interface WithHubProfile {
/**
Expand All @@ -191,6 +197,7 @@ interface WithHubProfile {
*/
WithCreate withHubProfile(FleetHubProfile hubProfile);
}

/** The stage of the Fleet definition allowing to specify ifMatch. */
interface WithIfMatch {
/**
Expand All @@ -201,6 +208,7 @@ interface WithIfMatch {
*/
WithCreate withIfMatch(String ifMatch);
}

/** The stage of the Fleet definition allowing to specify ifNoneMatch. */
interface WithIfNoneMatch {
/**
Expand All @@ -212,6 +220,7 @@ interface WithIfNoneMatch {
WithCreate withIfNoneMatch(String ifNoneMatch);
}
}

/**
* Begins update for the Fleet resource.
*
Expand All @@ -236,6 +245,7 @@ interface Update extends UpdateStages.WithTags, UpdateStages.WithIfMatch {
*/
Fleet apply(Context context);
}

/** The Fleet update stages. */
interface UpdateStages {
/** The stage of the Fleet update allowing to specify tags. */
Expand All @@ -248,6 +258,7 @@ interface WithTags {
*/
Update withTags(Map<String, String> tags);
}

/** The stage of the Fleet update allowing to specify ifMatch. */
interface WithIfMatch {
/**
Expand All @@ -259,6 +270,7 @@ interface WithIfMatch {
Update withIfMatch(String ifMatch);
}
}

/**
* Refreshes the resource to sync with Azure.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,13 @@ public interface FleetMember {
interface Definition
extends DefinitionStages.Blank, DefinitionStages.WithParentResource, DefinitionStages.WithCreate {
}

/** The FleetMember definition stages. */
interface DefinitionStages {
/** The first stage of the FleetMember definition. */
interface Blank extends WithParentResource {
}

/** The stage of the FleetMember definition allowing to specify parent resource. */
interface WithParentResource {
/**
Expand All @@ -105,6 +107,7 @@ interface WithParentResource {
*/
WithCreate withExistingFleet(String resourceGroupName, String fleetName);
}

/**
* The stage of the FleetMember definition which contains all the minimum required properties for the resource
* to be created, but also allows for any other optional properties to be specified.
Expand All @@ -129,6 +132,7 @@ interface WithCreate
*/
FleetMember create(Context context);
}

/** The stage of the FleetMember definition allowing to specify clusterResourceId. */
interface WithClusterResourceId {
/**
Expand All @@ -143,6 +147,7 @@ interface WithClusterResourceId {
*/
WithCreate withClusterResourceId(String clusterResourceId);
}

/** The stage of the FleetMember definition allowing to specify group. */
interface WithGroup {
/**
Expand All @@ -153,6 +158,7 @@ interface WithGroup {
*/
WithCreate withGroup(String group);
}

/** The stage of the FleetMember definition allowing to specify ifMatch. */
interface WithIfMatch {
/**
Expand All @@ -163,6 +169,7 @@ interface WithIfMatch {
*/
WithCreate withIfMatch(String ifMatch);
}

/** The stage of the FleetMember definition allowing to specify ifNoneMatch. */
interface WithIfNoneMatch {
/**
Expand All @@ -174,6 +181,7 @@ interface WithIfNoneMatch {
WithCreate withIfNoneMatch(String ifNoneMatch);
}
}

/**
* Begins update for the FleetMember resource.
*
Expand All @@ -198,6 +206,7 @@ interface Update extends UpdateStages.WithGroup, UpdateStages.WithIfMatch {
*/
FleetMember apply(Context context);
}

/** The FleetMember update stages. */
interface UpdateStages {
/** The stage of the FleetMember update allowing to specify group. */
Expand All @@ -210,6 +219,7 @@ interface WithGroup {
*/
Update withGroup(String group);
}

/** The stage of the FleetMember update allowing to specify ifMatch. */
interface WithIfMatch {
/**
Expand All @@ -221,6 +231,7 @@ interface WithIfMatch {
Update withIfMatch(String ifMatch);
}
}

/**
* Refreshes the resource to sync with Azure.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

package com.azure.resourcemanager.containerservicefleet.models;

import com.azure.core.management.SystemData;
import com.azure.core.util.Context;
import com.azure.resourcemanager.containerservicefleet.fluent.models.UpdateRunInner;

Expand Down Expand Up @@ -41,13 +40,6 @@ public interface UpdateRun {
*/
String etag();

/**
* Gets the systemData property: Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
* @return the systemData value.
*/
SystemData systemData();

/**
* Gets the provisioningState property: The provisioning state of the UpdateRun resource.
*
Expand Down Expand Up @@ -97,11 +89,13 @@ public interface UpdateRun {
interface Definition
extends DefinitionStages.Blank, DefinitionStages.WithParentResource, DefinitionStages.WithCreate {
}

/** The UpdateRun definition stages. */
interface DefinitionStages {
/** The first stage of the UpdateRun definition. */
interface Blank extends WithParentResource {
}

/** The stage of the UpdateRun definition allowing to specify parent resource. */
interface WithParentResource {
/**
Expand All @@ -113,6 +107,7 @@ interface WithParentResource {
*/
WithCreate withExistingFleet(String resourceGroupName, String fleetName);
}

/**
* The stage of the UpdateRun definition which contains all the minimum required properties for the resource to
* be created, but also allows for any other optional properties to be specified.
Expand All @@ -137,6 +132,7 @@ interface WithCreate
*/
UpdateRun create(Context context);
}

/** The stage of the UpdateRun definition allowing to specify strategy. */
interface WithStrategy {
/**
Expand All @@ -153,6 +149,7 @@ interface WithStrategy {
*/
WithCreate withStrategy(UpdateRunStrategy strategy);
}

/** The stage of the UpdateRun definition allowing to specify managedClusterUpdate. */
interface WithManagedClusterUpdate {
/**
Expand All @@ -165,6 +162,7 @@ interface WithManagedClusterUpdate {
*/
WithCreate withManagedClusterUpdate(ManagedClusterUpdate managedClusterUpdate);
}

/** The stage of the UpdateRun definition allowing to specify ifMatch. */
interface WithIfMatch {
/**
Expand All @@ -175,6 +173,7 @@ interface WithIfMatch {
*/
WithCreate withIfMatch(String ifMatch);
}

/** The stage of the UpdateRun definition allowing to specify ifNoneMatch. */
interface WithIfNoneMatch {
/**
Expand All @@ -186,6 +185,7 @@ interface WithIfNoneMatch {
WithCreate withIfNoneMatch(String ifNoneMatch);
}
}

/**
* Begins update for the UpdateRun resource.
*
Expand Down Expand Up @@ -214,6 +214,7 @@ interface Update
*/
UpdateRun apply(Context context);
}

/** The UpdateRun update stages. */
interface UpdateStages {
/** The stage of the UpdateRun update allowing to specify strategy. */
Expand All @@ -232,6 +233,7 @@ interface WithStrategy {
*/
Update withStrategy(UpdateRunStrategy strategy);
}

/** The stage of the UpdateRun update allowing to specify managedClusterUpdate. */
interface WithManagedClusterUpdate {
/**
Expand All @@ -244,6 +246,7 @@ interface WithManagedClusterUpdate {
*/
Update withManagedClusterUpdate(ManagedClusterUpdate managedClusterUpdate);
}

/** The stage of the UpdateRun update allowing to specify ifMatch. */
interface WithIfMatch {
/**
Expand All @@ -254,6 +257,7 @@ interface WithIfMatch {
*/
Update withIfMatch(String ifMatch);
}

/** The stage of the UpdateRun update allowing to specify ifNoneMatch. */
interface WithIfNoneMatch {
/**
Expand All @@ -265,6 +269,7 @@ interface WithIfNoneMatch {
Update withIfNoneMatch(String ifNoneMatch);
}
}

/**
* Refreshes the resource to sync with Azure.
*
Expand Down
Loading