 FileDecompress
FileDecompress
Decompress a file.
yaml
type: "io.kestra.plugin.compress.FileDecompress"Examples
yaml
id: file_decompress
namespace: company.team
inputs:
  - id: file
    description: File to be decompressed
    type: FILE
tasks:
  - id: decompress
    type: io.kestra.plugin.compress.FileDecompress
    from: "{{ inputs.file }}"
    compression: Z
Properties
compression *Requiredstring
 Possible Values 
BROTLIBZIP2DEFLATEDEFLATE64GZIPLZ4BLOCKLZ4FRAMELZMASNAPPYSNAPPYFRAMEXZZZSTDThe algorithm compression of the archive file
from *Requiredstring
The file's internal storage URI.
Pebble expression referencing an Internal Storage URI e.g. {{ outputs.mytask.uri }}.
Outputs
uri string
 Format 
uriURI of the decompressed file on Kestra's internal storage.
