com.pulumi.gitlab.kotlin.outputs.GetGroupBillableMemberMembershipsMembership.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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gitlab.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property accessLevel Access-level of the member. For details see: https://docs.gitlab.com/ee/api/access_requests.html#valid-access-levels
* @property createdAt Datetime when the membership was first added.
* @property expiresAt Date when the membership will end.
* @property id The id of the membership.
* @property sourceFullName Breadcrumb-style, full display-name of the group or project.
* @property sourceId The id of the group or project, the user is a (direct) member of.
* @property sourceMembersUrl URL to the members-page of the group or project.
*/
public data class GetGroupBillableMemberMembershipsMembership(
public val accessLevel: String,
public val createdAt: String,
public val expiresAt: String,
public val id: Int,
public val sourceFullName: String,
public val sourceId: Int,
public val sourceMembersUrl: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gitlab.outputs.GetGroupBillableMemberMembershipsMembership): GetGroupBillableMemberMembershipsMembership = GetGroupBillableMemberMembershipsMembership(
accessLevel = javaType.accessLevel(),
createdAt = javaType.createdAt(),
expiresAt = javaType.expiresAt(),
id = javaType.id(),
sourceFullName = javaType.sourceFullName(),
sourceId = javaType.sourceId(),
sourceMembersUrl = javaType.sourceMembersUrl(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy