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,20 +1,19 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0 (Unreleased)

### Features Added

### Breaking Changes
This release is the first stable release of the Storage Mover Management library.

### Bugs Fixed

### Other Changes
### Features Added
-
- Upgraded API version to 2021-01-01.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Per the swagger PR Azure/azure-rest-api-specs#21926, the GA API version should be "2023-03-01"

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a place holder for now, will replace it after we get the stable version. Thank you for point it out.


## 1.0.0-beta.1 (2022-12-09)

### Breaking Changes

New design of track 2 initial commit.

- Corrected the format of all `uuid` type properties / parameters.
- Corrected all acronyms that don't follow [Microsoft .NET Naming Guidelines](https://docs.microsoft.com/dotnet/standard/design-guidelines/naming-guidelines).
- Prepended `StorageMover` prefix to all single / simple model names
Expand All @@ -32,4 +31,4 @@ This package follows the [new Azure SDK guidelines](https://azure.github.io/azur

This package is a Public Preview version, so expect incompatible changes in subsequent releases as we improve the product. To provide feedback, submit an issue in our [Azure SDK for .NET GitHub repo](https://github.com/Azure/azure-sdk-for-net/issues).

> NOTE: For more information about unified authentication, please refer to [Microsoft Azure Identity documentation for .NET](https://docs.microsoft.com//dotnet/api/overview/azure/identity-readme?view=azure-dotnet).
> NOTE: For more information about unified authentication, please refer to [Microsoft Azure Identity documentation for .NET](https://docs.microsoft.com//dotnet/api/overview/azure/identity-readme?view=azure-dotnet).
Original file line number Diff line number Diff line change
Expand Up @@ -126,15 +126,15 @@ protected StorageMoverAgentCollection() { }
}
public partial class StorageMoverAgentData : Azure.ResourceManager.Models.ResourceData
{
public StorageMoverAgentData(string arcResourceId, string arcVmUuid) { }
public StorageMoverAgentData(Azure.Core.ResourceIdentifier arcResourceId, System.Guid arcVmUuid) { }
public Azure.ResourceManager.StorageMover.Models.StorageMoverAgentStatus? AgentStatus { get { throw null; } }
public string AgentVersion { get { throw null; } }
public string ArcResourceId { get { throw null; } set { } }
public string ArcVmUuid { get { throw null; } set { } }
public Azure.Core.ResourceIdentifier ArcResourceId { get { throw null; } set { } }
public System.Guid ArcVmUuid { get { throw null; } set { } }
public string Description { get { throw null; } set { } }
public Azure.ResourceManager.StorageMover.Models.StorageMoverAgentPropertiesErrorDetails ErrorDetails { get { throw null; } }
public System.DateTimeOffset? LastStatusUpdate { get { throw null; } }
public string LocalIPAddress { get { throw null; } }
public System.Net.IPAddress LocalIPAddress { get { throw null; } }
public long? MemoryInMB { get { throw null; } }
public long? NumberOfCores { get { throw null; } }
public Azure.ResourceManager.StorageMover.Models.StorageMoverProvisioningState? ProvisioningState { get { throw null; } }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0-beta.2</Version>
<Version>1.0.0</Version>
<PackageId>Azure.ResourceManager.StorageMover</PackageId>
<Description>Azure Resource Manager client SDK for Azure resource provider StorageMover</Description>
<PackageTags>azure;management;arm;resource manager;storagemover</PackageTags>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ azure-arm: true
csharp: true
library-name: StorageMover
namespace: Azure.ResourceManager.StorageMover
require: https://github.com/Azure/azure-rest-api-specs/blob/e99a45d498a1c7fadc18229ecba5d84a471a8771/specification/storagemover/resource-manager/readme.md
require: https://github.com/Azure/azure-rest-api-specs/blob/ac3e8f0fdda32a4ea0f20d67c8a23547cd21f3f8/specification/storagemover/resource-manager/readme.md
output-folder: $(this-folder)/Generated
clear-output-folder: true
skip-csproj: true
Expand All @@ -30,6 +30,9 @@ rename-mapping:
JobRun.properties.sourceResourceId: -|arm-id
JobRun.properties.targetResourceId: -|arm-id
JobRunResourceId.jobRunResourceId: -|arm-id
Agent.properties.arcResourceId: -|arm-id
Agent.properties.arcVmUuid: -|uuid
Agent.properties.localIPAddress: -|ip-address

format-by-name-rules:
'tenantId': 'uuid'
Expand Down Expand Up @@ -61,4 +64,4 @@ rename-rules:
URI: Uri
Etag: ETag|etag

```
```