Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.19 KB

File metadata and controls

35 lines (26 loc) · 1.19 KB

LogsQuery

Properties

Name Type Description Notes
filter FilterInterface [optional]
offset int [optional]
order_direction str [optional]
requested_tags List[str] [optional]
retrieval_size int [optional]
tag_filter_expression TagFilterExpressionElement [optional]
time_config TimeConfig [optional]

Example

from instana_client.models.logs_query import LogsQuery

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

# convert the object into a dict
logs_query_dict = logs_query_instance.to_dict()
# create an instance of LogsQuery from a dict
logs_query_from_dict = LogsQuery.from_dict(logs_query_dict)

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