com.pulumi.gcp.cloudidentity.kotlin.outputs.GetGroupsGroup.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
import kotlin.collections.Map
/**
*
* @property additionalGroupKeys Additional group keys associated with the Group
* @property createTime The time when the Group was created.
* @property description An extended description to help users determine the purpose of a Group.
* @property displayName The display name of the Group.
* @property groupKeys EntityKey of the Group. Structure is documented below.
* @property initialGroupConfig The initial configuration options for creating a Group.
* See the
* [API reference](https://cloud.google.com/identity/docs/reference/rest/v1beta1/groups/create#initialgroupconfig)
* for possible values. Default value: "EMPTY" Possible values: ["INITIAL_GROUP_CONFIG_UNSPECIFIED", "WITH_INITIAL_OWNER", "EMPTY"]
* @property labels The labels that apply to the Group.
* Contains 'cloudidentity.googleapis.com/groups.discussion_forum': '' if the Group is a Google Group or
* 'system/groups/external': '' if the Group is an external-identity-mapped group.
* @property name Resource name of the Group in the format: groups/{group_id}, where `group_id` is the unique ID assigned to the Group.
* @property parent The parent resource under which to list all Groups. Must be of the form identitysources/{identity_source_id} for external- identity-mapped groups or customers/{customer_id} for Google Groups.
* @property updateTime The time when the Group was last updated.
*/
public data class GetGroupsGroup(
public val additionalGroupKeys: List,
public val createTime: String,
public val description: String,
public val displayName: String,
public val groupKeys: List,
public val initialGroupConfig: String,
public val labels: Map,
public val name: String,
public val parent: String,
public val updateTime: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudidentity.outputs.GetGroupsGroup): GetGroupsGroup = GetGroupsGroup(
additionalGroupKeys = javaType.additionalGroupKeys().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.cloudidentity.kotlin.outputs.GetGroupsGroupAdditionalGroupKey.Companion.toKotlin(args0)
})
}),
createTime = javaType.createTime(),
description = javaType.description(),
displayName = javaType.displayName(),
groupKeys = javaType.groupKeys().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.cloudidentity.kotlin.outputs.GetGroupsGroupGroupKey.Companion.toKotlin(args0)
})
}),
initialGroupConfig = javaType.initialGroupConfig(),
labels = javaType.labels().map({ args0 -> args0.key.to(args0.value) }).toMap(),
name = javaType.name(),
parent = javaType.parent(),
updateTime = javaType.updateTime(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy