How to get all versions for a blob via nodeJs sdk.

Rajat Bhardwaj 0 Reputation points
2023-06-21T06:51:01.9133333+00:00

Please see below code that I am using. I am using sdk with includeVersions property as 'true'. I am still not able to see any versions. Please note that I have enabled versioning and I am able to see multiple versions created in azure container.

Code:

for await (const blob of containerClient.listBlobsFlat({prefix: blobName, includeVersions: true})) {
                if(blob.name === blobName) {
                    console.log('inside', blob);
                    break;
                }
                console.log(`Blob name: ${blob.name}`);
            }

Response:

inside {
  OrMetadata: '',
  properties: {
    'Content-Encoding': '',
    'Content-Language': '',
    'Content-CRC64': '',
    'Cache-Control': '',
    'Content-Disposition': '',
    createdOn: 2023-06-20T16:07:51.000Z,
    lastModified: 2023-06-20T16:07:51.000Z,
    etag: '0x8DB71A87FE7A95A',
    contentLength: 120307,
    contentType: 'application/pdf',
    contentMD5: 
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
3,192 questions
{count} votes

1 answer

Sort by: Most helpful
  1. KarishmaTiwari-MSFT 20,772 Reputation points Microsoft Employee Moderator
    2023-06-28T00:55:37.8966667+00:00

    @Rajat Bhardwaj
    I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this!

    Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others ", I'll repost your solution in case you'd like to "Accept " the answer. Accepted answers show up at the top, resulting in improved discoverability for others.

    Customer Query: How to get all versions for a blob via nodeJs SDK? I am using sdk with includeVersions property as 'true'. I am still not able to see any versions.

    Solution: Customer was able to fix this issue by updating their node version. Earlier they were using node version 12, on updating to Node version 16, the issue was resolved.


    If your issue remains unresolved or have further questions, please let us know in the comments how we can assist. We are here to help you and strive to make your experience better and greatly value your feedback.
    User's image

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.