Skip to main content

Azure Blob Storage Connector

Azure Blob Storage Manage files and folders within Azure Blob Storage

Connections

Connection String

Authenticates requests to Azure Blob Sotrage with a connection string.

InputCommentsDefault
Connection StringProvide the connection string for your active directory account.

Storage Shared Key

Authenticates requests to Azure Blob Sotrage with a Storage Shared Key of a account name and key.

InputCommentsDefault
Account NameProvide the name for your active directory account.
Account KeyProvide the key for your active directory account.

Actions

Append to Append Blob

Append blocks to an existing append blob

InputCommentsDefault
Container NameAzure blob 'container' stores files. You can create a container within the Azure console. Container names contain only letters, numbers, and dashes.
Blob NameA blob is a file that is saved in a 'container'. This represents the blob's key (file path). Include a leading /.
File ContentsThe contents to write to a blob. This can be a string of text, it can be binary data (like an image or PDF) that was generated in a previous step.
Connection

Create Append Blob

Create an empty append blob object (use "Append to Append Blob" to add blocks)

InputCommentsDefault
Container NameAzure blob 'container' stores files. You can create a container within the Azure console. Container names contain only letters, numbers, and dashes.
Blob NameA blob is a file that is saved in a 'container'. This represents the blob's key (file path). Include a leading /.
Connection

Create Container

Create a container

InputCommentsDefault
Container NameAzure blob 'container' stores files. You can create a container within the Azure console. Container names contain only letters, numbers, and dashes.
Connection

Create Page Blob

Create a page blob with a specific size (must be a multiple of 512 bytes)

InputCommentsDefault
Container NameAzure blob 'container' stores files. You can create a container within the Azure console. Container names contain only letters, numbers, and dashes.
Blob NameA blob is a file that is saved in a 'container'. This represents the blob's key (file path). Include a leading /.
Page Blob SizeSpace can be reserved in Azure Blob Store in 512-byte chunks. This must be a multiple of 512 (e.g. 1024, 1536, 2048, etc.).
Connection

Delete Blob

Delete a blob

InputCommentsDefault
Container NameAzure blob 'container' stores files. You can create a container within the Azure console. Container names contain only letters, numbers, and dashes.
Blob NameA blob is a file that is saved in a 'container'. This represents the blob's key (file path). Include a leading /.
Connection

Delete Container

Delete a container

InputCommentsDefault
Container NameAzure blob 'container' stores files. You can create a container within the Azure console. Container names contain only letters, numbers, and dashes.
Connection

Download Blob

Download a blob

InputCommentsDefault
Container NameAzure blob 'container' stores files. You can create a container within the Azure console. Container names contain only letters, numbers, and dashes.
Blob NameA blob is a file that is saved in a 'container'. This represents the blob's key (file path). Include a leading /.
Connection

Generate Shared Access Signature URL

Generate a pre-signed URL (Shared Access Signature or SAS) for a blob

InputCommentsDefault
Connection
Container NameAzure blob 'container' stores files. You can create a container within the Azure console. Container names contain only letters, numbers, and dashes.
Blob NameA blob is a file that is saved in a 'container'. This represents the file's name.
SAS Starts OnThe time at which the Shared Access Signature becomes valid. This must be in ISO 8601 format.
SAS PermissionsThe permissions that are specified for the signedPermissions on the SAS token indicate which operations a client may perform on the resource. You can combine permissions to permit a client to perform multiple operations with the same SAS. Permissions must be provided in the following order: 'racwdxltmeop'. Examples of valid permissions settings for a container include: 'rw', 'rd', 'rl', 'wd', 'wl' and 'rl'. Full list of permissions and their meanings can be found at:https://learn.microsoft.com/en-us/rest/api/storageservices/create-service-sas#permissions-for-a-directory-container-or-blob
SAS Expires OnThe time at which the Shared Access Signature becomes invalid. This must be in ISO 8601 format.

List Blobs

Get a list of blobs in a container

InputCommentsDefault
Container NameAzure blob 'container' stores files. You can create a container within the Azure console. Container names contain only letters, numbers, and dashes.
PrefixList only blobs prefixed with this string. For example, if you only want blobs in a directory called 'unprocessed', you can enter 'unprocessed/'. If this is left blank, all files in the selected bucket will be listed.
Connection

List Containers

Get a list of containers available in the account

InputCommentsDefault
Connection

Resize Page Blob

Resize an existing page blob (must be a multiple of 512 bytes)

InputCommentsDefault
Container NameAzure blob 'container' stores files. You can create a container within the Azure console. Container names contain only letters, numbers, and dashes.
Blob NameA blob is a file that is saved in a 'container'. This represents the blob's key (file path). Include a leading /.
Page Blob SizeSpace can be reserved in Azure Blob Store in 512-byte chunks. This must be a multiple of 512 (e.g. 1024, 1536, 2048, etc.).
Connection

Upload Block Blob

Upload file data to a block blob object

InputCommentsDefault
Container NameAzure blob 'container' stores files. You can create a container within the Azure console. Container names contain only letters, numbers, and dashes.
Blob NameA blob is a file that is saved in a 'container'. This represents the blob's key (file path). Include a leading /.
File ContentsThe contents to write to a blob. This can be a string of text, it can be binary data (like an image or PDF) that was generated in a previous step.
Connection

Upload to Page Blob

Upload to an existing page blob (both data size and offset must be a multiple of 512)

InputCommentsDefault
Container NameAzure blob 'container' stores files. You can create a container within the Azure console. Container names contain only letters, numbers, and dashes.
Blob NameA blob is a file that is saved in a 'container'. This represents the blob's key (file path). Include a leading /.
Page Blob OffsetYou can begin to write to an Azure blob starting at a particular block. This value must be a multiple of 512 (e.g. 1024, 1536, 2048, etc.).
File ContentsThe contents to write to a blob. This can be a string of text, it can be binary data (like an image or PDF) that was generated in a previous step.
Connection