![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.app.kotlin.inputs.CustomContainerTemplateArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.app.kotlin.inputs
import com.pulumi.azurenative.app.inputs.CustomContainerTemplateArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Custom container configuration.
* @property containers List of container definitions for the sessions of the session pool.
* @property ingress Session pool ingress configuration.
* @property registryCredentials Private container registry credentials for containers used by the sessions of the session pool.
*/
public data class CustomContainerTemplateArgs(
public val containers: Output>? = null,
public val ingress: Output? = null,
public val registryCredentials: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.app.inputs.CustomContainerTemplateArgs =
com.pulumi.azurenative.app.inputs.CustomContainerTemplateArgs.builder()
.containers(
containers?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.ingress(ingress?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.registryCredentials(
registryCredentials?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [CustomContainerTemplateArgs].
*/
@PulumiTagMarker
public class CustomContainerTemplateArgsBuilder internal constructor() {
private var containers: Output>? = null
private var ingress: Output? = null
private var registryCredentials: Output? = null
/**
* @param value List of container definitions for the sessions of the session pool.
*/
@JvmName("dldhndxypocpccys")
public suspend fun containers(`value`: Output>) {
this.containers = value
}
@JvmName("rnshwrlfaqigwdsi")
public suspend fun containers(vararg values: Output) {
this.containers = Output.all(values.asList())
}
/**
* @param values List of container definitions for the sessions of the session pool.
*/
@JvmName("rficrmquewnlools")
public suspend fun containers(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy