Azure Blob Storage Query

The Azure Blob Storage Query allows you to execute multiple methods to manage your Azure Blob Storage. You can select a specific method from a number of operations available under the Blob storage action type dropdown.

Blob Storage operation types

Here is a list of all available Blob Storage operation types:

List all containers

This method retrieves an iterable of containers.

Create container

This method creates a new container.

Delete container

This method deletes the specified container.

List all blobs

This method retrieves all blobs in the specified container.

Create blob

This method creates a blob in the specified container. Here, you need to select the specific container where you want to create a blob, give it a name, and select blob type.

Upload blob

This method uploads data to a blob.

Read blob

This method reads the content of a blob.

Delete blob

This method deletes a blob in the specified container.

Generate presigned url

This method generates a URL for a blob. Here, you need to make sure that you select the specific container and blob you want to generate the URL for, as well as specify the permissions.

Append to append blob

This method appends data to an append blob.

Write to page blob

This method writes a block of data to a specific byte range within a page blob.


For more details about Azure Blob Storage, check out their documentation.

Last updated

Was this helpful?