edgeport - v1.0.3
    Preparing search index...

    Interface AttributeValueFilter

    Equality, ordering, and approximate-match filters: attr OP value.

    interface AttributeValueFilter {
        attribute: string;
        type: "equalityMatch" | "greaterOrEqual" | "lessOrEqual" | "approxMatch";
        value: string;
    }
    Index
    attribute: string

    The attribute description (e.g. cn).

    type: "equalityMatch" | "greaterOrEqual" | "lessOrEqual" | "approxMatch"

    The match kind.

    value: string

    The assertion value.