com.pulumi.azure.storage.kotlin.outputs.GetAccountIdentity.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.storage.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property identityIds A list of User Assigned Managed Identity IDs assigned with the Identity of this Storage Account.
* @property principalId The Principal ID for the Service Principal associated with the Identity of this Storage Account.
* @property tenantId The Tenant ID for the Service Principal associated with the Identity of this Storage Account.
* @property type The type of Managed Service Identity that is configured on this Storage Account
*/
public data class GetAccountIdentity(
public val identityIds: List,
public val principalId: String,
public val tenantId: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.storage.outputs.GetAccountIdentity): GetAccountIdentity = GetAccountIdentity(
identityIds = javaType.identityIds().map({ args0 -> args0 }),
principalId = javaType.principalId(),
tenantId = javaType.tenantId(),
type = javaType.type(),
)
}
}