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

com.pulumi.azurenative.awsconnector.inputs.SoftwareUpdateOptionsArgs Maven / Gradle / Ivy

There is a newer version: 2.89.2
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.awsconnector.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Definition of SoftwareUpdateOptions
 * 
 */
public final class SoftwareUpdateOptionsArgs extends com.pulumi.resources.ResourceArgs {

    public static final SoftwareUpdateOptionsArgs Empty = new SoftwareUpdateOptionsArgs();

    /**
     * <p>Whether automatic service software updates are enabled for the domain.</p>
     * 
     */
    @Import(name="autoSoftwareUpdateEnabled")
    private @Nullable Output autoSoftwareUpdateEnabled;

    /**
     * @return <p>Whether automatic service software updates are enabled for the domain.</p>
     * 
     */
    public Optional> autoSoftwareUpdateEnabled() {
        return Optional.ofNullable(this.autoSoftwareUpdateEnabled);
    }

    private SoftwareUpdateOptionsArgs() {}

    private SoftwareUpdateOptionsArgs(SoftwareUpdateOptionsArgs $) {
        this.autoSoftwareUpdateEnabled = $.autoSoftwareUpdateEnabled;
    }

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

    public static final class Builder {
        private SoftwareUpdateOptionsArgs $;

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

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

        /**
         * @param autoSoftwareUpdateEnabled <p>Whether automatic service software updates are enabled for the domain.</p>
         * 
         * @return builder
         * 
         */
        public Builder autoSoftwareUpdateEnabled(@Nullable Output autoSoftwareUpdateEnabled) {
            $.autoSoftwareUpdateEnabled = autoSoftwareUpdateEnabled;
            return this;
        }

        /**
         * @param autoSoftwareUpdateEnabled <p>Whether automatic service software updates are enabled for the domain.</p>
         * 
         * @return builder
         * 
         */
        public Builder autoSoftwareUpdateEnabled(Boolean autoSoftwareUpdateEnabled) {
            return autoSoftwareUpdateEnabled(Output.of(autoSoftwareUpdateEnabled));
        }

        public SoftwareUpdateOptionsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy