Skip to content

Commit

Permalink
Added RehydratePendingToCold to ArchiveStatus (#37889)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcc-msft authored Aug 1, 2023
1 parent 28770b5 commit 5214f13
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions sdk/storage/Azure.Storage.Blobs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 12.18.0-beta.1 (Unreleased)
- Added support for service version 2023-05-03 and 2023-08-03.
- Added RehydratePendingToCold value to ArchiveStatus enum.

## 12.17.0 (2023-07-11)
- Includes all features from 12.17.0-beta.1.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ public enum ArchiveStatus
{
RehydratePendingToHot = 0,
RehydratePendingToCool = 1,
RehydratePendingToCold = 2,
}
public partial class BlobAccessPolicy
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ public enum ArchiveStatus
{
RehydratePendingToHot = 0,
RehydratePendingToCool = 1,
RehydratePendingToCold = 2,
}
public partial class BlobAccessPolicy
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ public enum ArchiveStatus
{
RehydratePendingToHot = 0,
RehydratePendingToCool = 1,
RehydratePendingToCold = 2,
}
public partial class BlobAccessPolicy
{
Expand Down

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

4 changes: 3 additions & 1 deletion sdk/storage/Azure.Storage.Blobs/src/Models/ArchiveStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ public enum ArchiveStatus
/// <summary> rehydrate-pending-to-hot. </summary>
RehydratePendingToHot,
/// <summary> rehydrate-pending-to-cool. </summary>
RehydratePendingToCool
RehydratePendingToCool,
/// <summary> rehydrate-pending-to-cold. </summary>
RehydratePendingToCold
}
}
2 changes: 1 addition & 1 deletion sdk/storage/Azure.Storage.Blobs/src/autorest.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Run `dotnet build /t:GenerateCode` to generate code.

``` yaml
input-file:
- https://raw.githubusercontent.com/Azure/azure-rest-api-specs/3e6f238a1f74d77ba6970f297c77995a9f1f374e/specification/storage/data-plane/Microsoft.BlobStorage/preview/2021-12-02/blob.json
- https://raw.githubusercontent.com/Azure/azure-rest-api-specs/a32d0b2423d19835246bb2ef92941503bfd5e734/specification/storage/data-plane/Microsoft.BlobStorage/preview/2021-12-02/blob.json
generation1-convenience-client: true
# https://github.com/Azure/autorest/issues/4075
skip-semantics-validation: true
Expand Down

0 comments on commit 5214f13

Please sign in to comment.