
com.pulumi.azurenative.containerservice.kotlin.outputs.ManagedClusterSKUResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.containerservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The SKU of a Managed Cluster.
* @property name The name of a managed cluster SKU.
* @property tier If not specified, the default is 'Free'. See [AKS Pricing Tier](https://learn.microsoft.com/azure/aks/free-standard-pricing-tiers) for more details.
*/
public data class ManagedClusterSKUResponse(
public val name: String? = null,
public val tier: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.containerservice.outputs.ManagedClusterSKUResponse): ManagedClusterSKUResponse = ManagedClusterSKUResponse(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
tier = javaType.tier().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy