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

com.pulumi.azurenative.scom.inputs.DomainControllerPropertiesArgs Maven / Gradle / Ivy

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

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


/**
 * The properties of domain controller to which SCOM and SQL servers join for AuthN/AuthZ.
 * 
 */
public final class DomainControllerPropertiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final DomainControllerPropertiesArgs Empty = new DomainControllerPropertiesArgs();

    /**
     * IP address of DNS server
     * 
     */
    @Import(name="dnsServer")
    private @Nullable Output dnsServer;

    /**
     * @return IP address of DNS server
     * 
     */
    public Optional> dnsServer() {
        return Optional.ofNullable(this.dnsServer);
    }

    /**
     * Fully qualified domain name
     * 
     */
    @Import(name="domainName")
    private @Nullable Output domainName;

    /**
     * @return Fully qualified domain name
     * 
     */
    public Optional> domainName() {
        return Optional.ofNullable(this.domainName);
    }

    /**
     * Organizational Unit path in which the SCOM servers will be present
     * 
     */
    @Import(name="ouPath")
    private @Nullable Output ouPath;

    /**
     * @return Organizational Unit path in which the SCOM servers will be present
     * 
     */
    public Optional> ouPath() {
        return Optional.ofNullable(this.ouPath);
    }

    private DomainControllerPropertiesArgs() {}

    private DomainControllerPropertiesArgs(DomainControllerPropertiesArgs $) {
        this.dnsServer = $.dnsServer;
        this.domainName = $.domainName;
        this.ouPath = $.ouPath;
    }

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

    public static final class Builder {
        private DomainControllerPropertiesArgs $;

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

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

        /**
         * @param dnsServer IP address of DNS server
         * 
         * @return builder
         * 
         */
        public Builder dnsServer(@Nullable Output dnsServer) {
            $.dnsServer = dnsServer;
            return this;
        }

        /**
         * @param dnsServer IP address of DNS server
         * 
         * @return builder
         * 
         */
        public Builder dnsServer(String dnsServer) {
            return dnsServer(Output.of(dnsServer));
        }

        /**
         * @param domainName Fully qualified domain name
         * 
         * @return builder
         * 
         */
        public Builder domainName(@Nullable Output domainName) {
            $.domainName = domainName;
            return this;
        }

        /**
         * @param domainName Fully qualified domain name
         * 
         * @return builder
         * 
         */
        public Builder domainName(String domainName) {
            return domainName(Output.of(domainName));
        }

        /**
         * @param ouPath Organizational Unit path in which the SCOM servers will be present
         * 
         * @return builder
         * 
         */
        public Builder ouPath(@Nullable Output ouPath) {
            $.ouPath = ouPath;
            return this;
        }

        /**
         * @param ouPath Organizational Unit path in which the SCOM servers will be present
         * 
         * @return builder
         * 
         */
        public Builder ouPath(String ouPath) {
            return ouPath(Output.of(ouPath));
        }

        public DomainControllerPropertiesArgs build() {
            $.ouPath = Codegen.stringProp("ouPath").output().arg($.ouPath).def("").getNullable();
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy