com.pulumi.gcp.notebooks.kotlin.outputs.EnvironmentVmImage.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.notebooks.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property imageFamily Use this VM image family to find the image; the newest image in this family will be used.
* @property imageName Use VM image name to find the image.
* @property project The name of the Google Cloud project that this VM image belongs to.
* Format: projects/{project_id}
*/
public data class EnvironmentVmImage(
public val imageFamily: String? = null,
public val imageName: String? = null,
public val project: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.notebooks.outputs.EnvironmentVmImage): EnvironmentVmImage = EnvironmentVmImage(
imageFamily = javaType.imageFamily().map({ args0 -> args0 }).orElse(null),
imageName = javaType.imageName().map({ args0 -> args0 }).orElse(null),
project = javaType.project(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy