list_gcp_services
Retrieve a list of enabled services and APIs in a specified Google Cloud Platform (GCP) project by providing the project ID, simplifying resource management and visibility.
Instructions
List enabled services/APIs in a GCP project.
Args:
project_id: The ID of the GCP project to list services for
Returns:
List of enabled services in 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": "list_gcp_servicesArguments",
"type": "object"
}