Copy a file within Azure Blob Storage.
yaml
type: "io.kestra.plugin.azure.storage.blob.Copy"
Examples
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
endpoint *Requiredstring
The blob service endpoint.
from *RequiredCopy-CopyObject
The source from where the file should be copied.
to *RequiredCopy-CopyObject
The destination to copy the file to.
connectionString string
Connection string of the Storage Account.
delete booleanstring
Default
false
Whether to delete the source file after copy.
sasToken string
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.
Outputs
blob Blob
The copied blob.
Definitions
io.kestra.plugin.azure.storage.blob.models.Blob
container string
name string
size integer
uri string
Format
uri
io.kestra.plugin.azure.storage.blob.Copy-CopyObject
container *Requiredstring
The blob container.
name *Requiredstring
The full blob path on the container.