com.pulumi.gcp.compute.kotlin.outputs.GetInstanceSerialPortResult.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.compute.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getInstanceSerialPort.
* @property contents The output of the serial port. Serial port output is available only when the VM instance is running, and logs are limited to the most recent 1 MB of output per port.
* @property id The provider-assigned unique ID for this managed resource.
* @property instance
* @property port
* @property project
* @property zone
*/
public data class GetInstanceSerialPortResult(
public val contents: String,
public val id: String,
public val instance: String,
public val port: Int,
public val project: String,
public val zone: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.GetInstanceSerialPortResult): GetInstanceSerialPortResult = GetInstanceSerialPortResult(
contents = javaType.contents(),
id = javaType.id(),
instance = javaType.instance(),
port = javaType.port(),
project = javaType.project(),
zone = javaType.zone(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy