turbot/steampipecloud
steampipe plugin install steampipecloud

Table: steampipecloud_workspace_aggregator

Aggregators allow users to aggregate or search for data across multiple connections in a workspace.

Examples

Basic info

select
id,
handle,
identity_handle,
workspace_handle,
type,
plugin,
connections
from
steampipecloud_workspace_aggregator;

List aggregators for a specific workspace

select
id,
handle,
identity_handle,
workspace_handle,
type,
plugin,
connections
from
steampipecloud_workspace_aggregator
where
workspace_handle = 'dev';

List aggregators of plugin type aws for a specific workspace

select
id,
handle,
identity_handle,
workspace_handle,
type,
plugin,
connections
from
steampipecloud_workspace_aggregator
where
workspace_handle = 'dev'
and plugin = 'aws';

List aggregators created in the last 7 days for a specific workspace

select
id,
handle,
identity_handle,
workspace_handle,
type,
plugin,
connections
from
steampipecloud_workspace_aggregator
where
workspace_handle = 'dev'
and created_at >= now() - interval '7 days';

Schema for steampipecloud_workspace_aggregator

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
connectionsjsonbThe list of connections defined for the aggregator.
created_attimestamp with time zoneThe time when the aggregator was created.
created_byjsonbInformation about the user who created the aggregator.
created_by_idtextThe unique identifier of the user who created the aggregator.
handletext=The handle of the aggregator.
idtextThe unique identifier for the aggregator.
identity_handletext=The handle of the identity.
identity_idtext=The unique identifier of the identity to which the aggregator belongs to.
identity_typetextThe type of identity, can be org/user.
plugintextThe type of the aggregator connections.
typetextThe type of the resource.
updated_attimestamp with time zoneThe time when the aggregator was last updated.
updated_byjsonbInformation about the user who last updated the aggregator.
updated_by_idtextThe unique identifier of the user who last updated the aggregator.
version_idbigintThe current version ID for the aggregator.
workspace_handletext=The handle of the workspace.
workspace_idtext=The unique identifier for the workspace.