com.pulumi.azure.logicapps.kotlin.outputs.GetStandardIdentity.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.logicapps.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property principalId The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
* @property tenantId The Tenant ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
* @property type The Type of Managed Identity assigned to this Logic App Workflow.
*/
public data class GetStandardIdentity(
public val principalId: String,
public val tenantId: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.logicapps.outputs.GetStandardIdentity): GetStandardIdentity = GetStandardIdentity(
principalId = javaType.principalId(),
tenantId = javaType.tenantId(),
type = javaType.type(),
)
}
}