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

"""
Type of defense actions
"""
from enum import IntEnum


[docs]class EmulationDefenderActionType(IntEnum): """ Enum representing the different defense types in the network. """ STOP = 0 CONTINUE = 1 ADD_DEFENSIVE_MECHANISM = 2