steampipe plugin install francois2metz/ovh

Table: ovh_cloud_volume_snapshot

A volume snapshot a copy of the state of a storage volume at a particular point in time.

The ovh_cloud_volume_snapshot table can be used to query information about volumes snapshots and you must specify which cloud project in the where or join clause (where project_id=, join ovh_cloud_project on id=).

Examples

List volumes snapshots of a cloud project

select
id,
name
from
ovh_cloud_volume_snapshot
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'

List available volumes snapshots of a cloud project

select
id,
name
from
ovh_cloud_volume_snapshot
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'
and status = 'available'

Get one snapshot

select
id,
name
from
ovh_cloud_volume_snapshot
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'
and id = 'd82f4336533f4d16ad92bf7b9f3d87e2'

Schema for ovh_cloud_volume_snapshot

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
creationDatetimestamp with time zoneVolume Snapshot creation date.
descriptiontextVolume Snapshot Description.
idtext=Volume Snapshot ID.
nametextVolume Snapshot Name.
planCodetextVolume Snapshot Plan Code.
project_idtext=Project ID.
regiontextVolume Snapshot Region.
sizebigintVolume Snapshot size (in GB).
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
statustextVolume Snapshot Status. (available, creating, deleting, error, error_deleting).
volumeIdtextVolume Snapshot Source ID.