Interface SshNodeParameters

Source
interface SshNodeParameters {
    authentication?: "password" | "privateKey";
    binaryPropertyName?: string;
    command?: string;
    cwd?: string;
    operation?: "upload" | "download" | "execute";
    options?: { fileName?: string };
    path?: string;
    resource?: "file" | "command";
}

Properties§

Source§

readonly authentication?: "password" | "privateKey"

Default: "password"

Source§

readonly binaryPropertyName?: string

Default: "data"

Source§

readonly command?: string

The command to be executed on a remote device

Source§

readonly cwd?: string

Default: "/"

Source§

readonly operation?: "upload" | "download" | "execute"

Default: "execute"

Source§

readonly options?: { fileName?: string }

Default: {}

Source§

readonly path?: string

The directory to upload the file to. The name of the file does not need to be specified, it's taken from the binary data file name. To override this behavior, set the parameter "File Name" under options.

Source§

readonly resource?: "file" | "command"

Default: "command"