Interface RundeckNodeParameters

Source
interface RundeckNodeParameters {
    arguments?: {
        arguments: { name?: string; value?: string }[];
    };
    filter?: string;
    jobid?: string;
    operation?: "getMetadata"
    | "execute";
    resource?: "job";
}

Properties§

Source§

readonly arguments?: { arguments: { name?: string; value?: string }[] }

Default: {} Type options: {"multipleValues":true}

Source§

readonly filter?: string

Filter Rundeck nodes by name

Source§

readonly jobid?: string

The job ID to execute

Source§

readonly operation?: "getMetadata" | "execute"

Default: "execute"

Source§

readonly resource?: "job"

Default: "job"