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

com.pulumi.alicloud.eds.kotlin.outputs.GetUsersUser.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: 3.62.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.alicloud.eds.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property email The email of the user email.
 * @property endUserId The Username. The custom setting is composed of lowercase letters, numbers and underscores, and the length is 3~24 characters.
 * @property id The ID of the user id.
 * @property phone The phone of the mobile phone number.
 * @property status The status of the resource.
 */
public data class GetUsersUser(
    public val email: String,
    public val endUserId: String,
    public val id: String,
    public val phone: String,
    public val status: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.alicloud.eds.outputs.GetUsersUser): GetUsersUser =
            GetUsersUser(
                email = javaType.email(),
                endUserId = javaType.endUserId(),
                id = javaType.id(),
                phone = javaType.phone(),
                status = javaType.status(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy