Represents a pattern for matching namespaces in the store.
This class combines a match type (prefix or suffix) with a namespace path pattern that can include wildcards to flexibly match different namespace hierarchies.
Prefix matching:
MatchCondition(match_type="prefix", path=("users", "profiles"))
Suffix matching with wildcard:
MatchCondition(match_type="suffix", path=("cache", "*"))
Simple suffix matching:
MatchCondition(match_type="suffix", path=("v1",))