Package version:

Custom script action to run on HDI ondemand cluster once it's up.

interface ScriptAction {
    name: string;
    parameters?: string;
    roles: any;
    uri: string;
}

Properties

name: string

The user provided name of the script action.

parameters?: string

The parameters for the script action.

roles: any

The node types on which the script action should be executed.

uri: string

The URI for the script action.