ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.
| Name | Type | Description | Notes |
|---|---|---|---|
| current | V2MetricValueStatus | ||
| metric | V2MetricIdentifier |
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)