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

com.pulumi.azurenative.azurearcdata.inputs.K8sSchedulingArgs Maven / Gradle / Ivy

There is a newer version: 2.82.0
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.azurenative.azurearcdata.inputs;

import com.pulumi.azurenative.azurearcdata.inputs.K8sSchedulingOptionsArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * The kubernetes scheduling information.
 * 
 */
public final class K8sSchedulingArgs extends com.pulumi.resources.ResourceArgs {

    public static final K8sSchedulingArgs Empty = new K8sSchedulingArgs();

    /**
     * The kubernetes scheduling options. It describes restrictions used to help Kubernetes select appropriate nodes to host the database service
     * 
     */
    @Import(name="default")
    private @Nullable Output default_;

    /**
     * @return The kubernetes scheduling options. It describes restrictions used to help Kubernetes select appropriate nodes to host the database service
     * 
     */
    public Optional> default_() {
        return Optional.ofNullable(this.default_);
    }

    private K8sSchedulingArgs() {}

    private K8sSchedulingArgs(K8sSchedulingArgs $) {
        this.default_ = $.default_;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(K8sSchedulingArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private K8sSchedulingArgs $;

        public Builder() {
            $ = new K8sSchedulingArgs();
        }

        public Builder(K8sSchedulingArgs defaults) {
            $ = new K8sSchedulingArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param default_ The kubernetes scheduling options. It describes restrictions used to help Kubernetes select appropriate nodes to host the database service
         * 
         * @return builder
         * 
         */
        public Builder default_(@Nullable Output default_) {
            $.default_ = default_;
            return this;
        }

        /**
         * @param default_ The kubernetes scheduling options. It describes restrictions used to help Kubernetes select appropriate nodes to host the database service
         * 
         * @return builder
         * 
         */
        public Builder default_(K8sSchedulingOptionsArgs default_) {
            return default_(Output.of(default_));
        }

        public K8sSchedulingArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy