steampipe plugin install theapsgroup/gitlab

Table: gitlab_group_member

A group member is a user that is associated to a specific group.

The gitlab_group_member table can be used to query information members of a specific group.

However, you must specify a group_id in the where or join clause.

Examples

List all members for a specific group

select
*
from
gitlab_group_member
where
group_id = 123;

Schema for gitlab_group_member

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
access_desctextThe descriptive of the access level held by the group member.
access_levelbigintThe access level the group member holds within the group.
avatar_urltextThe url of the group members avatar.
expires_attimestamp with time zoneThe date of expiration from the group for the group member.
group_idbigint=The group id - link to gitlab_group.id`.
idbigintThe id of the group member - link to `gitlab_user.id`
nametextThe name of the group member.
statetextThe state of the group member active, blocked, etc
usernametextThe username of the group member - link to `gitlab_user.username`.
web_urltextThe url for profile of the group member.