All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.appengine.kotlin.outputs.StandardAppVersionDeployment.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.appengine.kotlin.outputs

import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @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 StandardAppVersionDeployment(
    public val files: List? = null,
    public val zip: StandardAppVersionDeploymentZip? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.appengine.outputs.StandardAppVersionDeployment): StandardAppVersionDeployment = StandardAppVersionDeployment(
            files = javaType.files().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.appengine.kotlin.outputs.StandardAppVersionDeploymentFile.Companion.toKotlin(args0)
                })
            }),
            zip = javaType.zip().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.appengine.kotlin.outputs.StandardAppVersionDeploymentZip.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy