com.pulumi.kubernetes.node.v1.outputs.OverheadPatch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kubernetes Show documentation
Show all versions of kubernetes Show documentation
A Pulumi package for creating and managing Kubernetes resources.
// *** 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.node.v1.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class OverheadPatch {
/**
* @return podFixed represents the fixed resource overhead associated with running a pod.
*
*/
private @Nullable Map podFixed;
private OverheadPatch() {}
/**
* @return podFixed represents the fixed resource overhead associated with running a pod.
*
*/
public Map podFixed() {
return this.podFixed == null ? Map.of() : this.podFixed;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(OverheadPatch defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Map podFixed;
public Builder() {}
public Builder(OverheadPatch defaults) {
Objects.requireNonNull(defaults);
this.podFixed = defaults.podFixed;
}
@CustomType.Setter
public Builder podFixed(@Nullable Map podFixed) {
this.podFixed = podFixed;
return this;
}
public OverheadPatch build() {
final var _resultValue = new OverheadPatch();
_resultValue.podFixed = podFixed;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy