ScriptActionArgs

data class ScriptActionArgs(val name: Output<String>, val parameters: Output<String>? = null, val roles: Output<Any>, val uri: Output<String>) : ConvertibleToJava<ScriptActionArgs>

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

Constructors

Link copied to clipboard
constructor(name: Output<String>, parameters: Output<String>? = null, roles: Output<Any>, uri: Output<String>)

Properties

Link copied to clipboard
val name: Output<String>

The user provided name of the script action.

Link copied to clipboard
val parameters: Output<String>? = null

The parameters for the script action.

Link copied to clipboard
val roles: Output<Any>

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

Link copied to clipboard
val uri: Output<String>

The URI for the script action.

Functions

Link copied to clipboard
open override fun toJava(): ScriptActionArgs