List of action configurations.
| Name | Type | Description | Notes |
|---|---|---|---|
| action | Action | ||
| agent_id | str | Identifier of the agent host on which to run the action. | [optional] |
| input_parameter_values | List[ParameterValue] | List of action input parameters. | [optional] |
from instana_client.models.action_configuration import ActionConfiguration
# TODO update the JSON string below
json = "{}"
# create an instance of ActionConfiguration from a JSON string
action_configuration_instance = ActionConfiguration.from_json(json)
# print the JSON string representation of the object
print(ActionConfiguration.to_json())
# convert the object into a dict
action_configuration_dict = action_configuration_instance.to_dict()
# create an instance of ActionConfiguration from a dict
action_configuration_from_dict = ActionConfiguration.from_dict(action_configuration_dict)