com.pulumi.gitlab.kotlin.outputs.GetProjectSharedWithGroup.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 groupAccessLevel The access_level permission level of the shared group.
* @property groupFullPath The full path of the group shared with.
* @property groupId The ID of the group shared with.
* @property groupName The name of the group shared with.
*/
public data class GetProjectSharedWithGroup(
public val groupAccessLevel: Int,
public val groupFullPath: String,
public val groupId: Int,
public val groupName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gitlab.outputs.GetProjectSharedWithGroup): GetProjectSharedWithGroup = GetProjectSharedWithGroup(
groupAccessLevel = javaType.groupAccessLevel(),
groupFullPath = javaType.groupFullPath(),
groupId = javaType.groupId(),
groupName = javaType.groupName(),
)
}
}