All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.kubernetes.node.v1.outputs.OverheadPatch Maven / Gradle / Ivy

There is a newer version: 4.19.0-alpha.1730750641
Show newest version
// *** 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