Package version:

Interface GalleryApplicationCustomActionParameter

The definition of a parameter that can be passed to a custom action of a Gallery Application Version.

interface GalleryApplicationCustomActionParameter {
    defaultValue?: string;
    description?: string;
    name: string;
    required?: boolean;
    type?: GalleryApplicationCustomActionParameterType;
}

Properties

defaultValue?: string

The default value of the parameter. Only applies to string types

description?: string

A description to help users understand what this parameter means

name: string

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

required?: boolean

Indicates whether this parameter must be passed when running the custom action.

Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob