![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.portal.kotlin.outputs.ConsolePropertiesResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.portal.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Cloud shell console properties.
* @property osType The operating system type of the cloud shell.
* @property provisioningState Provisioning state of the console.
* @property uri Uri of the console.
*/
public data class ConsolePropertiesResponse(
public val osType: String,
public val provisioningState: String,
public val uri: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.portal.outputs.ConsolePropertiesResponse): ConsolePropertiesResponse = ConsolePropertiesResponse(
osType = javaType.osType(),
provisioningState = javaType.provisioningState(),
uri = javaType.uri(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy