com.pulumi.azure.authorization.kotlin.outputs.GetUserAssignedIdentityResult.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.authorization.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* A collection of values returned by getUserAssignedIdentity.
* @property clientId The Client ID of the User Assigned Identity.
* @property id The provider-assigned unique ID for this managed resource.
* @property location The Azure location where the User Assigned Identity exists.
* @property name
* @property principalId The Service Principal ID of the User Assigned Identity.
* @property resourceGroupName
* @property tags A mapping of tags assigned to the User Assigned Identity.
* @property tenantId The Tenant ID of the User Assigned Identity.
*/
public data class GetUserAssignedIdentityResult(
public val clientId: String,
public val id: String,
public val location: String,
public val name: String,
public val principalId: String,
public val resourceGroupName: String,
public val tags: Map,
public val tenantId: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.authorization.outputs.GetUserAssignedIdentityResult):
GetUserAssignedIdentityResult = GetUserAssignedIdentityResult(
clientId = javaType.clientId(),
id = javaType.id(),
location = javaType.location(),
name = javaType.name(),
principalId = javaType.principalId(),
resourceGroupName = javaType.resourceGroupName(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
tenantId = javaType.tenantId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy