2024-02-28 08:55:54 +00:00
|
|
|
with features as (
|
|
|
|
select instance_id, json_object_agg(
|
|
|
|
coalesce(i.key, s.key),
|
|
|
|
coalesce(i.value, s.value)
|
|
|
|
) features
|
|
|
|
from (select $1::text instance_id) x
|
|
|
|
cross join projections.system_features s
|
2024-03-05 15:12:49 +00:00
|
|
|
full outer join projections.instance_features2 i using (key, instance_id)
|
2024-02-28 08:55:54 +00:00
|
|
|
group by instance_id
|
2024-09-25 19:40:21 +00:00
|
|
|
), external_domains as (
|
|
|
|
select instance_id, array_agg(domain) as domains
|
|
|
|
from projections.instance_domains
|
|
|
|
where instance_id = $1
|
|
|
|
group by instance_id
|
|
|
|
), trusted_domains as (
|
|
|
|
select instance_id, array_agg(domain) as domains
|
|
|
|
from projections.instance_trusted_domains
|
|
|
|
where instance_id = $1
|
|
|
|
group by instance_id
|
2024-02-28 08:55:54 +00:00
|
|
|
)
|
|
|
|
select
|
|
|
|
i.id,
|
|
|
|
i.default_org_id,
|
|
|
|
i.iam_project_id,
|
|
|
|
i.console_client_id,
|
|
|
|
i.console_app_id,
|
|
|
|
i.default_language,
|
2024-02-28 10:21:11 +00:00
|
|
|
s.enable_iframe_embedding,
|
2024-02-28 08:55:54 +00:00
|
|
|
s.origins,
|
2024-02-28 10:21:11 +00:00
|
|
|
s.enable_impersonation,
|
2024-02-28 08:55:54 +00:00
|
|
|
l.audit_log_retention,
|
|
|
|
l.block,
|
2024-09-25 19:40:21 +00:00
|
|
|
f.features,
|
|
|
|
ed.domains as external_domains,
|
|
|
|
td.domains as trusted_domains
|
2024-02-28 08:55:54 +00:00
|
|
|
from projections.instances i
|
2024-02-28 10:21:11 +00:00
|
|
|
left join projections.security_policies2 s on i.id = s.instance_id
|
2024-02-28 08:55:54 +00:00
|
|
|
left join projections.limits l on i.id = l.instance_id
|
|
|
|
left join features f on i.id = f.instance_id
|
2024-09-25 19:40:21 +00:00
|
|
|
left join external_domains ed on i.id = ed.instance_id
|
|
|
|
left join trusted_domains td on i.id = td.instance_id
|
2024-02-28 08:55:54 +00:00
|
|
|
where i.id = $1;
|