
com.pulumi.azure.compute.kotlin.outputs.GetSharedImagePurchasePlan.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.compute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property name The name of the Shared Image.
* @property product (Optional) The Purchase Plan Product for this Gallery Image.
* @property publisher (Optional) The Purchase Plan Publisher for this Gallery Image.
*/
public data class GetSharedImagePurchasePlan(
public val name: String,
public val product: String,
public val publisher: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.GetSharedImagePurchasePlan): GetSharedImagePurchasePlan = GetSharedImagePurchasePlan(
name = javaType.name(),
product = javaType.product(),
publisher = javaType.publisher(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy