openc2lib.types.data.action_arguments
1from openc2lib.core.actions import Actions 2from openc2lib.types.base import MapOf, ArrayOf 3 4class ActionArguments(MapOf(Actions, ArrayOf(str))): 5 """ OpenC2 Action-Arguments mapping 6 7 Map of each action supported by an actuator to the list of arguments applicable to 8 that action. 9 This is not defined in the Language Specification, but used e.g., by the SLPF Profile. 10 """ 11 pass
5class ActionArguments(MapOf(Actions, ArrayOf(str))): 6 """ OpenC2 Action-Arguments mapping 7 8 Map of each action supported by an actuator to the list of arguments applicable to 9 that action. 10 This is not defined in the Language Specification, but used e.g., by the SLPF Profile. 11 """ 12 pass
OpenC2 Action-Arguments mapping
Map of each action supported by an actuator to the list of arguments applicable to that action. This is not defined in the Language Specification, but used e.g., by the SLPF Profile.
Inherited Members
- builtins.dict
- get
- setdefault
- pop
- popitem
- keys
- items
- values
- update
- fromkeys
- clear
- copy