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

com.pulumi.gcp.containeranalysis.kotlin.inputs.NoteAttestationAuthorityHintArgs.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.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.containeranalysis.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.containeranalysis.inputs.NoteAttestationAuthorityHintArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property humanReadableName The human readable name of this Attestation Authority, for
 * example "qa".
 * - - -
 */
public data class NoteAttestationAuthorityHintArgs(
    public val humanReadableName: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.containeranalysis.inputs.NoteAttestationAuthorityHintArgs =
        com.pulumi.gcp.containeranalysis.inputs.NoteAttestationAuthorityHintArgs.builder()
            .humanReadableName(humanReadableName.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [NoteAttestationAuthorityHintArgs].
 */
@PulumiTagMarker
public class NoteAttestationAuthorityHintArgsBuilder internal constructor() {
    private var humanReadableName: Output? = null

    /**
     * @param value The human readable name of this Attestation Authority, for
     * example "qa".
     * - - -
     */
    @JvmName("maeuvtcaasjyaigd")
    public suspend fun humanReadableName(`value`: Output) {
        this.humanReadableName = value
    }

    /**
     * @param value The human readable name of this Attestation Authority, for
     * example "qa".
     * - - -
     */
    @JvmName("iynkqqdbakrghrod")
    public suspend fun humanReadableName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.humanReadableName = mapped
    }

    internal fun build(): NoteAttestationAuthorityHintArgs = NoteAttestationAuthorityHintArgs(
        humanReadableName = humanReadableName ?: throw PulumiNullFieldException("humanReadableName"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy