![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.azurefleet.kotlin.outputs.UefiSettingsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.azurefleet.kotlin.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
* Specifies the security settings like secure boot and vTPM used while creating
* the virtual machine. Minimum api-version: 2020-12-01.
* @property secureBootEnabled Specifies whether secure boot should be enabled on the virtual machine. Minimum
* api-version: 2020-12-01.
* @property vTpmEnabled Specifies whether vTPM should be enabled on the virtual machine. Minimum
* api-version: 2020-12-01.
*/
public data class UefiSettingsResponse(
public val secureBootEnabled: Boolean? = null,
public val vTpmEnabled: Boolean? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.azurefleet.outputs.UefiSettingsResponse): UefiSettingsResponse = UefiSettingsResponse(
secureBootEnabled = javaType.secureBootEnabled().map({ args0 -> args0 }).orElse(null),
vTpmEnabled = javaType.vTpmEnabled().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy