com.pulumi.gcp.cloudidentity.kotlin.outputs.GetGroupLookupResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.cloudidentity.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getGroupLookup.
* @property groupKey
* @property id The provider-assigned unique ID for this managed resource.
* @property name Resource name of the Group in the format: groups/{group_id}, where `group_id` is the unique ID assigned to the Group.
*/
public data class GetGroupLookupResult(
public val groupKey: GetGroupLookupGroupKey,
public val id: String,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudidentity.outputs.GetGroupLookupResult): GetGroupLookupResult = GetGroupLookupResult(
groupKey = javaType.groupKey().let({ args0 ->
com.pulumi.gcp.cloudidentity.kotlin.outputs.GetGroupLookupGroupKey.Companion.toKotlin(args0)
}),
id = javaType.id(),
name = javaType.name(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy