gcp-billing-cost-recommendations
Analyze Google Cloud billing to identify cost-saving opportunities by generating tailored recommendations based on account, project, savings priority, and minimum savings threshold.
Instructions
Generate cost optimisation recommendations with potential savings for Google Cloud billing
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| billingAccountName | Yes | Billing account name (e.g., 'billingAccounts/123456-789ABC-DEF012') | |
| minSavingsAmount | No | Minimum savings amount to include in recommendations | |
| priority | No | Filter recommendations by priority level | all |
| projectId | No | Optional project ID to filter recommendations |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"billingAccountName": {
"description": "Billing account name (e.g., 'billingAccounts/123456-789ABC-DEF012')",
"type": "string"
},
"minSavingsAmount": {
"default": 10,
"description": "Minimum savings amount to include in recommendations",
"minimum": 0,
"type": "number"
},
"priority": {
"default": "all",
"description": "Filter recommendations by priority level",
"enum": [
"low",
"medium",
"high",
"all"
],
"type": "string"
},
"projectId": {
"description": "Optional project ID to filter recommendations",
"type": "string"
}
},
"required": [
"billingAccountName"
],
"type": "object"
}