turbot/oci_insights

Query: objectstorage_objects_for_objectstorage_bucket

Usage

powerpipe query oci_insights.query.objectstorage_objects_for_objectstorage_bucket

SQL

select
o.name as object_name
from
oci_objectstorage_object as o
left join oci_objectstorage_bucket as b on b.name = o.bucket_name
where
b.id = $1;