com.pulumi.gcp.notebooks.kotlin.outputs.RuntimeVirtualMachineVirtualMachineConfigShieldedInstanceConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.notebooks.kotlin.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
*
* @property enableIntegrityMonitoring Defines whether the instance has integrity monitoring enabled.
* Enables monitoring and attestation of the boot integrity of
* the instance. The attestation is performed against the
* integrity policy baseline. This baseline is initially derived
* from the implicitly trusted boot image when the instance is
* created. Enabled by default.
* @property enableSecureBoot Defines whether the instance has Secure Boot enabled.Secure
* Boot helps ensure that the system only runs authentic software
* by verifying the digital signature of all boot components, and
* halting the boot process if signature verification fails.
* Disabled by default.
* @property enableVtpm Defines whether the instance has the vTPM enabled. Enabled by
* default.
*/
public data class RuntimeVirtualMachineVirtualMachineConfigShieldedInstanceConfig(
public val enableIntegrityMonitoring: Boolean? = null,
public val enableSecureBoot: Boolean? = null,
public val enableVtpm: Boolean? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.notebooks.outputs.RuntimeVirtualMachineVirtualMachineConfigShieldedInstanceConfig): RuntimeVirtualMachineVirtualMachineConfigShieldedInstanceConfig =
RuntimeVirtualMachineVirtualMachineConfigShieldedInstanceConfig(
enableIntegrityMonitoring = javaType.enableIntegrityMonitoring().map({ args0 ->
args0
}).orElse(null),
enableSecureBoot = javaType.enableSecureBoot().map({ args0 -> args0 }).orElse(null),
enableVtpm = javaType.enableVtpm().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy