Append

yaml
type: "io.kestra.plugin.azure.storage.adls.update.Append"

Append data to an existing file from Azure Data Lake Storage.

Examples

yaml
id: azure_storage_datalake_append
namespace: company.team

tasks:
  - id: read_file
    type: io.kestra.plugin.azure.storage.adls.Append
    endpoint: "https://yourblob.blob.core.windows.net"
    sasToken: "{{ secret('SAS_TOKEN') }}"
    fileSystem: "mydata"
    filePath: "path/to/myfile"
    data: "Text to append"

Properties

data

  • Type: string
  • Dynamic: ✔️
  • Required: ✔️

Data

endpoint

  • Type: string
  • Dynamic: ✔️
  • Required: ✔️

The blob service endpoint.

filePath

  • Type: string
  • Dynamic: ✔️
  • Required: ✔️

File path

Full path of the file in its file system

fileSystem

  • Type: string
  • Dynamic: ✔️
  • Required: ✔️

The name of the file systems. If the path name contains special characters, pass in the url encoded version of the path name.

connectionString

  • Type: string
  • Dynamic: ✔️
  • Required:

Connection string of the Storage Account.

sasToken

  • Type: string
  • Dynamic: ✔️
  • Required:

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.

sharedKeyAccountAccessKey

  • Type: string
  • Dynamic: ✔️
  • Required:

Shared Key access key for authenticating requests.

sharedKeyAccountName

  • Type: string
  • Dynamic: ✔️
  • Required:

Shared Key account name for authenticating requests.

Was this page helpful?