Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

PolicyRunnable

Runnable associated with the policy. It can be a workflow or action. Currently only supports action.

Properties

Name Type Description Notes
id str Action identifier.
run_configuration RunConfiguration
type str Type of runnable. Supported value is `action`.

Example

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)

[Back to Model list] [Back to API list] [Back to README]