
com.pulumi.azure.compute.kotlin.outputs.GetPlatformImageResult.kt Maven / Gradle / Ivy
@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