Uploads
yaml
type: "io.kestra.plugin.fs.smb.Uploads"
Upload files to a SMB (Samba for eg.) server's directory.
Examples
yaml
id: "uploads"
type: "io.kestra.plugin.fs.smb.Uploads"
host: localhost
port: 445
username: foo
password: pass
from:
- "{{ outputs.taskid1.uri }}"
- "{{ outputs.taskid2.uri }}"
to: "/my_share/dir2"
Properties
from
- Type:
- string
- array
- Dynamic: ✔️
- Required: ✔️
The files to upload, must be internal storage URIs, must be a list of URIs or a pebble template that returns a list of URIs
host
- Type: string
- Dynamic: ✔️
- Required: ✔️
Hostname of the remote server
to
- Type: string
- Dynamic: ✔️
- Required: ✔️
The destination directory
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
files
- Type: array
- SubType: string
- Dynamic: ❓
- Required: ❌
The fully-qualified URIs that point to the uploaded files on remote
Definitions
Was this page helpful?