getGroupProvisionedUsers

The gitlab.getGroupProvisionedUsers data source allows details of the provisioned users of a given group. Upstream API: GitLab REST API docs

Return

A collection of values returned by getGroupProvisionedUsers.

Parameters

argument

A collection of arguments for invoking getGroupProvisionedUsers.


suspend fun getGroupProvisionedUsers(active: Boolean? = null, blocked: Boolean? = null, createdAfter: String? = null, createdBefore: String? = null, id: String, provisionedUsers: List<GetGroupProvisionedUsersProvisionedUser>? = null, search: String? = null, username: String? = null): GetGroupProvisionedUsersResult

Return

A collection of values returned by getGroupProvisionedUsers.

Parameters

active

Return only active provisioned users.

blocked

Return only blocked provisioned users.

createdAfter

Return only provisioned users created on or after the specified date. Expected in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ).

createdBefore

Return only provisioned users created on or before the specified date. Expected in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ).

id

The ID or URL-encoded path of the group.

provisionedUsers

The list of provisioned users.

search

The search query to filter the provisioned users.

username

The username of the provisioned user.

See also


Return

A collection of values returned by getGroupProvisionedUsers.

Parameters

argument

Builder for com.pulumi.gitlab.kotlin.inputs.GetGroupProvisionedUsersPlainArgs.

See also