steampipe plugin install francois2metz/ovh

Table: ovh_bill

List of all the bills of your account.

The ovh_bill table can be used to query information about your billing information.

Examples

List bills

select
id,
date,
price_with_tax
from
ovh_bill;

Get a bill

select
id,
date,
price_with_tax
from
ovh_bill
where
id = 'FRxxxxxxxx';

Schema for ovh_bill

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
categorytextCategory of the bill (autorenew, earlyrenewal...).
datetimestamp with time zoneDate of the bill.
idtext=ID of the bill.
order_idbigintOrder id.
passwordtextPassword to download the bill.
pdf_urltextURL to download the bill 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 bill.