ovh_billovh_bill_detailovh_cloud_ai_appovh_cloud_ai_jobovh_cloud_ai_notebookovh_cloud_data_jobovh_cloud_databaseovh_cloud_flavorovh_cloud_imageovh_cloud_instanceovh_cloud_postgresovh_cloud_projectovh_cloud_regionovh_cloud_ssh_keyovh_cloud_storage_s3ovh_cloud_storage_swiftovh_cloud_volumeovh_cloud_volume_snapshotovh_refundovh_refund_detail
Table: ovh_cloud_storage_s3
An S3 storage is an S3 object storage.
The ovh_cloud_storage_s3
table can be used to query information about storage containers and you must specify which cloud project AND region in the where clause (where project_id=xxxx and region=xxxx
).
Examples
List S3 storage containers of a cloud project
select name, owner_id, objects_count, objects_sizefrom ovh_cloud_storage_s3where project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8' and region = 'GRA'
List specific storage container
select name, owner_id, objects_count, objects_sizefrom ovh_cloud_storage_s3where project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8' and region = 'GRA' and name = 'databucket'
Schema for ovh_cloud_storage_s3
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
created_at | timestamp with time zone | The date and timestamp when the resource was created. | |
encryption_sse_algorithm | text | Encryption configuration. | |
name | text | = | Container name. |
objects_count | bigint | Container total objects count. | |
objects_size | bigint | Container total objects size (bytes). | |
owner_id | bigint | Container owner userID. | |
project_id | text | = | Project ID. |
region | text | = | Region of the container. |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
virtual_host | text | Container virtual host. |