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

com.pulumi.azure.devcenter.NetworkConnectionArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
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.azure.devcenter;

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();

    /**
     * The Azure Active Directory Join type. Possible values are `AzureADJoin` and `HybridAzureADJoin`. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="domainJoinType", required=true)
    private Output domainJoinType;

    /**
     * @return The Azure Active Directory Join type. Possible values are `AzureADJoin` and `HybridAzureADJoin`. Changing this forces a new resource to be created.
     * 
     */
    public Output domainJoinType() {
        return this.domainJoinType;
    }

    /**
     * The name of the Azure Active Directory domain.
     * 
     */
    @Import(name="domainName")
    private @Nullable Output domainName;

    /**
     * @return The name of the Azure Active Directory domain.
     * 
     */
    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 the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
     * 
     */
    @Import(name="domainUsername")
    private @Nullable Output domainUsername;

    /**
     * @return The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
     * 
     */
    public Optional> domainUsername() {
        return Optional.ofNullable(this.domainUsername);
    }

    /**
     * The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="location")
    private @Nullable Output location;

    /**
     * @return The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
     * 
     */
    public Optional> location() {
        return Optional.ofNullable(this.location);
    }

    /**
     * Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

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

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

    /**
     * Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The ID of the Subnet that is used to attach Virtual Machines.
     * 
     */
    @Import(name="subnetId", required=true)
    private Output subnetId;

    /**
     * @return The ID of the Subnet that is used to attach Virtual Machines.
     * 
     */
    public Output subnetId() {
        return this.subnetId;
    }

    /**
     * A mapping of tags which should be assigned to the Dev Center Network Connection.
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return A mapping of tags which should be assigned to the Dev Center Network Connection.
     * 
     */
    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.name = $.name;
        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 The Azure Active Directory Join type. Possible values are `AzureADJoin` and `HybridAzureADJoin`. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder domainJoinType(Output domainJoinType) {
            $.domainJoinType = domainJoinType;
            return this;
        }

        /**
         * @param domainJoinType The Azure Active Directory Join type. Possible values are `AzureADJoin` and `HybridAzureADJoin`. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder domainJoinType(String domainJoinType) {
            return domainJoinType(Output.of(domainJoinType));
        }

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

        /**
         * @param domainName The name of the Azure Active Directory domain.
         * 
         * @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 the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
         * 
         * @return builder
         * 
         */
        public Builder domainUsername(@Nullable Output domainUsername) {
            $.domainUsername = domainUsername;
            return this;
        }

        /**
         * @param domainUsername The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
         * 
         * @return builder
         * 
         */
        public Builder domainUsername(String domainUsername) {
            return domainUsername(Output.of(domainUsername));
        }

        /**
         * @param location The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder location(@Nullable Output location) {
            $.location = location;
            return this;
        }

        /**
         * @param location The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder location(String location) {
            return location(Output.of(location));
        }

        /**
         * @param name Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

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

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

        /**
         * @param resourceGroupName Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param subnetId The ID of the Subnet that is used to attach Virtual Machines.
         * 
         * @return builder
         * 
         */
        public Builder subnetId(Output subnetId) {
            $.subnetId = subnetId;
            return this;
        }

        /**
         * @param subnetId The ID of the Subnet that is used to attach Virtual Machines.
         * 
         * @return builder
         * 
         */
        public Builder subnetId(String subnetId) {
            return subnetId(Output.of(subnetId));
        }

        /**
         * @param tags A mapping of tags which should be assigned to the Dev Center Network Connection.
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags A mapping of tags which should be assigned to the Dev Center Network Connection.
         * 
         * @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