describe_bills
Retrieve detailed billing summaries for Alibaba Cloud RDS database instances or billing items within a specified period. Input billing cycles and optional instance ID or billing item flag to generate accurate consumption reports.
Instructions
Query the consumption summary of all product instances or billing items for a user within a specific billing period.
Args:
billing_cycles: bill cycle YYYY-MM, e.g. 2020-03
db_instance_id: DB instance id (e.g., "rm-xxx")
is_billing_item: Whether to pull data according to the billing item dimension.
Returns:
str: billing information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
billing_cycles | Yes | ||
db_instance_id | No | ||
is_billing_item | No |
Input Schema (JSON Schema)
{
"properties": {
"billing_cycles": {
"items": {
"type": "string"
},
"title": "Billing Cycles",
"type": "array"
},
"db_instance_id": {
"default": null,
"title": "Db Instance Id",
"type": "string"
},
"is_billing_item": {
"default": false,
"title": "Is Billing Item",
"type": "boolean"
}
},
"required": [
"billing_cycles"
],
"title": "describe_billsArguments",
"type": "object"
}