
com.pulumi.googlenative.containeranalysis.v1.kotlin.inputs.EnvelopeSignatureArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.containeranalysis.v1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.containeranalysis.v1.inputs.EnvelopeSignatureArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property keyid
* @property sig
*/
public data class EnvelopeSignatureArgs(
public val keyid: Output? = null,
public val sig: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.containeranalysis.v1.inputs.EnvelopeSignatureArgs =
com.pulumi.googlenative.containeranalysis.v1.inputs.EnvelopeSignatureArgs.builder()
.keyid(keyid?.applyValue({ args0 -> args0 }))
.sig(sig?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EnvelopeSignatureArgs].
*/
@PulumiTagMarker
public class EnvelopeSignatureArgsBuilder internal constructor() {
private var keyid: Output? = null
private var sig: Output? = null
/**
* @param value
*/
@JvmName("kdhcakjhafsliiqx")
public suspend fun keyid(`value`: Output) {
this.keyid = value
}
/**
* @param value
*/
@JvmName("vtdjnciwyxjxaefk")
public suspend fun sig(`value`: Output) {
this.sig = value
}
/**
* @param value
*/
@JvmName("hqgyvoiwolkjohvc")
public suspend fun keyid(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyid = mapped
}
/**
* @param value
*/
@JvmName("hdbybpqljovqvnmm")
public suspend fun sig(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.sig = mapped
}
internal fun build(): EnvelopeSignatureArgs = EnvelopeSignatureArgs(
keyid = keyid,
sig = sig,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy