VMExtensionArgs

data class VMExtensionArgs(val autoUpgradeMinorVersion: Output<Boolean>? = null, val enableAutomaticUpgrade: Output<Boolean>? = null, val name: Output<String>, val protectedSettings: Output<Any>? = null, val provisionAfterExtensions: Output<List<String>>? = null, val publisher: Output<String>, val settings: Output<Any>? = null, val type: Output<String>, val typeHandlerVersion: Output<String>? = null) : ConvertibleToJava<VMExtensionArgs>

Constructors

Link copied to clipboard
constructor(autoUpgradeMinorVersion: Output<Boolean>? = null, enableAutomaticUpgrade: Output<Boolean>? = null, name: Output<String>, protectedSettings: Output<Any>? = null, provisionAfterExtensions: Output<List<String>>? = null, publisher: Output<String>, settings: Output<Any>? = null, type: Output<String>, typeHandlerVersion: Output<String>? = null)

Properties

Link copied to clipboard
val autoUpgradeMinorVersion: Output<Boolean>? = null

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.

Link copied to clipboard
val enableAutomaticUpgrade: Output<Boolean>? = null

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

Link copied to clipboard
val name: Output<String>
Link copied to clipboard
val protectedSettings: Output<Any>? = null

The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.

Link copied to clipboard
val provisionAfterExtensions: Output<List<String>>? = null

Collection of extension names after which this extension needs to be provisioned.

Link copied to clipboard
val publisher: Output<String>
Link copied to clipboard
val settings: Output<Any>? = null
Link copied to clipboard
val type: Output<String>
Link copied to clipboard
val typeHandlerVersion: Output<String>? = null

Functions

Link copied to clipboard
open override fun toJava(): VMExtensionArgs