
com.pulumi.azure.compute.kotlin.outputs.VirtualMachinePlan.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.compute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property name Specifies the name of the image from the marketplace.
* @property product Specifies the product of the image from the marketplace.
* @property publisher Specifies the publisher of the image.
*/
public data class VirtualMachinePlan(
public val name: String,
public val product: String,
public val publisher: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.VirtualMachinePlan): VirtualMachinePlan = VirtualMachinePlan(
name = javaType.name(),
product = javaType.product(),
publisher = javaType.publisher(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy