![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.compute.kotlin.outputs.GetPlatformImageResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.compute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getPlatformImage.
* @property id The provider-assigned unique ID for this managed resource.
* @property location
* @property offer
* @property publisher
* @property sku
* @property version
*/
public data class GetPlatformImageResult(
public val id: String,
public val location: String,
public val offer: String,
public val publisher: String,
public val sku: String,
public val version: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.GetPlatformImageResult): GetPlatformImageResult = GetPlatformImageResult(
id = javaType.id(),
location = javaType.location(),
offer = javaType.offer(),
publisher = javaType.publisher(),
sku = javaType.sku(),
version = javaType.version(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy