Skip to content
Open
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
11 changes: 4 additions & 7 deletions sdk/elasticsan/Azure.ResourceManager.ElasticSan/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# Release History

## 1.2.0-beta.3 (Unreleased)
## 1.2.0 (2025-11-28)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes
- Upgraded api-version tag from 'package-preview-2024-07' to 'package-2025-09'. Tag detail available at https://github.com/Azure/azure-rest-api-specs/blob/1d3ac611f503e05650fb85520582b06140d2599e/specification/elasticsan/resource-manager/Microsoft.ElasticSan/ElasticSan/readme.md.
- Supported auto scale policy for ElasticSan.
- Supported prebackup and prerestore for ElasticSan.

## 1.2.0-beta.2 (2025-04-24)

Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "net",
"TagPrefix": "net/elasticsan/Azure.ResourceManager.ElasticSan",
"Tag": "net/elasticsan/Azure.ResourceManager.ElasticSan_1d20c02f73"
"Tag": "net/elasticsan/Azure.ResourceManager.ElasticSan_696358fe7c"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.2.0-beta.3</Version>
<Version>1.2.0</Version>
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
<ApiCompatVersion>1.1.0</ApiCompatVersion>
<PackageId>Azure.ResourceManager.ElasticSan</PackageId>
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,14 @@

#nullable disable

using System;
using System.ComponentModel;
using System.Globalization;
using System.Threading;
using System.Threading.Tasks;
using Azure.Core;
using Azure.Core.Pipeline;
using Azure.ResourceManager.ElasticSan.Models;

namespace Azure.ResourceManager.ElasticSan
{
/// <summary>
/// A Class representing an ElasticSanVolume along with the instance operations that can be performed on it.
/// If you have a <see cref="ResourceIdentifier"/> you can construct an <see cref="ElasticSanVolumeResource"/>
/// from an instance of <see cref="ArmClient"/> using the GetElasticSanVolumeResource method.
/// Otherwise you can get one from its parent resource <see cref="ElasticSanVolumeGroupResource"/> using the GetElasticSanVolume method.
/// </summary>
public partial class ElasticSanVolumeResource : ArmResource
public partial class ElasticSanVolumeResource
{
/// <summary>
/// Delete an Volume.
Expand Down Expand Up @@ -49,7 +39,7 @@ public partial class ElasticSanVolumeResource : ArmResource
/// <param name="cancellationToken"> The cancellation token to use. </param>
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual async Task<ArmOperation> DeleteAsync(WaitUntil waitUntil, XmsDeleteSnapshot? xmsDeleteSnapshots, XmsForceDelete? xmsForceDelete, CancellationToken cancellationToken)
=> await DeleteAsync(waitUntil, xmsDeleteSnapshots.ToString(), xmsForceDelete.ToString(), null, cancellationToken).ConfigureAwait(false);
=> await DeleteAsync(waitUntil, deleteSnapshots: xmsDeleteSnapshots.ToString(), forceDelete: xmsForceDelete.ToString(), cancellationToken).ConfigureAwait(false);

/// <summary>
/// Delete an Volume.
Expand Down Expand Up @@ -78,6 +68,6 @@ public virtual async Task<ArmOperation> DeleteAsync(WaitUntil waitUntil, XmsDele
/// <param name="cancellationToken"> The cancellation token to use. </param>
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual ArmOperation Delete(WaitUntil waitUntil, XmsDeleteSnapshot? xmsDeleteSnapshots, XmsForceDelete? xmsForceDelete, CancellationToken cancellationToken)
=> Delete(waitUntil, xmsDeleteSnapshots.ToString(), xmsForceDelete.ToString(), null, cancellationToken);
=> Delete(waitUntil, deleteSnapshots: xmsDeleteSnapshots.ToString(), forceDelete: xmsForceDelete.ToString(), cancellationToken);
}
}
Loading