list_service_accounts
Retrieve a list of service accounts within a specified Google Cloud Platform (GCP) project using the project ID, simplifying IAM and resource management.
Instructions
List service accounts in a GCP project.
Args:
project_id: The ID of the GCP project
Returns:
List of service accounts in the 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_service_accountsArguments",
"type": "object"
}