com.pulumi.gcp.notebooks.kotlin.outputs.RuntimeVirtualMachine.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 instanceId (Output)
* The unique identifier of the Managed Compute Engine instance.
* @property instanceName (Output)
* The user-friendly name of the Managed Compute Engine instance.
* @property virtualMachineConfig Virtual Machine configuration settings.
* Structure is documented below.
*/
public data class RuntimeVirtualMachine(
public val instanceId: String? = null,
public val instanceName: String? = null,
public val virtualMachineConfig: RuntimeVirtualMachineVirtualMachineConfig? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.notebooks.outputs.RuntimeVirtualMachine): RuntimeVirtualMachine = RuntimeVirtualMachine(
instanceId = javaType.instanceId().map({ args0 -> args0 }).orElse(null),
instanceName = javaType.instanceName().map({ args0 -> args0 }).orElse(null),
virtualMachineConfig = javaType.virtualMachineConfig().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.notebooks.kotlin.outputs.RuntimeVirtualMachineVirtualMachineConfig.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy