Copy a file within Azure Blob Storage.

yaml
type: "io.kestra.plugin.azure.storage.blob.Copy"
yaml
id: azure_storage_blob_copy
namespace: company.team

tasks:
  - id: copy
    type: io.kestra.plugin.azure.storage.blob.Copy
    from:
      container: "my-bucket"
      key: "path/to/file"
    to:
      container: "my-bucket2"
      key: "path/to/file2"
Properties

The blob service endpoint.

The source from where the file should be copied.

The destination to copy the file to.

Connection string of the Storage Account.

Default false

Whether to delete the source file after copy.

The SAS token to use for authenticating requests.

This string should only be the query parameters (with or without a leading '?') and not a full URL.

Shared Key access key for authenticating requests.

Shared Key account name for authenticating requests.

The copied blob.

Format uri

The blob container.

The full blob path on the container.