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