Azure Blob

Get block blob list

Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

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

Inputs

Champ

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

Champ

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.