from enum import StrEnum class LegacyQueryName(StrEnum): PROJECTS = "projects" class LegacyQueryError(StrEnum): QUERY_NOT_ALLOWED = "Legacy query is not in the configured allowlist" PROJECT_QUERY_NOT_CONFIGURED = "LEGACY_PROJECT_QUERY is not configured. Configure it first."