@resistdesign/voltra
    Preparing search index...

    Type Alias DACConstraint

    A data access control (DAC) constraint that defines an allow or deny rule for a resource path.

    type DACConstraint = {
        pathIsPrefix?: boolean;
        resourcePath: DACResourcePath;
        type: DACConstraintType;
    }
    Index

    Properties

    pathIsPrefix?: boolean

    When true, match the resource path as a prefix instead of an exact match.

    resourcePath: DACResourcePath

    The resource path to match against, in order of path segments.

    Whether the constraint explicitly allows or denies access.