GalleryApplicationCustomActionArgs

data class GalleryApplicationCustomActionArgs(val description: Output<String>? = null, val name: Output<String>, val parameters: Output<List<GalleryApplicationCustomActionParameterArgs>>? = null, val script: Output<String>) : ConvertibleToJava<GalleryApplicationCustomActionArgs>

A custom action that can be performed with a Gallery Application Version.

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, name: Output<String>, parameters: Output<List<GalleryApplicationCustomActionParameterArgs>>? = null, script: Output<String>)

Properties

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

Description to help the users understand what this custom action does.

Link copied to clipboard
val name: Output<String>

The name of the custom action. Must be unique within the Gallery Application Version.

Link copied to clipboard

The parameters that this custom action uses

Link copied to clipboard
val script: Output<String>

The script to run when executing this custom action.

Functions

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