![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.azureactivedirectory.kotlin.outputs.B2CResourceSKUResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.azureactivedirectory.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* SKU properties of the Azure AD B2C tenant. Learn more about Azure AD B2C billing at [aka.ms/b2cBilling](https://aka.ms/b2cBilling).
* @property name The name of the SKU for the tenant.
* @property tier The tier of the tenant.
*/
public data class B2CResourceSKUResponse(
public val name: String? = null,
public val tier: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.azureactivedirectory.outputs.B2CResourceSKUResponse): B2CResourceSKUResponse = B2CResourceSKUResponse(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
tier = javaType.tier().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy