Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.47 KB

File metadata and controls

36 lines (27 loc) · 1.47 KB

GetInfrastructureQuery

Properties

Name Type Description Notes
metrics List[InfraMetricConfiguration] [optional]
missing_placeholder str [optional]
order Order [optional]
pagination CursorPaginationInfraExploreCursor
tag_filter_expression TagFilterExpressionElement
tags List[str] [optional]
time_frame TimeFrame
type str Type of entities [optional]

Example

from instana_client.models.get_infrastructure_query import GetInfrastructureQuery

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

# convert the object into a dict
get_infrastructure_query_dict = get_infrastructure_query_instance.to_dict()
# create an instance of GetInfrastructureQuery from a dict
get_infrastructure_query_from_dict = GetInfrastructureQuery.from_dict(get_infrastructure_query_dict)

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