8.8.1.1.2.2.1. ArmAdvancedFeatures

class ArmAdvancedFeatures
listSupportedActions() list[ArmAdvancedFeaturesAction]

Returns a list of all supported actions. If no actions are supported, the list is empty.

# Print the supported actions
supportedActions = session.armAdvancedFeatures.listSupportedActions()
print("Supported actions:")
for action in supportedActions:
    print(f"  {action['action']} - {action['description']}")
Returns:

The list of supported actions.

Return type:

list[ArmAdvancedFeaturesAction]

performAction(action) None

Performs the specified action.

session.armAdvancedFeatures.performAction("FlushAllCaches")
Parameters:

action (str) -- The unique identifier of the action to perform. Use listSupportedActions() to get a list of supported actions.

Return type:

None