PoolExtension

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

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

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

The name of the virtual machine extension.

Link copied to clipboard

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

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

Link copied to clipboard

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

Link copied to clipboard
val settingsJson: String? = null

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

Link copied to clipboard

The type of the extensions.

Link copied to clipboard

The version of script handler.