Google Workspace Integration Discovered Resources
Ingested Resources & Properties
Users (user)
user)name
Email address of the user (used as the primary identifier)
email_address
Email address of the user
label
Display name of the user (from Google Workspace profile)
google_workspace_raw_user_object
Complete raw user object from Google Workspace Admin SDK Directory API, containing all available user properties and metadata
Note: The google_workspace_raw_user_object property contains the full user object returned by the Google Workspace Admin SDK, including fields such as:
User profile information (name, emails, organizations, etc.)
User status and lifecycle
User credentials and authentication settings
Custom attributes
And other Google Workspace-specific metadata
User Groups (user_group)
user_group)name
Display name of the group
subtype
Always "google_workspace" for groups observed from Google Workspace
native_id
Google Workspace group ID
created_at
Timestamp when the group was created in Google Workspace
members
List of user and group members that belong to this group. Each member entry is a dictionary with a uri key pointing to the member resource.
google_workspace_raw_group_object
Complete raw group object from Google Workspace Admin SDK Directory API, containing all available group properties and metadata
Note: The google_workspace_raw_group_object property contains the full group object returned by the Google Workspace Admin SDK, including:
Group profile information
Group email and description
Group settings and policies
And other Google Workspace-specific metadata
Relationships
Membership Relationships
The Google Workspace integration creates membership relationships between groups and their members (users or nested groups).
Group β Members
Groups have a members property that contains a list of member dictionaries. Each dictionary has:
uri: The URI of the member (user or group)
EQL Examples:
User β Groups
Users can be queried to find which groups they belong to using the membership relationship in reverse.
EQL Examples:
Resource URIs
User URI Format
Users are identified using the following URI format:
Examples:
User Group URI Format
Groups are identified using the following URI format:
Examples:
user_group.01abc123def456user_group.02xyz789ghi012
Nested Groups
Google Workspace supports nested groups (groups that are members of other groups). Euno observes these relationships:
When a group is a member of another group, it appears in the parent group's
memberslistThe nested group itself is also observed as a separate
user_groupresourceYou can traverse group hierarchies by following the
membersrelationships
Example: If Group A contains Group B, and Group B contains User X:
Group A's
memberswill include Group B's URIGroup B's
memberswill include User X's URIYou can query for all users in Group A (including nested members) by traversing the relationships
Last updated