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

com.pulumi.gitlab.kotlin.outputs.GetGroupProvisionedUsersProvisionedUser.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: 8.4.2.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gitlab.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property avatarUrl The avatar URL of the provisioned user.
 * @property bio The bio of the provisioned user.
 * @property bot Whether the provisioned user is a bot.
 * @property confirmedAt The confirmation date of the provisioned user.
 * @property createdAt The creation date of the provisioned user.
 * @property email The email of the provisioned user.
 * @property external Whether the provisioned user is external.
 * @property id The ID of the provisioned user.
 * @property jobTitle The job title of the provisioned user.
 * @property lastActivityOn The last activity date of the provisioned user.
 * @property lastSignInAt The last sign-in date of the provisioned user.
 * @property linkedin The LinkedIn ID of the provisioned user.
 * @property location The location of the provisioned user.
 * @property name The name of the provisioned user.
 * @property organization The organization of the provisioned user.
 * @property privateProfile Whether the provisioned user has a private profile.
 * @property pronouns The pronouns of the provisioned user.
 * @property publicEmail The public email of the provisioned user.
 * @property skype The Skype ID of the provisioned user.
 * @property state The state of the provisioned user.
 * @property twitter The Twitter ID of the provisioned user.
 * @property twoFactorEnabled Whether two-factor authentication is enabled for the provisioned user.
 * @property username The username of the provisioned user.
 * @property webUrl The web URL of the provisioned user.
 * @property websiteUrl The website URL of the provisioned user.
 */
public data class GetGroupProvisionedUsersProvisionedUser(
    public val avatarUrl: String,
    public val bio: String,
    public val bot: Boolean,
    public val confirmedAt: String,
    public val createdAt: String,
    public val email: String,
    public val `external`: Boolean,
    public val id: String,
    public val jobTitle: String,
    public val lastActivityOn: String,
    public val lastSignInAt: String,
    public val linkedin: String,
    public val location: String,
    public val name: String,
    public val organization: String,
    public val privateProfile: Boolean,
    public val pronouns: String,
    public val publicEmail: String,
    public val skype: String,
    public val state: String,
    public val twitter: String,
    public val twoFactorEnabled: Boolean,
    public val username: String,
    public val webUrl: String,
    public val websiteUrl: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gitlab.outputs.GetGroupProvisionedUsersProvisionedUser): GetGroupProvisionedUsersProvisionedUser = GetGroupProvisionedUsersProvisionedUser(
            avatarUrl = javaType.avatarUrl(),
            bio = javaType.bio(),
            bot = javaType.bot(),
            confirmedAt = javaType.confirmedAt(),
            createdAt = javaType.createdAt(),
            email = javaType.email(),
            `external` = javaType.`external`(),
            id = javaType.id(),
            jobTitle = javaType.jobTitle(),
            lastActivityOn = javaType.lastActivityOn(),
            lastSignInAt = javaType.lastSignInAt(),
            linkedin = javaType.linkedin(),
            location = javaType.location(),
            name = javaType.name(),
            organization = javaType.organization(),
            privateProfile = javaType.privateProfile(),
            pronouns = javaType.pronouns(),
            publicEmail = javaType.publicEmail(),
            skype = javaType.skype(),
            state = javaType.state(),
            twitter = javaType.twitter(),
            twoFactorEnabled = javaType.twoFactorEnabled(),
            username = javaType.username(),
            webUrl = javaType.webUrl(),
            websiteUrl = javaType.websiteUrl(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy