
com.pulumi.gcp.container.kotlin.outputs.ClusterNodePoolNodeConfigShieldedInstanceConfig.kt Maven / Gradle / Ivy
@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 - 2025 Weber Informatics LLC | Privacy Policy