Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

Condition

This applies to only automatic policy type. A Dynamic Focus Query that selects a list of entities on which the policy is run.

Properties

Name Type Description Notes
query str Dynamic Focus Query string that selects a list of entities on which the policy is run. [optional]

Example

from instana_client.models.condition import Condition

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

# convert the object into a dict
condition_dict = condition_instance.to_dict()
# create an instance of Condition from a dict
condition_from_dict = Condition.from_dict(condition_dict)

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