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
|
|
|
|
)
|
|
|
|
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,
|
|
|
|
f.features
|
|
|
|
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
|
|
|
|
where i.id = $1;
|