
com.pulumi.googlenative.containeranalysis.v1alpha1.kotlin.inputs.DeployableArgs.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.v1alpha1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.containeranalysis.v1alpha1.inputs.DeployableArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* An artifact that can be deployed in some runtime.
* @property resourceUri Resource URI for the artifact being deployed.
*/
public data class DeployableArgs(
public val resourceUri: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.containeranalysis.v1alpha1.inputs.DeployableArgs =
com.pulumi.googlenative.containeranalysis.v1alpha1.inputs.DeployableArgs.builder()
.resourceUri(resourceUri?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [DeployableArgs].
*/
@PulumiTagMarker
public class DeployableArgsBuilder internal constructor() {
private var resourceUri: Output>? = null
/**
* @param value Resource URI for the artifact being deployed.
*/
@JvmName("cvpbfkweuuaggqmf")
public suspend fun resourceUri(`value`: Output>) {
this.resourceUri = value
}
@JvmName("xxwgsthdtxthwpwh")
public suspend fun resourceUri(vararg values: Output) {
this.resourceUri = Output.all(values.asList())
}
/**
* @param values Resource URI for the artifact being deployed.
*/
@JvmName("velwxivjrmvhryqh")
public suspend fun resourceUri(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy