com.pulumi.gcp.appengine.kotlin.inputs.StandardAppVersionDeploymentArgs.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.StandardAppVersionDeploymentArgs.builder
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
/**
*
* @property files Manifest of the files stored in Google Cloud Storage that are included as part of this version.
* All files must be readable using the credentials supplied with this call.
* Structure is documented below.
* @property zip Zip File
* Structure is documented below.
*/
public data class StandardAppVersionDeploymentArgs(
public val files: Output>? = null,
public val zip: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.appengine.inputs.StandardAppVersionDeploymentArgs =
com.pulumi.gcp.appengine.inputs.StandardAppVersionDeploymentArgs.builder()
.files(files?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.zip(zip?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [StandardAppVersionDeploymentArgs].
*/
@PulumiTagMarker
public class StandardAppVersionDeploymentArgsBuilder internal constructor() {
private var files: Output>? = null
private var zip: Output? = null
/**
* @param value Manifest of the files stored in Google Cloud Storage that are included as part of this version.
* All files must be readable using the credentials supplied with this call.
* Structure is documented below.
*/
@JvmName("juosctrgualqhpib")
public suspend fun files(`value`: Output>) {
this.files = value
}
@JvmName("gndvywcudhvgohar")
public suspend fun files(vararg values: Output) {
this.files = Output.all(values.asList())
}
/**
* @param values Manifest of the files stored in Google Cloud Storage that are included as part of this version.
* All files must be readable using the credentials supplied with this call.
* Structure is documented below.
*/
@JvmName("mjurlviyqphogntg")
public suspend fun files(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy