Package version:

Interface GalleryApplicationCustomAction

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

interface GalleryApplicationCustomAction {
    description?: string;
    name: string;
    parameters?: GalleryApplicationCustomActionParameter[];
    script: string;
}

Properties

description?: string

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

name: string

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

The parameters that this custom action uses

script: string

The script to run when executing this custom action.