Skip to content

PA Category

psengine.playbook_alerts.pa_category

PACategory

Bases: Enum

Playbook Alert categories as Enum.

CODE_REPO_LEAKAGE class-attribute instance-attribute

CODE_REPO_LEAKAGE = 'code_repo_leakage'

CYBER_VULNERABILITY class-attribute instance-attribute

CYBER_VULNERABILITY = 'cyber_vulnerability'

DOMAIN_ABUSE class-attribute instance-attribute

DOMAIN_ABUSE = 'domain_abuse'

GEOPOLITICS_FACILITY class-attribute instance-attribute

GEOPOLITICS_FACILITY = 'geopolitics_facility'

IDENTITY_NOVEL_EXPOSURES class-attribute instance-attribute

IDENTITY_NOVEL_EXPOSURES = 'identity_novel_exposures'

MALWARE_REPORT class-attribute instance-attribute

MALWARE_REPORT = 'malware_report'

THIRD_PARTY_RISK class-attribute instance-attribute

THIRD_PARTY_RISK = 'third_party_risk'

__str__

__str__() -> str

String representation of the enum value.

Source code in psengine/playbook_alerts/pa_category.py
def __str__(self) -> str:
    """String representation of the enum value."""
    return str(self.value)

lower

lower() -> str

Return the lower case version of the enum value.

RETURNS DESCRIPTION
str

Lower case version of the enum value.

Source code in psengine/playbook_alerts/pa_category.py
def lower(self) -> Annotated[str, Doc('Lower case version of the enum value.')]:
    """Return the lower case version of the enum value."""
    return self.value.lower()