list_identities
Retrieve and filter identities in a Kubernetes cluster, including service accounts, users, and groups, using cluster IDs and pagination options for organized access.
Instructions
Get list of identities for a specific Kubernetes cluster
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_ids | No | Cluster IDs to get identities for | |
identity_types | No | Identity types to get | |
page | No | Page number to get. Default: 1 | |
page_size | No | Page size to get. Default: 10 | |
q | No | Query to filter identities |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cluster_ids": {
"description": "Cluster IDs to get identities for",
"items": {
"type": "string"
},
"type": "array"
},
"identity_types": {
"description": "Identity types to get",
"items": {
"enum": [
"k8s_service_account",
"k8s_user",
"k8s_group"
],
"type": "string"
},
"type": "array"
},
"page": {
"description": "Page number to get. Default: 1",
"type": "number"
},
"page_size": {
"description": "Page size to get. Default: 10",
"type": "number"
},
"q": {
"description": "Query to filter identities",
"type": "string"
}
},
"type": "object"
}