List authorization resources
keycloak_authz_resources_listList authorization resources defined on a Keycloak client to inspect its fine-grained authorization model. Requires client internal ID.
Instructions
Lists the authorization-services resources defined on a Keycloak client (the protected resources that policies and permissions apply to). Read-only and idempotent: it performs no writes and returns the same data for unchanged configuration. Use it to inspect a client's fine-grained authorization model; call keycloak_clients_list first to obtain the client's internal id, and pair it with keycloak_authz_policies_list and keycloak_authz_permissions_list for the full picture. Returns a JSON array of resource entries, or the text "Client not found." when no client matches the given id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| clientId | Yes | The Keycloak internal id of the client whose authorization-services configuration to read. This is the UUID-style id (clientUuid), not the human-readable clientId string; obtain it from keycloak_clients_list. Required. |