getProjectMembership

The gitlab.ProjectMembership data source allows to list and filter all members of a project specified by either its id or full path.

Note exactly one of project_id or full_path must be provided. Upstream API: GitLab REST API docs

Return

A collection of values returned by getProjectMembership.

Parameters

argument

A collection of arguments for invoking getProjectMembership.


suspend fun getProjectMembership(fullPath: String? = null, inherited: Boolean? = null, projectId: Int? = null, query: String? = null, userIds: List<Int>? = null): GetProjectMembershipResult

Return

A collection of values returned by getProjectMembership.

Parameters

fullPath

The full path of the project.

inherited

Return all project members including members through ancestor groups

projectId

The ID of the project.

query

A query string to search for members

userIds

List of user ids to filter members by

See also


Return

A collection of values returned by getProjectMembership.

Parameters

argument

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

See also