com.pulumi.gcp.cloudidentity.kotlin.outputs.GetGroupMembershipsResult.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 getGroupMemberships.
* @property group
* @property id The provider-assigned unique ID for this managed resource.
* @property memberships The list of memberships under the given group. Structure is documented below.
*/
public data class GetGroupMembershipsResult(
public val group: String,
public val id: String,
public val memberships: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudidentity.outputs.GetGroupMembershipsResult): GetGroupMembershipsResult = GetGroupMembershipsResult(
group = javaType.group(),
id = javaType.id(),
memberships = javaType.memberships().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.cloudidentity.kotlin.outputs.GetGroupMembershipsMembership.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy