Runnable associated with the policy. It can be a workflow or action. Currently only supports action.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Action identifier. | |
| run_configuration | RunConfiguration | ||
| type | str | Type of runnable. Supported value is `action`. |
from instana_client.models.policy_runnable import PolicyRunnable
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyRunnable from a JSON string
policy_runnable_instance = PolicyRunnable.from_json(json)
# print the JSON string representation of the object
print(PolicyRunnable.to_json())
# convert the object into a dict
policy_runnable_dict = policy_runnable_instance.to_dict()
# create an instance of PolicyRunnable from a dict
policy_runnable_from_dict = PolicyRunnable.from_dict(policy_runnable_dict)