GroupArgs

data class GroupArgs(val description: Output<String>? = null, val directoryId: Output<String>? = null, val groupName: Output<String>? = null) : ConvertibleToJava<GroupArgs>

Provides a Cloud SSO Group resource. For information about Cloud SSO Group and how to use it, see What is Group.

NOTE: Available since v1.138.0.

Import

Cloud SSO Group can be imported using the id, e.g.

$ pulumi import alicloud:cloudsso/group:Group example <directory_id>:<group_id>

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, directoryId: Output<String>? = null, groupName: Output<String>? = null)

Properties

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

The Description of the group. The description can be up to 1024 characters long.

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

The ID of the Directory.

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

The Name of the group. The name must be 1 to 128 characters in length and can contain letters, digits, periods (.), underscores (_), and hyphens (-).

Functions

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