interface CompressionNodeParameters {
binaryPropertyName?: string;
binaryPropertyOutput?: string;
fileName?: string;
operation?: "compress" | "decompress";
outputFormat?: "gzip" | "tar" | "targz" | "zip";
outputPrefix?: string;
}
Properties§
§
§
§
§
§
§
readonly binary Property Name?: string
readonly binary Property Output?: string
Default: "data"
readonly file Name?: string
Name of the output file
readonly operation?: "compress" | "decompress"
Default: "decompress"
readonly output Format?: "gzip" | "tar" | "targz" | "zip"
Format of the output
readonly output Prefix?: string
Prefix to add to the gzip file Default: "data"
To process more than one file, use a comma-separated list of the binary fields names Default: "data"