com.pulumi.kubernetes.autoscaling.v2beta1.outputs.ExternalMetricSource Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.kubernetes.autoscaling.v2beta1.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import com.pulumi.kubernetes.meta.v1.outputs.LabelSelector;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ExternalMetricSource {
/**
* @return metricName is the name of the metric in question.
*
*/
private String metricName;
/**
* @return metricSelector is used to identify a specific time series within a given metric.
*
*/
private @Nullable LabelSelector metricSelector;
/**
* @return targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue.
*
*/
private @Nullable String targetAverageValue;
/**
* @return targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue.
*
*/
private @Nullable String targetValue;
private ExternalMetricSource() {}
/**
* @return metricName is the name of the metric in question.
*
*/
public String metricName() {
return this.metricName;
}
/**
* @return metricSelector is used to identify a specific time series within a given metric.
*
*/
public Optional metricSelector() {
return Optional.ofNullable(this.metricSelector);
}
/**
* @return targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue.
*
*/
public Optional targetAverageValue() {
return Optional.ofNullable(this.targetAverageValue);
}
/**
* @return targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue.
*
*/
public Optional targetValue() {
return Optional.ofNullable(this.targetValue);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ExternalMetricSource defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String metricName;
private @Nullable LabelSelector metricSelector;
private @Nullable String targetAverageValue;
private @Nullable String targetValue;
public Builder() {}
public Builder(ExternalMetricSource defaults) {
Objects.requireNonNull(defaults);
this.metricName = defaults.metricName;
this.metricSelector = defaults.metricSelector;
this.targetAverageValue = defaults.targetAverageValue;
this.targetValue = defaults.targetValue;
}
@CustomType.Setter
public Builder metricName(String metricName) {
if (metricName == null) {
throw new MissingRequiredPropertyException("ExternalMetricSource", "metricName");
}
this.metricName = metricName;
return this;
}
@CustomType.Setter
public Builder metricSelector(@Nullable LabelSelector metricSelector) {
this.metricSelector = metricSelector;
return this;
}
@CustomType.Setter
public Builder targetAverageValue(@Nullable String targetAverageValue) {
this.targetAverageValue = targetAverageValue;
return this;
}
@CustomType.Setter
public Builder targetValue(@Nullable String targetValue) {
this.targetValue = targetValue;
return this;
}
public ExternalMetricSource build() {
final var _resultValue = new ExternalMetricSource();
_resultValue.metricName = metricName;
_resultValue.metricSelector = metricSelector;
_resultValue.targetAverageValue = targetAverageValue;
_resultValue.targetValue = targetValue;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy