Package version:

Describes the properties of a Machine Extension that can be updated.

interface ExtensionPatchParameters {
    enableAutomaticUpgrade?: boolean;
    protectedSettings?: any;
    settings?: any;
    typeHandlerVersion?: string;
}

Properties

enableAutomaticUpgrade?: boolean

Indicates whether the extension should be automatically upgraded by the platform if there is a newer version available.

protectedSettings?: any

Protected settings (may contain secrets).

settings?: any

Json formatted public settings for the extension.

typeHandlerVersion?: string

Specifies the version of the script handler. Latest version would be used if not specified.