All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.container.kotlin.inputs.ClusterClusterAutoscalingAutoProvisioningDefaultsShieldedInstanceConfigArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.container.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.container.inputs.ClusterClusterAutoscalingAutoProvisioningDefaultsShieldedInstanceConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @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 ClusterClusterAutoscalingAutoProvisioningDefaultsShieldedInstanceConfigArgs(
    public val enableIntegrityMonitoring: Output? = null,
    public val enableSecureBoot: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.container.inputs.ClusterClusterAutoscalingAutoProvisioningDefaultsShieldedInstanceConfigArgs =
        com.pulumi.gcp.container.inputs.ClusterClusterAutoscalingAutoProvisioningDefaultsShieldedInstanceConfigArgs.builder()
            .enableIntegrityMonitoring(enableIntegrityMonitoring?.applyValue({ args0 -> args0 }))
            .enableSecureBoot(enableSecureBoot?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ClusterClusterAutoscalingAutoProvisioningDefaultsShieldedInstanceConfigArgs].
 */
@PulumiTagMarker
public class ClusterClusterAutoscalingAutoProvisioningDefaultsShieldedInstanceConfigArgsBuilder
internal constructor() {
    private var enableIntegrityMonitoring: Output? = null

    private var enableSecureBoot: Output? = null

    /**
     * @param value 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`.
     */
    @JvmName("gryrhpkbtxpcikav")
    public suspend fun enableIntegrityMonitoring(`value`: Output) {
        this.enableIntegrityMonitoring = value
    }

    /**
     * @param value 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`.
     */
    @JvmName("ttxijjwwoxjsouly")
    public suspend fun enableSecureBoot(`value`: Output) {
        this.enableSecureBoot = value
    }

    /**
     * @param value 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`.
     */
    @JvmName("vwlagqntqlsdeybo")
    public suspend fun enableIntegrityMonitoring(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.enableIntegrityMonitoring = mapped
    }

    /**
     * @param value 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`.
     */
    @JvmName("fkqiqphkiyxbasvy")
    public suspend fun enableSecureBoot(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.enableSecureBoot = mapped
    }

    internal fun build(): ClusterClusterAutoscalingAutoProvisioningDefaultsShieldedInstanceConfigArgs = ClusterClusterAutoscalingAutoProvisioningDefaultsShieldedInstanceConfigArgs(
        enableIntegrityMonitoring = enableIntegrityMonitoring,
        enableSecureBoot = enableSecureBoot,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy