34 lines
633 B
Python
34 lines
633 B
Python
# © Crown-owned copyright 2025, Defence Science and Technology Laboratory UK
|
|
"""Actions convert CAOS data into the request format for the PrimAITE simulation."""
|
|
from primaite.game.agent.actions import (
|
|
abstract,
|
|
acl,
|
|
application,
|
|
file,
|
|
folder,
|
|
host_nic,
|
|
manager,
|
|
network,
|
|
node,
|
|
service,
|
|
session,
|
|
software,
|
|
)
|
|
from primaite.game.agent.actions.manager import ActionManager
|
|
|
|
__all__ = (
|
|
"abstract",
|
|
"acl",
|
|
"application",
|
|
"software",
|
|
"file",
|
|
"folder",
|
|
"host_nic",
|
|
"manager",
|
|
"network",
|
|
"node",
|
|
"service",
|
|
"session",
|
|
"ActionManager",
|
|
)
|