![JAR search and dependency download from the Maven repository](/logo.png)
io.k8s.api.autoscaling.v2.ExternalMetricStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s130 Show documentation
Show all versions of bl-k8s130 Show documentation
Programmatic resource management for Kubernetes
package io.k8s.api.autoscaling.v2;
/**
* ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.
*/
public class ExternalMetricStatus {
public MetricValueStatus current;
public MetricIdentifier metric;
public ExternalMetricStatus current(MetricValueStatus current) {
this.current = current;
return this;
}
public ExternalMetricStatus metric(MetricIdentifier metric) {
this.metric = metric;
return this;
}
public static ExternalMetricStatus externalMetricStatus() {
return new ExternalMetricStatus();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy