Package version:

Interface AccessControlRulesPrivilege

The properties of an Access Control Rule Privilege.

interface AccessControlRulesPrivilege {
    name: string;
    path: string;
    queryParameters?: {
        [propertyName: string]: string;
    };
}

Properties

name: string

The name of the privilege.

path: string

The HTTP path corresponding to the privilege.

queryParameters?: {
    [propertyName: string]: string;
}

The query parameters to match in the path.