Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added BlobProperties field to BlobPrefix in listblob response #23801

Draft
wants to merge 11 commits into
base: main
Choose a base branch
from
1 change: 1 addition & 0 deletions sdk/storage/azblob/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
### Features Added
* Fix compareHeaders custom sorting algorithm for String To Sign.
* Added permissions & resourcetype parameters in listblob response.
* Added BlobProperties field in BlobPrefix definition in listblob response.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add this change in the next release. (1.5.1 - Unreleased)


## 1.5.0-beta.1 (2024-10-22)

Expand Down
12 changes: 12 additions & 0 deletions sdk/storage/azblob/internal/generated/autorest.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ export-clients: true
use: "@autorest/[email protected]"
```

### Add a "Properties" field to the "BlobPrefix" definition
```yaml
directive:
- from: swagger-document
where: $.definitions
transform: >
$.BlobPrefix.properties["Properties"] = {
"type" : "object",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you re-check this indentation?

"$ref": "#/definitions/BlobPropertiesInternal",
};
```

### Add Owner,Group,Permissions,Acl,ResourceType in ListBlob Response
``` yaml
directive:
Expand Down
3 changes: 3 additions & 0 deletions sdk/storage/azblob/internal/generated/zz_models.go

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

Loading