ExtensionPatchParameters interface
Describes the properties of a Machine Extension that can be updated.
Properties
| enable |
Indicates whether the extension should be automatically upgraded by the platform if there is a newer version available. |
| protected |
Protected settings (may contain secrets). |
| settings | Json formatted public settings for the extension. |
| type |
Specifies the version of the script handler. Latest version would be used if not specified. |
Property Details
enableAutomaticUpgrade
Indicates whether the extension should be automatically upgraded by the platform if there is a newer version available.
enableAutomaticUpgrade?: boolean
Property Value
boolean
protectedSettings
Protected settings (may contain secrets).
protectedSettings?: Record<string, unknown>
Property Value
Record<string, unknown>
settings
Json formatted public settings for the extension.
settings?: Record<string, unknown>
Property Value
Record<string, unknown>
typeHandlerVersion
Specifies the version of the script handler. Latest version would be used if not specified.
typeHandlerVersion?: string
Property Value
string