Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.44 KB

File metadata and controls

34 lines (25 loc) · 1.44 KB

MetricsQueryInput

Properties

Name Type Description Notes
name str
metric_name str
measures List[MetricsAggregationType]
filters List[OnelensModelsServiceInterfacesTenantDataMetricsServiceFilterCriteriaInput]
time_filter OnelensModelsServiceInterfacesTenantDataMetricsServiceTimeDimensionInput
timezone str [optional] [default to 'Asia/Kolkata']

Example

from onelens_backend_client.models.metrics_query_input import MetricsQueryInput

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

# convert the object into a dict
metrics_query_input_dict = metrics_query_input_instance.to_dict()
# create an instance of MetricsQueryInput from a dict
metrics_query_input_form_dict = metrics_query_input.from_dict(metrics_query_input_dict)

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