steampipe plugin install marekjalovec/make

Table: make_team

Teams are containers that contain scenarios and data accessible only by the members of the team.

Key columns

  • Provide a numeric id if you want to query for a specific Team.
  • Provide a numeric organization_id to query Teams for a specific Organization. This can be either set directly in a where clause, or specified as part of join with another table.

Examples

List of all Teams in the account

-- with Organization name embedded
select
t.id,
o.name || ' -> ' || t.name as name
from
make_organization o
join make_team t on t.organization_id = o.id
order by
name;
-- or a simplified version with own columns only
select
id,
name
from
make_team
order by
name;

List of all Teams in an Organization

select
id,
name
from
make_team
where
organization_id = 1
order by
name;

Detail of a Team

select
id,
name,
organization_id
from
make_team
where
id = 1;

Schema for make_team

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
idbigint=The Team ID.
nametextThe name of the Team.
organization_idbigintThe ID of the Organization.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
titletextThe display name for the resource.