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

com.pulumi.azure.apimanagement.kotlin.outputs.GetUserResult.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.apimanagement.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A collection of values returned by getUser.
 * @property apiManagementName
 * @property email The Email Address used for this User.
 * @property firstName The First Name for the User.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property lastName The Last Name for the User.
 * @property note Any notes about this User.
 * @property resourceGroupName
 * @property state The current state of this User, for example `active`, `blocked` or `pending`.
 * @property userId
 */
public data class GetUserResult(
    public val apiManagementName: String,
    public val email: String,
    public val firstName: String,
    public val id: String,
    public val lastName: String,
    public val note: String,
    public val resourceGroupName: String,
    public val state: String,
    public val userId: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.apimanagement.outputs.GetUserResult):
            GetUserResult = GetUserResult(
            apiManagementName = javaType.apiManagementName(),
            email = javaType.email(),
            firstName = javaType.firstName(),
            id = javaType.id(),
            lastName = javaType.lastName(),
            note = javaType.note(),
            resourceGroupName = javaType.resourceGroupName(),
            state = javaType.state(),
            userId = javaType.userId(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy