com.pulumi.azurenative.avs.kotlin.outputs.SkuResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.avs.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The resource model definition representing SKU
* @property name The name of the SKU.
*/
public data class SkuResponse(
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.avs.outputs.SkuResponse): SkuResponse =
SkuResponse(
name = javaType.name(),
)
}
}