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

com.pulumi.azurenative.devcenter.NetworkConnectionArgs 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.devcenter;

import com.pulumi.azurenative.devcenter.enums.DomainJoinType;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class NetworkConnectionArgs extends com.pulumi.resources.ResourceArgs {

    public static final NetworkConnectionArgs Empty = new NetworkConnectionArgs();

    /**
     * AAD Join type.
     * 
     */
    @Import(name="domainJoinType", required=true)
    private Output> domainJoinType;

    /**
     * @return AAD Join type.
     * 
     */
    public Output> domainJoinType() {
        return this.domainJoinType;
    }

    /**
     * Active Directory domain name
     * 
     */
    @Import(name="domainName")
    private @Nullable Output domainName;

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

    /**
     * The password for the account used to join domain
     * 
     */
    @Import(name="domainPassword")
    private @Nullable Output domainPassword;

    /**
     * @return The password for the account used to join domain
     * 
     */
    public Optional> domainPassword() {
        return Optional.ofNullable(this.domainPassword);
    }

    /**
     * The username of an Active Directory account (user or service account) that has permissions to create computer objects in Active Directory. Required format: admin{@literal @}contoso.com.
     * 
     */
    @Import(name="domainUsername")
    private @Nullable Output domainUsername;

    /**
     * @return The username of an Active Directory account (user or service account) that has permissions to create computer objects in Active Directory. Required format: admin{@literal @}contoso.com.
     * 
     */
    public Optional> domainUsername() {
        return Optional.ofNullable(this.domainUsername);
    }

    /**
     * The geo-location where the resource lives
     * 
     */
    @Import(name="location")
    private @Nullable Output location;

    /**
     * @return The geo-location where the resource lives
     * 
     */
    public Optional> location() {
        return Optional.ofNullable(this.location);
    }

    /**
     * Name of the Network Connection that can be applied to a Pool.
     * 
     */
    @Import(name="networkConnectionName")
    private @Nullable Output networkConnectionName;

    /**
     * @return Name of the Network Connection that can be applied to a Pool.
     * 
     */
    public Optional> networkConnectionName() {
        return Optional.ofNullable(this.networkConnectionName);
    }

    /**
     * The name for resource group where NICs will be placed.
     * 
     */
    @Import(name="networkingResourceGroupName")
    private @Nullable Output networkingResourceGroupName;

    /**
     * @return The name for resource group where NICs will be placed.
     * 
     */
    public Optional> networkingResourceGroupName() {
        return Optional.ofNullable(this.networkingResourceGroupName);
    }

    /**
     * Active Directory domain Organization Unit (OU)
     * 
     */
    @Import(name="organizationUnit")
    private @Nullable Output organizationUnit;

    /**
     * @return Active Directory domain Organization Unit (OU)
     * 
     */
    public Optional> organizationUnit() {
        return Optional.ofNullable(this.organizationUnit);
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The subnet to attach Virtual Machines to
     * 
     */
    @Import(name="subnetId", required=true)
    private Output subnetId;

    /**
     * @return The subnet to attach Virtual Machines to
     * 
     */
    public Output subnetId() {
        return this.subnetId;
    }

    /**
     * Resource tags.
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return Resource tags.
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    private NetworkConnectionArgs() {}

    private NetworkConnectionArgs(NetworkConnectionArgs $) {
        this.domainJoinType = $.domainJoinType;
        this.domainName = $.domainName;
        this.domainPassword = $.domainPassword;
        this.domainUsername = $.domainUsername;
        this.location = $.location;
        this.networkConnectionName = $.networkConnectionName;
        this.networkingResourceGroupName = $.networkingResourceGroupName;
        this.organizationUnit = $.organizationUnit;
        this.resourceGroupName = $.resourceGroupName;
        this.subnetId = $.subnetId;
        this.tags = $.tags;
    }

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

    public static final class Builder {
        private NetworkConnectionArgs $;

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

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

        /**
         * @param domainJoinType AAD Join type.
         * 
         * @return builder
         * 
         */
        public Builder domainJoinType(Output> domainJoinType) {
            $.domainJoinType = domainJoinType;
            return this;
        }

        /**
         * @param domainJoinType AAD Join type.
         * 
         * @return builder
         * 
         */
        public Builder domainJoinType(Either domainJoinType) {
            return domainJoinType(Output.of(domainJoinType));
        }

        /**
         * @param domainJoinType AAD Join type.
         * 
         * @return builder
         * 
         */
        public Builder domainJoinType(String domainJoinType) {
            return domainJoinType(Either.ofLeft(domainJoinType));
        }

        /**
         * @param domainJoinType AAD Join type.
         * 
         * @return builder
         * 
         */
        public Builder domainJoinType(DomainJoinType domainJoinType) {
            return domainJoinType(Either.ofRight(domainJoinType));
        }

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

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

        /**
         * @param domainPassword The password for the account used to join domain
         * 
         * @return builder
         * 
         */
        public Builder domainPassword(@Nullable Output domainPassword) {
            $.domainPassword = domainPassword;
            return this;
        }

        /**
         * @param domainPassword The password for the account used to join domain
         * 
         * @return builder
         * 
         */
        public Builder domainPassword(String domainPassword) {
            return domainPassword(Output.of(domainPassword));
        }

        /**
         * @param domainUsername The username of an Active Directory account (user or service account) that has permissions to create computer objects in Active Directory. Required format: admin{@literal @}contoso.com.
         * 
         * @return builder
         * 
         */
        public Builder domainUsername(@Nullable Output domainUsername) {
            $.domainUsername = domainUsername;
            return this;
        }

        /**
         * @param domainUsername The username of an Active Directory account (user or service account) that has permissions to create computer objects in Active Directory. Required format: admin{@literal @}contoso.com.
         * 
         * @return builder
         * 
         */
        public Builder domainUsername(String domainUsername) {
            return domainUsername(Output.of(domainUsername));
        }

        /**
         * @param location The geo-location where the resource lives
         * 
         * @return builder
         * 
         */
        public Builder location(@Nullable Output location) {
            $.location = location;
            return this;
        }

        /**
         * @param location The geo-location where the resource lives
         * 
         * @return builder
         * 
         */
        public Builder location(String location) {
            return location(Output.of(location));
        }

        /**
         * @param networkConnectionName Name of the Network Connection that can be applied to a Pool.
         * 
         * @return builder
         * 
         */
        public Builder networkConnectionName(@Nullable Output networkConnectionName) {
            $.networkConnectionName = networkConnectionName;
            return this;
        }

        /**
         * @param networkConnectionName Name of the Network Connection that can be applied to a Pool.
         * 
         * @return builder
         * 
         */
        public Builder networkConnectionName(String networkConnectionName) {
            return networkConnectionName(Output.of(networkConnectionName));
        }

        /**
         * @param networkingResourceGroupName The name for resource group where NICs will be placed.
         * 
         * @return builder
         * 
         */
        public Builder networkingResourceGroupName(@Nullable Output networkingResourceGroupName) {
            $.networkingResourceGroupName = networkingResourceGroupName;
            return this;
        }

        /**
         * @param networkingResourceGroupName The name for resource group where NICs will be placed.
         * 
         * @return builder
         * 
         */
        public Builder networkingResourceGroupName(String networkingResourceGroupName) {
            return networkingResourceGroupName(Output.of(networkingResourceGroupName));
        }

        /**
         * @param organizationUnit Active Directory domain Organization Unit (OU)
         * 
         * @return builder
         * 
         */
        public Builder organizationUnit(@Nullable Output organizationUnit) {
            $.organizationUnit = organizationUnit;
            return this;
        }

        /**
         * @param organizationUnit Active Directory domain Organization Unit (OU)
         * 
         * @return builder
         * 
         */
        public Builder organizationUnit(String organizationUnit) {
            return organizationUnit(Output.of(organizationUnit));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param subnetId The subnet to attach Virtual Machines to
         * 
         * @return builder
         * 
         */
        public Builder subnetId(Output subnetId) {
            $.subnetId = subnetId;
            return this;
        }

        /**
         * @param subnetId The subnet to attach Virtual Machines to
         * 
         * @return builder
         * 
         */
        public Builder subnetId(String subnetId) {
            return subnetId(Output.of(subnetId));
        }

        /**
         * @param tags Resource tags.
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags Resource tags.
         * 
         * @return builder
         * 
         */
        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

        public NetworkConnectionArgs build() {
            if ($.domainJoinType == null) {
                throw new MissingRequiredPropertyException("NetworkConnectionArgs", "domainJoinType");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("NetworkConnectionArgs", "resourceGroupName");
            }
            if ($.subnetId == null) {
                throw new MissingRequiredPropertyException("NetworkConnectionArgs", "subnetId");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy