Azure Blob File

Provides a way to move large files into Azure Blob Storage or read large blobs into a local file.

Version History

1.0.0.9 - Added support for SAS Token authentication
1.0.0.10 - Added support for meta data, and connection injection
1.0.0.11 - Added the CreateContainerIfNotExist

Properties

Connection

Type: Connection

AccountName
Type: String
The name of the Azure Storage account

AuthMethod
Type: String
Selection to choose whether the AccountKey property contain the Account Key or a SAS Token.

AccountKey
Type: Password
The access key to use when accessing the Azure Storage account (shown under the Access Keys pane in the Azure portal)

Container
Type: String
The name of the container (shown in the Overview pane in the Azure portal)

Action

Type: List Input
The Action Property

CopyFileToBlob - Copy a local file into an Azure blob. If the blob already exists it will be overwritten.
CopyBlobToFile - Copy an Azure blob to a local file. If the file already exists, it will be overwritten.

BlobName

Type: String Input
The name of the Azure Blob within the container specified.

FilePath

Type: String Input
The path to a local file.

Remarks

Use this Node to transfer large files to and from Blob Storage via a DropPoint.

This Node leverages the Azure Storage SDK and includes automatic retry and multi-threaded transfers over https.

See Also

Azure Blob Storage