com.pulumi.gcp.appengine.kotlin.inputs.FlexibleAppVersionDeploymentZipArgs.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.appengine.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.appengine.inputs.FlexibleAppVersionDeploymentZipArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property filesCount files count
* @property sourceUrl Source URL
*/
public data class FlexibleAppVersionDeploymentZipArgs(
public val filesCount: Output? = null,
public val sourceUrl: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.appengine.inputs.FlexibleAppVersionDeploymentZipArgs =
com.pulumi.gcp.appengine.inputs.FlexibleAppVersionDeploymentZipArgs.builder()
.filesCount(filesCount?.applyValue({ args0 -> args0 }))
.sourceUrl(sourceUrl.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FlexibleAppVersionDeploymentZipArgs].
*/
@PulumiTagMarker
public class FlexibleAppVersionDeploymentZipArgsBuilder internal constructor() {
private var filesCount: Output? = null
private var sourceUrl: Output? = null
/**
* @param value files count
*/
@JvmName("xmhhuetfxqiwqmke")
public suspend fun filesCount(`value`: Output) {
this.filesCount = value
}
/**
* @param value Source URL
*/
@JvmName("cjdsnxkncwfbkwnr")
public suspend fun sourceUrl(`value`: Output) {
this.sourceUrl = value
}
/**
* @param value files count
*/
@JvmName("wijhrlrveisfbjjp")
public suspend fun filesCount(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.filesCount = mapped
}
/**
* @param value Source URL
*/
@JvmName("llthrxtbhosujrup")
public suspend fun sourceUrl(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.sourceUrl = mapped
}
internal fun build(): FlexibleAppVersionDeploymentZipArgs = FlexibleAppVersionDeploymentZipArgs(
filesCount = filesCount,
sourceUrl = sourceUrl ?: throw PulumiNullFieldException("sourceUrl"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy