
com.pulumi.azure.network.kotlin.outputs.GetApplicationGatewayIdentity.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.network.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property identityIds The list of User Assigned Managed Identity IDs assigned to this Application Gateway.
* @property principalId
* @property tenantId
* @property type The type of Managed Service Identity that is configured on this Application Gateway.
*/
public data class GetApplicationGatewayIdentity(
public val identityIds: List,
public val principalId: String,
public val tenantId: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.network.outputs.GetApplicationGatewayIdentity):
GetApplicationGatewayIdentity = GetApplicationGatewayIdentity(
identityIds = javaType.identityIds().map({ args0 -> args0 }),
principalId = javaType.principalId(),
tenantId = javaType.tenantId(),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy