ScriptExecution
Script Execution resource allows you to run a script in a runspace. The API allows you to create, cancel, and retrieve script executions.
Properties
Content of the script.
Unique identifier of the runspace where script execution is performed.
Unique identifier for the object.
Name of the script execution. It is optional to give a name of the script execution on create request. If name was not specified on the script execution creation, the field has null value.
Reason for the current script execution state. In most of the cases reason field will be empty. In case of an error or cancellation reason will contain information about the reason that caused script execution to become in this state.
Time at which the script execution was finished. String representing time in format ISO 8601.
List of arguments that will be passed to the script. If script content defines parameters argument can be provided. The parameter names defined in the script content should match the names specified in this list.
Time at which the script execution was started. String representing time in format ISO 8601.
ScriptExecutionState defines possible script execution states.
Possible values are: success , error , running , canceled
JSON Example
{
"runspace_id": "string",
"script": "string"
}
Parameter To
Create Script Execution
Returned By
List Script Executions
Create Script Execution
Get Script Execution