com.pulumi.azurenative.eventhub.kotlin.outputs.IdentityResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.eventhub.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* Properties to configure Identity for Bring your Own Keys
* @property principalId ObjectId from the KeyVault
* @property tenantId TenantId from the KeyVault
* @property type Type of managed service identity.
* @property userAssignedIdentities Properties for User Assigned Identities
*/
public data class IdentityResponse(
public val principalId: String,
public val tenantId: String,
public val type: String? = null,
public val userAssignedIdentities: Map? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.eventhub.outputs.IdentityResponse): IdentityResponse = IdentityResponse(
principalId = javaType.principalId(),
tenantId = javaType.tenantId(),
type = javaType.type().map({ args0 -> args0 }).orElse(null),
userAssignedIdentities = javaType.userAssignedIdentities().map({ args0 ->
args0.key.to(
args0.value.let({ args0 ->
com.pulumi.azurenative.eventhub.kotlin.outputs.UserAssignedIdentityResponse.Companion.toKotlin(args0)
}),
)
}).toMap(),
)
}
}