GroupArgs

data class GroupArgs(val displayName: Output<String>? = null, val groupId: Output<String>? = null, val name: Output<String>? = null, val project: Output<String>? = null) : ConvertibleToJava<GroupArgs>

Create a group.

Constructors

Link copied to clipboard
fun GroupArgs(displayName: Output<String>? = null, groupId: Output<String>? = null, name: Output<String>? = null, project: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): GroupArgs

Properties

Link copied to clipboard
val displayName: Output<String>? = null

The display name of the group.

Link copied to clipboard
val groupId: Output<String>? = null

Optional. The "alias" to use for the group, which will become the final component of the group's resource name. This value must be unique per project. The field is named groupId to comply with AIP guidance for user-specified IDs. This value should be 4-63 characters, and valid characters are /a-z-/. If not set, it will be generated based on the display name.

Link copied to clipboard
val name: Output<String>? = null

The name of the group resource. Format: projects/{project_number}/groups/{group_alias}

Link copied to clipboard
val project: Output<String>? = null