com.pulumi.azure.aadb2c.kotlin.outputs.GetDirectoryResult.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.aadb2c.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* A collection of values returned by getDirectory.
* @property billingType The type of billing for the AAD B2C tenant. Possible values include: `MAU` or `Auths`.
* @property dataResidencyLocation Location in which the B2C tenant is hosted and data resides. See [official docs](https://aka.ms/B2CDataResidenc) for more information.
* @property domainName
* @property effectiveStartDate The date from which the billing type took effect. May not be populated until after the first billing cycle.
* @property id The provider-assigned unique ID for this managed resource.
* @property resourceGroupName
* @property skuName Billing SKU for the B2C tenant. See [official docs](https://aka.ms/b2cBilling) for more information.
* @property tags A mapping of tags assigned to the AAD B2C Directory.
* @property tenantId The Tenant ID for the AAD B2C tenant.
*/
public data class GetDirectoryResult(
public val billingType: String,
public val dataResidencyLocation: String,
public val domainName: String,
public val effectiveStartDate: String,
public val id: String,
public val resourceGroupName: String,
public val skuName: String,
public val tags: Map,
public val tenantId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.aadb2c.outputs.GetDirectoryResult):
GetDirectoryResult = GetDirectoryResult(
billingType = javaType.billingType(),
dataResidencyLocation = javaType.dataResidencyLocation(),
domainName = javaType.domainName(),
effectiveStartDate = javaType.effectiveStartDate(),
id = javaType.id(),
resourceGroupName = javaType.resourceGroupName(),
skuName = javaType.skuName(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
tenantId = javaType.tenantId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy