get_billing_info
Retrieve billing details for a specific Google Cloud Platform project by providing its project ID. Simplifies cost management and transparency for GCP resources.
Instructions
Get billing information for a GCP project.
Args:
project_id: The ID of the GCP project to get billing information for
Returns:
Billing information for the specified GCP project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id"
],
"title": "get_billing_infoArguments",
"type": "object"
}