com.pulumi.googlenative.vmmigration.v1.kotlin.outputs.ApplianceVersionResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.vmmigration.v1.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
* Describes an appliance version.
* @property critical Determine whether it's critical to upgrade the appliance to this version.
* @property releaseNotesUri Link to a page that contains the version release notes.
* @property uri A link for downloading the version.
* @property version The appliance version.
*/
public data class ApplianceVersionResponse(
public val critical: Boolean,
public val releaseNotesUri: String,
public val uri: String,
public val version: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.vmmigration.v1.outputs.ApplianceVersionResponse): ApplianceVersionResponse = ApplianceVersionResponse(
critical = javaType.critical(),
releaseNotesUri = javaType.releaseNotesUri(),
uri = javaType.uri(),
version = javaType.version(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy