Azure Blob

Get block blob list

Get a list of all the blocks in a specific block blob.

Inputs

Field

Type

Description

listType [required]

enum

Specifies whether to return the list of committed blocks, the list of uncommitted blocks, or both lists together. Allowed enum values: committed,uncommitted,all

leaseId

string

The lease ID currently on the blob. This will only pass if the blob’s lease is active and the lease ID that is specified in the request matches the lease ID of the blob.

storageAccount [required]

string

The name of the storage account.

containerName [required]

string

The name of the container.

blobName [required]

string

The name of the blob to retrieve.

Outputs

Expand All

Field

Type

Description

uncommittedBlocks

[object]

A list of uncommited blocks.

name [required]

string

The base64 encoded block ID.

size [required]

number

The block size in bytes.

committedBlocks

[object]

A list of commited blocks.

name [required]

string

The base64 encoded block ID.

size [required]

number

The block size in bytes.