Package version:

The script action profile.

interface ScriptActionProfile {
    name: string;
    parameters?: string;
    services: string[];
    shouldPersist?: boolean;
    timeoutInMinutes?: number;
    type: string;
    url: string;
}

Properties

name: string

Script name.

parameters?: string

Additional parameters for the script action. It should be space-separated list of arguments required for script execution.

services: string[]

List of services to apply the script action.

shouldPersist?: boolean

Specify if the script should persist on the cluster.

timeoutInMinutes?: number

Timeout duration for the script action in minutes.

type: string

Type of the script action. Supported type is bash scripts.

url: string

Url of the script file.