Class GetResourcesRequestParameters
- Namespace
- Keycloak.AuthServices.Sdk.Protection.Requests
- Assembly
- Keycloak.AuthServices.Sdk.dll
Optional parameters for the GetResourcesIdsAsync(string, GetResourcesRequestParameters?, CancellationToken) endpoint.
public class GetResourcesRequestParameters
- Inheritance
-
GetResourcesRequestParameters
- Inherited Members
Properties
ExactName
By default, the Name filter will match any resource with the given pattern. Set this to true to restrict the query to only return resources with an exact match.
public bool? ExactName { get; set; }
Property Value
- bool?
Remarks
https://github.com/keycloak/keycloak-documentation/blob/main/authorization_services/topics/service-protection-resources-api-papi.adoc#querying-resources https://www.keycloak.org/docs/latest/authorization_services/index.html#_service_protection_resources_api
Name
Query resources given a name or pattern.
public string? Name { get; set; }
Property Value
Owner
Query resources given an owner.
public string? Owner { get; set; }
Property Value
ResourceType
Query resources of a specific type.
public string? ResourceType { get; set; }
Property Value
Scope
Query resources with a specific scope.
public string? Scope { get; set; }
Property Value
Uri
Query resources that match a URI pattern.
public string? Uri { get; set; }