turbot/steampipecloud
steampipe plugin install steampipecloud

Table: steampipecloud_organization_workspace_member

Organization Workspace members can collaborate and share connections and dashboards.

Examples

Basic info

select
id,
org_handle,
workspace_handle,
user_handle,
status,
role
from
steampipecloud_organization_workspace_member;

List invited members

select
id,
org_handle,
workspace_handle,
user_handle,
status,
role
from
steampipecloud_organization_workspace_member
where
status = 'invited';

List owners of an organization workspace

select
id,
org_handle,
workspace_handle,
user_handle,
status,
role
from
steampipecloud_organization_workspace_member
where
org_handle = 'testorg'
and workspace_handle = 'dev'
and role = 'owner';

Get details of a particular member in an organization workspace

select
id,
org_handle,
workspace_handle,
user_handle,
status,
role
from
steampipecloud_organization_workspace_member
where
org_handle = 'testorg'
and workspace_handle = 'dev'
and user_handle = 'myuser';

Schema for steampipecloud_organization_workspace_member

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
created_attimestamp with time zoneThe time when the member was added.
created_byjsonbInformation about the user who added the member.
created_by_idtextThe unique identifier of the user who added the member.
idtextThe unique identifier for the member.
org_handletext=The handle of the organization.
org_idtextThe unique identifier for the organization.
roletextThe role of the member.
scopetextThe scope of the role. Can be one of org / workspace.
statustextThe member current status.
updated_attimestamp with time zoneThe member's last update time.
updated_byjsonbInformation about the user who last updated the member.
updated_by_idtextThe unique identifier of the user who last updated the member.
userjsonbAdditional information about the user.
user_handletext=The handle name for the user.
user_idtextThe unique identifier for the user.
version_idbigintThe current version ID for the member.
workspace_handletext=The handle of the workspace.
workspace_idtextThe unique identifier for the workspace.