Interface CompressionNodeParameters

Source
interface CompressionNodeParameters {
    binaryPropertyName?: string;
    binaryPropertyOutput?: string;
    fileName?: string;
    operation?: "compress" | "decompress";
    outputFormat?: "gzip" | "zip";
    outputPrefix?: string;
}

Properties§

Source§

readonly binaryPropertyName?: string

To process more than one file, use a comma-separated list of the binary fields names Default: "data"

Source§

readonly binaryPropertyOutput?: string

Default: "data"

Source§

readonly fileName?: string

Name of the output file

Source§

readonly operation?: "compress" | "decompress"

Default: "decompress"

Source§

readonly outputFormat?: "gzip" | "zip"

Format of the output

Source§

readonly outputPrefix?: string

Prefix to add to the gzip file Default: "data"