gcp-billing-list-projects
Retrieve and manage all projects linked to a Google Cloud billing account by specifying the account name, pagination size, and token for comprehensive project visibility.
Instructions
List all projects associated with a specific Google Cloud billing account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
billingAccountName | Yes | Billing account name (e.g., 'billingAccounts/123456-789ABC-DEF012') | |
pageSize | No | Maximum number of projects to return (1-200) | |
pageToken | No | Token for pagination to get next page of results |
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"
},
"pageSize": {
"default": 50,
"description": "Maximum number of projects to return (1-200)",
"maximum": 200,
"minimum": 1,
"type": "number"
},
"pageToken": {
"description": "Token for pagination to get next page of results",
"type": "string"
}
},
"required": [
"billingAccountName"
],
"type": "object"
}