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