
com.pulumi.azurenative.cognitiveservices.kotlin.outputs.UserAssignedIdentityResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.cognitiveservices.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* User-assigned managed identity.
* @property clientId Client App Id associated with this identity.
* @property principalId Azure Active Directory principal ID associated with this Identity.
*/
public data class UserAssignedIdentityResponse(
public val clientId: String,
public val principalId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.cognitiveservices.outputs.UserAssignedIdentityResponse): UserAssignedIdentityResponse = UserAssignedIdentityResponse(
clientId = javaType.clientId(),
principalId = javaType.principalId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy