com.pulumi.gcp.container.kotlin.outputs.ClusterNodePoolNodeConfigShieldedInstanceConfig.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.container.kotlin.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
*
* @property enableIntegrityMonitoring Defines if 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. Defaults to `true`.
* @property enableSecureBoot Defines if 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. Defaults to `false`.
*/
public data class ClusterNodePoolNodeConfigShieldedInstanceConfig(
public val enableIntegrityMonitoring: Boolean? = null,
public val enableSecureBoot: Boolean? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.ClusterNodePoolNodeConfigShieldedInstanceConfig): ClusterNodePoolNodeConfigShieldedInstanceConfig =
ClusterNodePoolNodeConfigShieldedInstanceConfig(
enableIntegrityMonitoring = javaType.enableIntegrityMonitoring().map({ args0 ->
args0
}).orElse(null),
enableSecureBoot = javaType.enableSecureBoot().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy