
com.pulumi.azure.compute.kotlin.outputs.SharedImageIdentifier.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.compute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property offer The Offer Name for this Shared Image. Changing this forces a new resource to be created.
* @property publisher The Publisher Name for this Gallery Image. Changing this forces a new resource to be created.
* @property sku The Name of the SKU for this Gallery Image. Changing this forces a new resource to be created.
*/
public data class SharedImageIdentifier(
public val offer: String,
public val publisher: String,
public val sku: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.SharedImageIdentifier): SharedImageIdentifier = SharedImageIdentifier(
offer = javaType.offer(),
publisher = javaType.publisher(),
sku = javaType.sku(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy