com.pulumi.gitlab.kotlin.outputs.GetGroupBillableMemberMembershipsResult.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.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getGroupBillableMemberMemberships.
* @property groupId The ID of the group.
* @property id The id of the data source. It will always be equal to the user_id
* @property memberships group- and/or project-memberships of the user.
* @property userId The ID of the user.
*/
public data class GetGroupBillableMemberMembershipsResult(
public val groupId: String,
public val id: String,
public val memberships: List,
public val userId: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gitlab.outputs.GetGroupBillableMemberMembershipsResult): GetGroupBillableMemberMembershipsResult = GetGroupBillableMemberMembershipsResult(
groupId = javaType.groupId(),
id = javaType.id(),
memberships = javaType.memberships().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gitlab.kotlin.outputs.GetGroupBillableMemberMembershipsMembership.Companion.toKotlin(args0)
})
}),
userId = javaType.userId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy