Skip to content
Draft
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
1 change: 1 addition & 0 deletions sdk/storage/azure-storage-blob/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 12.33.0-beta.2 (Unreleased)

### Features Added
- Added support for missing SKU names `STANDARD_GZRS`, `STANDARD_RAGZRS` and `PREMIUM_ZRS` when using `getAccountInfo()` API.

### Breaking Changes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,22 @@ public enum SkuName {
/**
* Enum value Premium_LRS.
*/
PREMIUM_LRS("Premium_LRS");
PREMIUM_LRS("Premium_LRS"),

/**
* Enum value Standard_GZRS.
*/
STANDARD_GZRS("Standard_GZRS"),

/**
* Enum value Premium_ZRS.
*/
PREMIUM_ZRS("Premium_ZRS"),

/**
* Enum value Standard_RAGZRS.
*/
STANDARD_RAGZRS("Standard_RAGZRS");

/**
* The actual serialized value for a SkuName instance.
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob/swagger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ autorest
### Code generation settings
``` yaml
use: '@autorest/[email protected]'
input-file: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/refs/heads/main/specification/storage/data-plane/Microsoft.BlobStorage/stable/2026-02-06/blob.json
input-file: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/a618ec98a5982f08cd2c4779196f015c055475fb/specification/storage/data-plane/Microsoft.BlobStorage/stable/2026-04-06/blob.json
java: true
output-folder: ../
namespace: com.azure.storage.blob
Expand Down
Loading