steampipe plugin install francois2metz/ovh

Table: ovh_bill_detail

Details of the bill of your account.

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

Examples

List details of one bill

select
*
from
ovh_bill_detail
where
bill_id = 'FRxxxxxx';

Get one detail of one bill

select
*
from
ovh_bill_detail
where
bill_id = 'FRxxxxxxxx'
and id = 'FRxxxxxxxx';

Schema for ovh_bill_detail

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
bill_idtext=ID of bill.
descriptiontextDescription of detail.
domaintextDomain.
idtext=ID of detail's bill.
period_endtimestamp with time zonePeriod end of the product detail.
period_starttimestamp with time zonePeriod start of the product detail.
quantitytextQuantity of detail.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
total_pricedouble precisionTotal price of this detail.
unit_pricedouble precisionUnit price of this detail.