ScriptActionProfileResponse

data class ScriptActionProfileResponse(val name: String, val parameters: String? = null, val services: List<String>, val shouldPersist: Boolean? = null, val timeoutInMinutes: Int? = null, val type: String, val url: String)

The script action profile.

Constructors

Link copied to clipboard
constructor(name: String, parameters: String? = null, services: List<String>, shouldPersist: Boolean? = null, timeoutInMinutes: Int? = null, type: String, url: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Script name.

Link copied to clipboard
val parameters: String? = null

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

Link copied to clipboard

List of services to apply the script action.

Link copied to clipboard
val shouldPersist: Boolean? = null

Specify if the script should persist on the cluster.

Link copied to clipboard
val timeoutInMinutes: Int? = null

Timeout duration for the script action in minutes.

Link copied to clipboard

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

Link copied to clipboard
val url: String

Url of the script file.