Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.19 KB

File metadata and controls

29 lines (22 loc) · 1.19 KB

V2ExternalMetricStatus

ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.

Properties

Name Type Description Notes
current V2MetricValueStatus
metric V2MetricIdentifier

Example

from kubernetes.client.models.v2_external_metric_status import V2ExternalMetricStatus

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

# convert the object into a dict
v2_external_metric_status_dict = v2_external_metric_status_instance.to_dict()
# create an instance of V2ExternalMetricStatus from a dict
v2_external_metric_status_from_dict = V2ExternalMetricStatus.from_dict(v2_external_metric_status_dict)

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