
com.pulumi.azurenative.scom.kotlin.outputs.UserIdentityResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.scom.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Azure Active Directory identity configuration for a resource.
* @property clientId The Azure Active Directory client id.
* @property principalId The Azure Active Directory principal id.
*/
public data class UserIdentityResponse(
public val clientId: String,
public val principalId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.scom.outputs.UserIdentityResponse): UserIdentityResponse = UserIdentityResponse(
clientId = javaType.clientId(),
principalId = javaType.principalId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy