select-project
Specify a Google Cloud Platform project and region for managing and querying GCP resources like Compute Engine, Cloud Storage, and BigQuery.
Instructions
Selects GCP project to use for subsequent interactions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | ID of the GCP project to select | |
| region | No | Region to use (if not provided, us-central1 is used) |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "ID of the GCP project to select",
"type": "string"
},
"region": {
"description": "Region to use (if not provided, us-central1 is used)",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}