
com.pulumi.azure.batch.kotlin.outputs.GetPoolExtension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.batch.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property autoUpgradeMinorVersion 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.
* @property name The name of the user account.
* @property protectedSettings The extension can contain either `protected_settings` or `provision_after_extensions` or no protected settings at all.
* @property provisionAfterExtensions The collection of extension names. Collection of extension names after which this extension needs to be provisioned.
* @property publisher The name of the extension handler publisher.The name of the extension handler publisher.
* @property settingsJson JSON formatted public settings for the extension.
* @property type The type of container configuration.
* @property typeHandlerVersion The version of script handler.
*/
public data class GetPoolExtension(
public val autoUpgradeMinorVersion: Boolean,
public val name: String,
public val protectedSettings: String,
public val provisionAfterExtensions: List,
public val publisher: String,
public val settingsJson: String,
public val type: String,
public val typeHandlerVersion: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.batch.outputs.GetPoolExtension): GetPoolExtension =
GetPoolExtension(
autoUpgradeMinorVersion = javaType.autoUpgradeMinorVersion(),
name = javaType.name(),
protectedSettings = javaType.protectedSettings(),
provisionAfterExtensions = javaType.provisionAfterExtensions().map({ args0 -> args0 }),
publisher = javaType.publisher(),
settingsJson = javaType.settingsJson(),
type = javaType.type(),
typeHandlerVersion = javaType.typeHandlerVersion(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy