List of configurations that contains the list of actions to run and the mode (automatic or manual) in which the policy is run.
| Name | Type | Description | Notes |
|---|---|---|---|
| condition | Condition | [optional] | |
| name | str | The policy type determines how a policy is run. Value must be one of the enum values. Value `manual` means the policy is run manually when an event is raised. Value `automatic` means policy is run automatically when an event is raised. | |
| runnable | PolicyRunnable |
from instana_client.models.type_configuration import TypeConfiguration
# TODO update the JSON string below
json = "{}"
# create an instance of TypeConfiguration from a JSON string
type_configuration_instance = TypeConfiguration.from_json(json)
# print the JSON string representation of the object
print(TypeConfiguration.to_json())
# convert the object into a dict
type_configuration_dict = type_configuration_instance.to_dict()
# create an instance of TypeConfiguration from a dict
type_configuration_from_dict = TypeConfiguration.from_dict(type_configuration_dict)