com.pulumi.azure.appplatform.kotlin.inputs.SpringCloudBuilderBuildPackGroupArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.appplatform.kotlin.inputs
import com.pulumi.azure.appplatform.inputs.SpringCloudBuilderBuildPackGroupArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property buildPackIds Specifies a list of the build pack's ID.
* @property name The name which should be used for this build pack group.
*/
public data class SpringCloudBuilderBuildPackGroupArgs(
public val buildPackIds: Output>? = null,
public val name: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.appplatform.inputs.SpringCloudBuilderBuildPackGroupArgs =
com.pulumi.azure.appplatform.inputs.SpringCloudBuilderBuildPackGroupArgs.builder()
.buildPackIds(buildPackIds?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.name(name.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SpringCloudBuilderBuildPackGroupArgs].
*/
@PulumiTagMarker
public class SpringCloudBuilderBuildPackGroupArgsBuilder internal constructor() {
private var buildPackIds: Output>? = null
private var name: Output? = null
/**
* @param value Specifies a list of the build pack's ID.
*/
@JvmName("xlripuxdwulpijpp")
public suspend fun buildPackIds(`value`: Output>) {
this.buildPackIds = value
}
@JvmName("urrfvqcoqnrwvwxy")
public suspend fun buildPackIds(vararg values: Output) {
this.buildPackIds = Output.all(values.asList())
}
/**
* @param values Specifies a list of the build pack's ID.
*/
@JvmName("pagpspjfdljckbyw")
public suspend fun buildPackIds(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy