PoolExtensionArgs

data class PoolExtensionArgs(val autoUpgradeMinorVersion: Output<Boolean>? = null, val automaticUpgradeEnabled: Output<Boolean>? = null, val name: Output<String>, val protectedSettings: Output<String>? = null, val provisionAfterExtensions: Output<List<String>>? = null, val publisher: Output<String>, val settingsJson: Output<String>? = null, val type: Output<String>, val typeHandlerVersion: Output<String>? = null) : ConvertibleToJava<PoolExtensionArgs>

Constructors

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

Properties

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

Indicates whether the extension should be automatically upgraded by the platform if there is a newer version available. Supported values are true and false.

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 name: Output<String>

The name of the virtual machine extension.

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

JSON formatted protected settings for the extension, the value should be encoded with jsonencode function. The extension can contain either protected_settings or provision_after_extensions or no protected settings at all.

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

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

Link copied to clipboard
val publisher: Output<String>

The name of the extension handler publisher.The name of the extension handler publisher.

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

JSON formatted public settings for the extension, the value should be encoded with jsonencode function.

Link copied to clipboard
val type: Output<String>

The type of the extensions.

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

The version of script handler.

Functions

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