Member Junction
    Preparing search index...

    Details of a rule evaluation

    interface EvaluatedRule {
        Level: "application" | "key";
        Matched: boolean;
        PatternMatched: string | null;
        Result: "Allowed" | "Denied" | "NoMatch";
        Rule: ScopeRuleMatch;
    }
    Index

    Properties

    Level: "application" | "key"

    Which level this rule came from

    Matched: boolean

    Whether the pattern matched the resource

    PatternMatched: string | null

    The specific pattern that matched (from comma-separated list)

    Result: "Allowed" | "Denied" | "NoMatch"

    Result of this rule evaluation

    The rule that was evaluated