![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.compute.kotlin.outputs.SharedImagePurchasePlan.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
/**
*
* @property name The Purchase Plan Name for this Shared Image. Changing this forces a new resource to be created.
* @property product The Purchase Plan Product for this Gallery Image. Changing this forces a new resource to be created.
* @property publisher The Purchase Plan Publisher for this Gallery Image. Changing this forces a new resource to be created.
*/
public data class SharedImagePurchasePlan(
public val name: String,
public val product: String? = null,
public val publisher: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.SharedImagePurchasePlan): SharedImagePurchasePlan = SharedImagePurchasePlan(
name = javaType.name(),
product = javaType.product().map({ args0 -> args0 }).orElse(null),
publisher = javaType.publisher().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy