steampipe plugin install francois2metz/ovh

Table: ovh_refund

List of all the refunds of your account.

The ovh_refund table can be used to query information about your refund information.

Examples

List refunds

select
id,
date,
original_bill_id,
price_with_tax
from
ovh_refund;

Get a refund

select
id,
date,
original_bill_id,
price_with_tax
from
ovh_refund
where
id = 'AFRxxxxxxx';

Schema for ovh_refund

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
datetimestamp with time zoneDate of the refund.
idtext=ID of the refund.
order_idbigintOrder id.
original_bill_idtextOriginal Bill id.
passwordtextPassword to download the refund document.
pdf_urltextURL to download the refund document in PDF format (maybe same as url field).
price_with_taxdouble precisionPrice with tax.
price_without_taxdouble precisionPrice without tax.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
taxdouble precisionAmount of the tax.
urltextURL to download the refund document.