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

com.pulumi.azure.arcmachine.kotlin.outputs.GetIdentity.kt Maven / Gradle / Ivy

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

package com.pulumi.azure.arcmachine.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property principalId The principal ID of resource identity.
 * @property tenantId The tenant ID of resource.
 * @property type The identity type.
 */
public data class GetIdentity(
    public val principalId: String,
    public val tenantId: String,
    public val type: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.arcmachine.outputs.GetIdentity): GetIdentity =
            GetIdentity(
                principalId = javaType.principalId(),
                tenantId = javaType.tenantId(),
                type = javaType.type(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy