Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1011 Bytes

File metadata and controls

30 lines (21 loc) · 1011 Bytes

RunConfiguration

Action run configuration.

Properties

Name Type Description Notes
actions List[ActionConfiguration] List of action configurations.

Example

from instana_client.models.run_configuration import RunConfiguration

# TODO update the JSON string below
json = "{}"
# create an instance of RunConfiguration from a JSON string
run_configuration_instance = RunConfiguration.from_json(json)
# print the JSON string representation of the object
print(RunConfiguration.to_json())

# convert the object into a dict
run_configuration_dict = run_configuration_instance.to_dict()
# create an instance of RunConfiguration from a dict
run_configuration_from_dict = RunConfiguration.from_dict(run_configuration_dict)

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