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?: string
Default: "data"
readonly command?: string
The command to be executed on a remote device
readonly cwd?: string
Default: "/"
readonly operation?: "upload" | "download" | "execute"
Default: "execute"
readonly options?: { ... }
Default: {}
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.
readonly resource?: "file" | "command"
Default: "command"
Default: "password"