get_gcp_project_details
Retrieve comprehensive details about a specific Google Cloud Platform (GCP) project by providing its project ID. Simplifies project management and resource oversight without manual credential setup.
Instructions
Get detailed information about a specific GCP project.
Args:
project_id: The ID of the GCP project to get details for
Returns:
Detailed information about 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_gcp_project_detailsArguments",
"type": "object"
}