turbot/hcloud

GitHub
steampipe plugin install hcloudsteampipe plugin install hcloud

Table: hcloud_action

Query actions from your Hetzner Cloud account.

Examples

List create_server actions

select
*
from
hcloud_action
where
command = 'create_server'

Get a specific action

select
*
from
hcloud_action
where
id = 271232672

Actions in error

select
*
from
hcloud_action
where
status = 'error'
select
a.*
from
hcloud_action as a,
jsonb_array_elements(a.resources) as r
where
r ->> 'Type' = 'server'
and (r -> 'ID') :: int = 14462596

.inspect hcloud_action

Actions performed in the Hetzner Cloud account.

NameTypeDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
commandtextCommand executed in the Action.
errorjsonbError message for the Action if error occurred, otherwise null.
finishedtimestamp with time zonePoint in time when the Action was finished. Only set if the Action is finished otherwise null.
idbigintID of the Action.
progressbigintProgress of Action in percent.
resourcesjsonbResources the Action relates to.
startedtimestamp with time zonePoint in time when the Action was started.
statustextStatus of the Action: success, running, error.