![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.policy.kotlin.outputs.GetPolicyAssignmentIdentity.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.policy.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property identityIds A `identity_ids` block as defined below.
* @property principalId The Principal ID of the Policy Assignment for this Resource.
* @property tenantId The Tenant ID of the Policy Assignment for this Resource.
* @property type The Type of Managed Identity which is added to this Policy Assignment.
*/
public data class GetPolicyAssignmentIdentity(
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.policy.outputs.GetPolicyAssignmentIdentity): GetPolicyAssignmentIdentity = GetPolicyAssignmentIdentity(
identityIds = javaType.identityIds().map({ args0 -> args0 }),
principalId = javaType.principalId(),
tenantId = javaType.tenantId(),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy