Skip to content
Merged
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
2 changes: 1 addition & 1 deletion eng/versioning/version_client.txt
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ com.azure.resourcemanager:azure-resourcemanager-billingbenefits;1.0.0-beta.2;1.0
com.azure.resourcemanager:azure-resourcemanager-providerhub;2.0.0;2.1.0-beta.1
com.azure.resourcemanager:azure-resourcemanager-reservations;1.0.0;1.1.0-beta.1
com.azure.resourcemanager:azure-resourcemanager-containerservicefleet;1.2.0;1.3.0-beta.2
com.azure.resourcemanager:azure-resourcemanager-storagemover;1.3.0;1.4.0-beta.1
com.azure.resourcemanager:azure-resourcemanager-storagemover;1.3.0;1.4.0
com.azure.resourcemanager:azure-resourcemanager-graphservices;1.1.0;1.2.0-beta.1
com.azure.resourcemanager:azure-resourcemanager-voiceservices;1.1.0;1.2.0-beta.1
com.azure.resourcemanager:azure-resourcemanager-paloaltonetworks-ngfw;1.2.0;1.3.0-beta.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,99 @@
# Release History

## 1.4.0-beta.1 (Unreleased)
## 1.4.0 (2025-08-29)

### Features Added
- Azure Resource Manager Storage Mover client library for Java. This package contains Microsoft Azure SDK for Storage Mover Management SDK. The Azure Storage Mover REST API. Package api-version 2025-07-01. 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.UploadLimit` was removed

#### `models.JobRunList` was removed

#### `models.AgentList` was removed

#### `models.JobDefinitionList` was removed

#### `models.StorageMoverList` was removed

#### `models.OperationListResult` was removed

#### `models.EndpointList` was removed

#### `models.ProjectList` was removed

#### `models.JobRunError` was modified

* `withCode(java.lang.String)` was removed
* `withTarget(java.lang.String)` was removed
* `withMessage(java.lang.String)` was removed

#### `models.AgentPropertiesErrorDetails` was modified

* `withMessage(java.lang.String)` was removed
* `withCode(java.lang.String)` was removed

### Features Added

* `models.UserAssignedIdentity` was added

* `models.AzureMultiCloudConnectorEndpointUpdateProperties` was added

* `models.SourceEndpointProperties` was added

* `models.TargetEndpointProperties` was added

* `models.AzureStorageNfsFileShareEndpointProperties` was added

* `models.AzureMultiCloudConnectorEndpointProperties` was added

* `models.JobDefinitionPropertiesSourceTargetMap` was added

* `models.ManagedServiceIdentity` was added

* `models.SourceTargetMap` was added

* `models.ManagedServiceIdentityType` was added

* `models.TargetEndpoint` was added

* `models.AzureStorageNfsFileShareEndpointUpdateProperties` was added

* `models.JobType` was added

* `models.SourceEndpoint` was added

#### `models.EndpointBaseUpdateParameters` was modified

* `identity()` was added
* `withIdentity(models.ManagedServiceIdentity)` was added

#### `models.Minute` was modified

* `fromJson(com.azure.json.JsonReader)` was added
* `toJson(com.azure.json.JsonWriter)` was added

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

* `withIdentity(models.ManagedServiceIdentity)` was added

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

* `withIdentity(models.ManagedServiceIdentity)` was added

#### `models.JobDefinition` was modified

* `jobType()` was added
* `sourceTargetMap()` was added

#### `models.Endpoint` was modified

* `identity()` was added

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

### Other Changes
* `withJobType(models.JobType)` was added
* `withSourceTargetMap(models.JobDefinitionPropertiesSourceTargetMap)` was added

## 1.3.0 (2024-12-23)

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

Azure Resource Manager Storage Mover client library for Java.

This package contains Microsoft Azure SDK for Storage Mover Management SDK. The Azure Storage Mover REST API. Package tag package-2024-07. 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 Storage Mover Management SDK. The Azure Storage Mover REST API. Package api-version 2025-07-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-storagemover</artifactId>
<version>1.4.0-beta.1</version>
<version>1.4.0</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();
StorageMoverManager manager = StorageMoverManager
.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