
com.pulumi.gcp.cloudidentity.kotlin.outputs.GetGroupLookupResult.kt Maven / Gradle / Ivy
@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 - 2025 Weber Informatics LLC | Privacy Policy