com.pulumi.kubernetes.autoscaling.v2.inputs.ResourceMetricSourceArgs 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.v2.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import com.pulumi.kubernetes.autoscaling.v2.inputs.MetricTargetArgs;
import java.lang.String;
import java.util.Objects;
/**
* ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set.
*
*/
public final class ResourceMetricSourceArgs extends com.pulumi.resources.ResourceArgs {
public static final ResourceMetricSourceArgs Empty = new ResourceMetricSourceArgs();
/**
* name is the name of the resource in question.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return name is the name of the resource in question.
*
*/
public Output name() {
return this.name;
}
/**
* target specifies the target value for the given metric
*
*/
@Import(name="target", required=true)
private Output target;
/**
* @return target specifies the target value for the given metric
*
*/
public Output target() {
return this.target;
}
private ResourceMetricSourceArgs() {}
private ResourceMetricSourceArgs(ResourceMetricSourceArgs $) {
this.name = $.name;
this.target = $.target;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ResourceMetricSourceArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ResourceMetricSourceArgs $;
public Builder() {
$ = new ResourceMetricSourceArgs();
}
public Builder(ResourceMetricSourceArgs defaults) {
$ = new ResourceMetricSourceArgs(Objects.requireNonNull(defaults));
}
/**
* @param name name is the name of the resource in question.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name name is the name of the resource in question.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param target target specifies the target value for the given metric
*
* @return builder
*
*/
public Builder target(Output target) {
$.target = target;
return this;
}
/**
* @param target target specifies the target value for the given metric
*
* @return builder
*
*/
public Builder target(MetricTargetArgs target) {
return target(Output.of(target));
}
public ResourceMetricSourceArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("ResourceMetricSourceArgs", "name");
}
if ($.target == null) {
throw new MissingRequiredPropertyException("ResourceMetricSourceArgs", "target");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy