Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

Tenantuserv3Prometheus

Prometheus object.

Properties

Name Type Description Notes
unit str Unit. [optional]
value str Value. [optional]

Example

from ibm_gdsc_sdk_saas.models.tenantuserv3_prometheus import Tenantuserv3Prometheus

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

# convert the object into a dict
tenantuserv3_prometheus_dict = tenantuserv3_prometheus_instance.to_dict()
# create an instance of Tenantuserv3Prometheus from a dict
tenantuserv3_prometheus_from_dict = Tenantuserv3Prometheus.from_dict(tenantuserv3_prometheus_dict)

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