diff --git a/sdk/storage/azure-storage-blob/CHANGELOG.md b/sdk/storage/azure-storage-blob/CHANGELOG.md index 2a99dac0ecf7..24fbb9a421ca 100644 --- a/sdk/storage/azure-storage-blob/CHANGELOG.md +++ b/sdk/storage/azure-storage-blob/CHANGELOG.md @@ -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 diff --git a/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/models/SkuName.java b/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/models/SkuName.java index bab2c5e601f7..9bd5e6d7938c 100644 --- a/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/models/SkuName.java +++ b/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/models/SkuName.java @@ -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. diff --git a/sdk/storage/azure-storage-blob/swagger/README.md b/sdk/storage/azure-storage-blob/swagger/README.md index d0a682c5ad34..9acd09a8284f 100644 --- a/sdk/storage/azure-storage-blob/swagger/README.md +++ b/sdk/storage/azure-storage-blob/swagger/README.md @@ -16,7 +16,7 @@ autorest ### Code generation settings ``` yaml use: '@autorest/java@4.1.52' -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