Download one or multiple files from your namespace files.
Use a regex glob pattern or a file path to download files from your namespace files. This can be useful to share code between projects and teams, which is located in different namespaces.
type: "io.kestra.plugin.core.namespace.DownloadFiles"
Download a namespace file.
id: download_file
namespace: company.team
tasks:
- id: download
type: io.kestra.plugin.core.namespace.DownloadFiles
namespace: tutorial
files:
- "**input.txt"
Download all namespace files from a specific namespace.
id: download_all_files
namespace: company.team
tasks:
- id: download
type: io.kestra.plugin.core.namespace.DownloadFiles
namespace: tutorial
files:
- "**"
A file or a list of files from the given namespace.
String or a list of strings; each string can either be a regex glob pattern or a file path URI.
The namespace from which you want to download files.
The folder where the downloaded files will be stored
Downloaded files.
The task returns a map containing the file path as a key and the file URI as a value.