Skip to content

Latest commit

History

History
30 lines (21 loc) · 1002 Bytes

File metadata and controls

30 lines (21 loc) · 1002 Bytes

PrometheusAdapter

Properties

NameTypeDescriptionNotes
enabledbool[optional] [default to True]
valuesobject[optional]

Example

fromplatform_api_python_client.models.prometheus_adapterimportPrometheusAdapter# TODO update the JSON string belowjson="{}"# create an instance of PrometheusAdapter from a JSON stringprometheus_adapter_instance=PrometheusAdapter.from_json(json)
# print the JSON string representation of the objectprint(PrometheusAdapter.to_json())
# convert the object into a dictprometheus_adapter_dict=prometheus_adapter_instance.to_dict()
# create an instance of PrometheusAdapter from a dictprometheus_adapter_from_dict=PrometheusAdapter.from_dict(prometheus_adapter_dict)

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