com.pulumi.gcp.clouddeploy.kotlin.inputs.AutomationSelectorArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.clouddeploy.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.clouddeploy.inputs.AutomationSelectorArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property targets Contains attributes about a target.
* Structure is documented below.
*/
public data class AutomationSelectorArgs(
public val targets: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.clouddeploy.inputs.AutomationSelectorArgs =
com.pulumi.gcp.clouddeploy.inputs.AutomationSelectorArgs.builder()
.targets(
targets.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [AutomationSelectorArgs].
*/
@PulumiTagMarker
public class AutomationSelectorArgsBuilder internal constructor() {
private var targets: Output>? = null
/**
* @param value Contains attributes about a target.
* Structure is documented below.
*/
@JvmName("nyosyjkwqtnmlfoo")
public suspend fun targets(`value`: Output>) {
this.targets = value
}
@JvmName("rkoyybfnhysraytf")
public suspend fun targets(vararg values: Output) {
this.targets = Output.all(values.asList())
}
/**
* @param values Contains attributes about a target.
* Structure is documented below.
*/
@JvmName("hueixboblxvywgcj")
public suspend fun targets(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy