com.pulumi.azure.datashare.kotlin.outputs.AccountIdentity.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.datashare.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property principalId The Principal ID for the Service Principal associated with the Identity of this Data Share Account.
* @property tenantId The Tenant ID for the Service Principal associated with the Identity of this Data Share Account.
* @property type Specifies the type of Managed Service Identity that should be configured on this Data Share Account. The only possible value is `SystemAssigned`. Changing this forces a new resource to be created.
* > **NOTE:** The assigned `principal_id` and `tenant_id` can be retrieved after the identity `type` has been set to `SystemAssigned` and the Data Share Account has been created. More details are available below.
*/
public data class AccountIdentity(
public val principalId: String? = null,
public val tenantId: String? = null,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.datashare.outputs.AccountIdentity): AccountIdentity = AccountIdentity(
principalId = javaType.principalId().map({ args0 -> args0 }).orElse(null),
tenantId = javaType.tenantId().map({ args0 -> args0 }).orElse(null),
type = javaType.type(),
)
}
}