Package version:

Interface RunCommandDocument

Describes the properties of a Run Command.

interface RunCommandDocument {
    description: string;
    id: string;
    label: string;
    osType: OperatingSystemTypes;
    parameters?: RunCommandParameterDefinition[];
    schema: string;
    script: string[];
}

Hierarchy (view full)

Properties

description: string

The VM run command description.

id: string

The VM run command id.

label: string

The VM run command label.

The Operating System type.

The parameters used by the script.

schema: string

The VM run command schema.

script: string[]

The script to be executed.