com.pulumi.gcp.cloudidentity.kotlin.outputs.GetGroupsResult.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
import kotlin.collections.List
/**
* A collection of values returned by getGroups.
* @property groups The list of groups under the provided customer or namespace. Structure is documented below.
* @property id The provider-assigned unique ID for this managed resource.
* @property parent
*/
public data class GetGroupsResult(
public val groups: List,
public val id: String,
public val parent: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudidentity.outputs.GetGroupsResult): GetGroupsResult = GetGroupsResult(
groups = javaType.groups().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.cloudidentity.kotlin.outputs.GetGroupsGroup.Companion.toKotlin(args0)
})
}),
id = javaType.id(),
parent = javaType.parent(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy