All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.eventgrid.kotlin.outputs.GetDomainIdentity.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.eventgrid.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 EventGrid Domain.
 * @property principalId The Principal ID of the System Assigned Managed Service Identity.
 * @property tenantId The Tenant ID of the System Assigned Managed Service Identity.
 * @property type The type of Managed Service Identity that is configured on this EventGrid Domain.
 */
public data class GetDomainIdentity(
    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.eventgrid.outputs.GetDomainIdentity): GetDomainIdentity = GetDomainIdentity(
            identityIds = javaType.identityIds().map({ args0 -> args0 }),
            principalId = javaType.principalId(),
            tenantId = javaType.tenantId(),
            type = javaType.type(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy