Giter Site home page Giter Site logo

Comments (2)

alzimmermsft avatar alzimmermsft commented on May 26, 2024

Thanks for filing this issue @MichaelVonB.

I believe you're running into this problem as there aren't any includes set in the listBlobs call. This document goes over the REST API details on how to include additional information in the response BlobItem:

https://learn.microsoft.com/rest/api/storageservices/list-blobs?tabs=microsoft-entra-id#metadata-in-the-response

And here is an example of the updated Java code:

BlobContainerClient blobContainerClient = blobServiceClient.getBlobContainerClient("my-blob-container-client");
List<Map<String, String>> metaDataList = blobContainerClient.listBlobs(new ListBlobsOptions().setDetails(new BlobListDetails().setRetrieveMetadata(true)), null).stream()
            .map(BlobItem::getMetadata)
            .toList();

And here is a test we run that validates the behavior:

https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/ContainerApiTests.java#L819

from azure-sdk-for-java.

MichaelVonB avatar MichaelVonB commented on May 26, 2024

Thank you for your quick supply. This fixed the issue. My bad i missed this.
For local development we are using azurite and there metadata are always populated regardless of ListBlobsOptions so we never searched in that direction.

from azure-sdk-for-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.