interface SshNodeParameters {
authentication?: "password" | "privateKey";
binaryPropertyName?: string;
command?: string;
cwd?: string;
operation?: "upload" | "download" | "execute";
options?: { fileName?: string };
path?: string;
resource?: "file" | "command";
}Properties§
§§§§§§§
readonly authentication?: "password" | "privateKey"§
readonly binary Property Name?: stringDefault: "data"
readonly command?: stringThe command to be executed on a remote device
readonly cwd?: stringDefault: "/"
readonly operation?: "upload" | "download" | "execute"Default: "execute"
readonly options?: { ... }Default: {}
readonly path?: stringThe 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.
readonly resource?: "file" | "command"Default: "command"
Default: "password"