check_iam_permissions
Verify IAM permissions for the current user in a specified GCP project to ensure access and compliance with required roles and policies.
Instructions
Check IAM permissions for the current user in a GCP project.
Args:
project_id: The ID of the GCP project to check permissions for
Returns:
List of IAM permissions for the current user 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": "check_iam_permissionsArguments",
"type": "object"
}