Skip to content

Commit 5214f13

Browse files
authored
Added RehydratePendingToCold to ArchiveStatus (Azure#37889)
1 parent 28770b5 commit 5214f13

File tree

7 files changed

+10
-2
lines changed

7 files changed

+10
-2
lines changed

sdk/storage/Azure.Storage.Blobs/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

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

67
## 12.17.0 (2023-07-11)
78
- Includes all features from 12.17.0-beta.1.

sdk/storage/Azure.Storage.Blobs/api/Azure.Storage.Blobs.net6.0.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ public enum ArchiveStatus
311311
{
312312
RehydratePendingToHot = 0,
313313
RehydratePendingToCool = 1,
314+
RehydratePendingToCold = 2,
314315
}
315316
public partial class BlobAccessPolicy
316317
{

sdk/storage/Azure.Storage.Blobs/api/Azure.Storage.Blobs.netstandard2.0.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ public enum ArchiveStatus
311311
{
312312
RehydratePendingToHot = 0,
313313
RehydratePendingToCool = 1,
314+
RehydratePendingToCold = 2,
314315
}
315316
public partial class BlobAccessPolicy
316317
{

sdk/storage/Azure.Storage.Blobs/api/Azure.Storage.Blobs.netstandard2.1.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ public enum ArchiveStatus
311311
{
312312
RehydratePendingToHot = 0,
313313
RehydratePendingToCool = 1,
314+
RehydratePendingToCold = 2,
314315
}
315316
public partial class BlobAccessPolicy
316317
{

sdk/storage/Azure.Storage.Blobs/src/Generated/Models/ArchiveStatus.Serialization.cs

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/storage/Azure.Storage.Blobs/src/Models/ArchiveStatus.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ public enum ArchiveStatus
99
/// <summary> rehydrate-pending-to-hot. </summary>
1010
RehydratePendingToHot,
1111
/// <summary> rehydrate-pending-to-cool. </summary>
12-
RehydratePendingToCool
12+
RehydratePendingToCool,
13+
/// <summary> rehydrate-pending-to-cold. </summary>
14+
RehydratePendingToCold
1315
}
1416
}

sdk/storage/Azure.Storage.Blobs/src/autorest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Run `dotnet build /t:GenerateCode` to generate code.
44

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

0 commit comments

Comments
 (0)