com.pulumi.gitlab.kotlin.outputs.GetGroupProvisionedUsersResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gitlab-kotlin Show documentation
Show all versions of pulumi-gitlab-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gitlab.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getGroupProvisionedUsers.
* @property active Return only active provisioned users.
* @property blocked Return only blocked provisioned users.
* @property createdAfter Return only provisioned users created on or after the specified date. Expected in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ).
* @property createdBefore Return only provisioned users created on or before the specified date. Expected in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ).
* @property id The ID or URL-encoded path of the group.
* @property provisionedUsers The list of provisioned users.
* @property search The search query to filter the provisioned users.
* @property username The username of the provisioned user.
*/
public data class GetGroupProvisionedUsersResult(
public val active: Boolean? = null,
public val blocked: Boolean? = null,
public val createdAfter: String? = null,
public val createdBefore: String? = null,
public val id: String,
public val provisionedUsers: List? = null,
public val search: String? = null,
public val username: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gitlab.outputs.GetGroupProvisionedUsersResult): GetGroupProvisionedUsersResult = GetGroupProvisionedUsersResult(
active = javaType.active().map({ args0 -> args0 }).orElse(null),
blocked = javaType.blocked().map({ args0 -> args0 }).orElse(null),
createdAfter = javaType.createdAfter().map({ args0 -> args0 }).orElse(null),
createdBefore = javaType.createdBefore().map({ args0 -> args0 }).orElse(null),
id = javaType.id(),
provisionedUsers = javaType.provisionedUsers().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gitlab.kotlin.outputs.GetGroupProvisionedUsersProvisionedUser.Companion.toKotlin(args0)
})
}),
search = javaType.search().map({ args0 -> args0 }).orElse(null),
username = javaType.username().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy