Source code for csle_common.dao.emulation_action.defender.emulation_defender_action_outcome

"""
Type of defense action outcomes
"""
from enum import IntEnum


[docs]class EmulationDefenderActionOutcome(IntEnum): """ Enum representing the different defense outcomes in the network. """ GAME_END = 0 CONTINUE = 1 STATE_UPDATE = 2 ADD_DEFENSIVE_MECHANISM = 3