
org.rundeck.api.RunAdhocScript Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rundeck-api-java-client Show documentation
Show all versions of rundeck-api-java-client Show documentation
Java client for the Rundeck REST API
package org.rundeck.api;
import java.io.InputStream;
/**
* An adhoc script to be executed by Rundeck
*/
public interface RunAdhocScript extends RunAdhoc {
/**
* InputStream for reading the script to be executed - mandatory
* @return
*/
InputStream getScript();
/**
* Arguments to the script
* @return
*/
String getArgString();
/**
* Command string to invoke the script with arguments
* @return
*/
String getScriptInterpreter();
/**
* If true, quote the script filepath and args to the script interpreter.
* @return
*/
Boolean getInterpreterArgsQuoted();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy