VirtualMachineScaleSetExtensionProperties Class
Describes the properties of a Virtual Machine Scale Set Extension.
Constructor
VirtualMachineScaleSetExtensionProperties(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
force_update_tag
|
If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed. |
|
publisher
|
The name of the extension handler publisher. |
|
type
|
Specifies the type of the extension; an example is "CustomScriptExtension". |
|
type_handler_version
|
Specifies the version of the script handler. |
|
auto_upgrade_minor_version
|
Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true. |
|
enable_automatic_upgrade
|
Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available. |
|
settings
|
Json formatted public settings for the extension. |
|
protected_settings
|
The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all. |
|
provisioning_state
|
The provisioning state, which only appears in the response. |
|
provision_after_extensions
|
Collection of extension names after which this extension needs to be provisioned. |
|
suppress_failures
|
Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false. |
|
protected_settings_from_key_vault
|
The extensions protected settings that are passed by reference, and consumed from key vault. |
Attributes
auto_upgrade_minor_version
Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
auto_upgrade_minor_version: bool | None
enable_automatic_upgrade
Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
enable_automatic_upgrade: bool | None
force_update_tag
If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
force_update_tag: str | None
protected_settings
The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
protected_settings: Any | None
protected_settings_from_key_vault
The extensions protected settings that are passed by reference, and consumed from key vault.
protected_settings_from_key_vault: _models.KeyVaultSecretReference | None
provision_after_extensions
Collection of extension names after which this extension needs to be provisioned.
provision_after_extensions: list[str] | None
provisioning_state
The provisioning state, which only appears in the response.
provisioning_state: str | None
publisher
The name of the extension handler publisher.
publisher: str | None
settings
Json formatted public settings for the extension.
settings: Any | None
suppress_failures
Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
suppress_failures: bool | None
type
Specifies the type of the extension; an example is "CustomScriptExtension".
type: str | None
type_handler_version
Specifies the version of the script handler.
type_handler_version: str | None