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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
54 changes: 50 additions & 4 deletions sdk/netapp/azure-resourcemanager-netapp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,60 @@
# Release History

## 1.6.0-beta.2 (Unreleased)
## 1.0.0-beta.1 (2025-02-10)

- Azure Resource Manager NetAppFiles client library for Java. This package contains Microsoft Azure SDK for NetAppFiles Management SDK. Microsoft NetApp Files Azure Resource Provider specification. Package tag package-preview-2024-09-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Features Added

### Breaking Changes
* `models.CoolAccessTieringPolicy` was added

* `models.EncryptionTransitionRequest` was added

### Bugs Fixed
* `models.KeyVaultPrivateEndpoint` was added

### Other Changes
* `models.GetKeyVaultStatusResponse` was added

* `models.ChangeKeyVault` was added

#### `models.Volume` was modified

* `coolAccessTieringPolicy()` was added

#### `models.Volume$Update` was modified

* `withCoolAccessTieringPolicy(models.CoolAccessTieringPolicy)` was added

#### `models.VolumePatch` was modified

* `coolAccessTieringPolicy()` was added
* `withCoolAccessTieringPolicy(models.CoolAccessTieringPolicy)` was added

#### `models.Volume$Definition` was modified

* `withCoolAccessTieringPolicy(models.CoolAccessTieringPolicy)` was added

#### `models.VolumeGroupVolumeProperties` was modified

* `coolAccessTieringPolicy()` was added
* `withCoolAccessTieringPolicy(models.CoolAccessTieringPolicy)` was added

#### `models.Accounts` was modified

* `transitionToCmk(java.lang.String,java.lang.String,models.EncryptionTransitionRequest,com.azure.core.util.Context)` was added
* `changeKeyVault(java.lang.String,java.lang.String)` was added
* `changeKeyVault(java.lang.String,java.lang.String,models.ChangeKeyVault,com.azure.core.util.Context)` was added
* `transitionToCmk(java.lang.String,java.lang.String)` was added
* `getChangeKeyVaultInformation(java.lang.String,java.lang.String,com.azure.core.util.Context)` was added
* `getChangeKeyVaultInformation(java.lang.String,java.lang.String)` was added

#### `models.NetAppAccount` was modified

* `getChangeKeyVaultInformation()` was added
* `changeKeyVault()` was added
* `transitionToCmk()` was added
* `transitionToCmk(models.EncryptionTransitionRequest,com.azure.core.util.Context)` was added
* `changeKeyVault(models.ChangeKeyVault,com.azure.core.util.Context)` was added
* `getChangeKeyVaultInformation(com.azure.core.util.Context)` was added

## 1.6.0-beta.1 (2024-11-18)

Expand Down
10 changes: 4 additions & 6 deletions sdk/netapp/azure-resourcemanager-netapp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Azure Resource Manager NetAppFiles client library for Java.

This package contains Microsoft Azure SDK for NetAppFiles Management SDK. Microsoft NetApp Files Azure Resource Provider specification. Package tag package-preview-2024-07-01-preview. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
This package contains Microsoft Azure SDK for NetAppFiles Management SDK. Microsoft NetApp Files Azure Resource Provider specification. Package tag package-preview-2024-09-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

## We'd love to hear your feedback

Expand Down Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-netapp</artifactId>
<version>1.6.0-beta.1</version>
<version>1.6.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand All @@ -52,15 +52,15 @@ Azure subscription ID can be configured via `AZURE_SUBSCRIPTION_ID` environment
Assuming the use of the `DefaultAzureCredential` credential class, the client can be authenticated using the following code:

```java
AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
AzureProfile profile = new AzureProfile(AzureCloud.AZURE_PUBLIC_CLOUD);
TokenCredential credential = new DefaultAzureCredentialBuilder()
.authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint())
.build();
NetAppFilesManager manager = NetAppFilesManager
.authenticate(credential, profile);
```

The sample code assumes global Azure. Please change `AzureEnvironment.AZURE` variable if otherwise.
The sample code assumes global Azure. Please change the `AzureCloud.AZURE_PUBLIC_CLOUD` variable if otherwise.

See [Authentication][authenticate] for more options.

Expand Down Expand Up @@ -107,5 +107,3 @@ 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/


Loading