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

com.pulumi.gitlab.kotlin.outputs.GetGroupIdsResult.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.String
import kotlin.Suppress

/**
 * A collection of values returned by getGroupIds.
 * @property group The ID or URL-encoded path of the group.
 * @property groupFullPath The full path of the group.
 * @property groupGraphqlId The GraphQL ID of the group.
 * @property groupId The ID of the group.
 * @property id
 */
public data class GetGroupIdsResult(
    public val group: String,
    public val groupFullPath: String,
    public val groupGraphqlId: String,
    public val groupId: String,
    public val id: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gitlab.outputs.GetGroupIdsResult): GetGroupIdsResult =
            GetGroupIdsResult(
                group = javaType.group(),
                groupFullPath = javaType.groupFullPath(),
                groupGraphqlId = javaType.groupGraphqlId(),
                groupId = javaType.groupId(),
                id = javaType.id(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy