Table of Contents

Class GetResourcesRequestParameters

Namespace
Keycloak.AuthServices.Sdk.Protection.Requests
Assembly
Keycloak.AuthServices.Sdk.dll
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

Name

Query resources given a name or pattern.

public string? Name { get; set; }

Property Value

string

Owner

Query resources given an owner.

public string? Owner { get; set; }

Property Value

string

ResourceType

Query resources of a specific type.

public string? ResourceType { get; set; }

Property Value

string

Scope

Query resources with a specific scope.

public string? Scope { get; set; }

Property Value

string

Uri

Query resources that match a URI pattern.

public string? Uri { get; set; }

Property Value

string