Skip to content

LabelMatchingOperator🔗

Possible label matching operators.

Definition🔗

class LabelMatchingOperator(enum.StrEnum):
    """
    Possible label matching operators.
    """

    EQUAL = "="
    NOT_EQUAL = "!="
    MATCH_REGEXP = "=~"
    NOT_MATCH_REGEXP = "!~"