Download Download

yaml
type: "io.kestra.plugin.fs.smb.Download"

Download file from SMB (Samba for eg.) server

Examples

yaml
id: fs_smb_download
namespace: company.team

tasks:
  - id: download
    type: io.kestra.plugin.fs.smb.Download
    host: localhost
    port: 445
    username: foo
    password: pass
    from: "/my_share/file.txt"

Properties

from

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

The fully-qualified URIs that point to destination path

host

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

Hostname of the remote server

password

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

Password on the remote server

port

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

Port of the remote server

username

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

Username on the remote server

Outputs

from

  • Type: string
  • Required:
  • Format: uri

The fully-qualified URIs that point to source data

to

  • Type: string
  • Required:
  • Format: uri

The fully-qualified URIs that point to destination path

Definitions

Was this page helpful?