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

com.pulumi.azurenative.avs.GlobalReachConnectionArgs 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.avs;

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


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

    public static final GlobalReachConnectionArgs Empty = new GlobalReachConnectionArgs();

    /**
     * Authorization key from the peer express route used for the global reach connection
     * 
     */
    @Import(name="authorizationKey")
    private @Nullable Output authorizationKey;

    /**
     * @return Authorization key from the peer express route used for the global reach connection
     * 
     */
    public Optional> authorizationKey() {
        return Optional.ofNullable(this.authorizationKey);
    }

    /**
     * The ID of the Private Cloud's ExpressRoute Circuit that is participating in the global reach connection
     * 
     */
    @Import(name="expressRouteId")
    private @Nullable Output expressRouteId;

    /**
     * @return The ID of the Private Cloud's ExpressRoute Circuit that is participating in the global reach connection
     * 
     */
    public Optional> expressRouteId() {
        return Optional.ofNullable(this.expressRouteId);
    }

    /**
     * Name of the global reach connection in the private cloud
     * 
     */
    @Import(name="globalReachConnectionName")
    private @Nullable Output globalReachConnectionName;

    /**
     * @return Name of the global reach connection in the private cloud
     * 
     */
    public Optional> globalReachConnectionName() {
        return Optional.ofNullable(this.globalReachConnectionName);
    }

    /**
     * Identifier of the ExpressRoute Circuit to peer with in the global reach connection
     * 
     */
    @Import(name="peerExpressRouteCircuit")
    private @Nullable Output peerExpressRouteCircuit;

    /**
     * @return Identifier of the ExpressRoute Circuit to peer with in the global reach connection
     * 
     */
    public Optional> peerExpressRouteCircuit() {
        return Optional.ofNullable(this.peerExpressRouteCircuit);
    }

    /**
     * The name of the private cloud.
     * 
     */
    @Import(name="privateCloudName", required=true)
    private Output privateCloudName;

    /**
     * @return The name of the private cloud.
     * 
     */
    public Output privateCloudName() {
        return this.privateCloudName;
    }

    /**
     * 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;
    }

    private GlobalReachConnectionArgs() {}

    private GlobalReachConnectionArgs(GlobalReachConnectionArgs $) {
        this.authorizationKey = $.authorizationKey;
        this.expressRouteId = $.expressRouteId;
        this.globalReachConnectionName = $.globalReachConnectionName;
        this.peerExpressRouteCircuit = $.peerExpressRouteCircuit;
        this.privateCloudName = $.privateCloudName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GlobalReachConnectionArgs $;

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

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

        /**
         * @param authorizationKey Authorization key from the peer express route used for the global reach connection
         * 
         * @return builder
         * 
         */
        public Builder authorizationKey(@Nullable Output authorizationKey) {
            $.authorizationKey = authorizationKey;
            return this;
        }

        /**
         * @param authorizationKey Authorization key from the peer express route used for the global reach connection
         * 
         * @return builder
         * 
         */
        public Builder authorizationKey(String authorizationKey) {
            return authorizationKey(Output.of(authorizationKey));
        }

        /**
         * @param expressRouteId The ID of the Private Cloud's ExpressRoute Circuit that is participating in the global reach connection
         * 
         * @return builder
         * 
         */
        public Builder expressRouteId(@Nullable Output expressRouteId) {
            $.expressRouteId = expressRouteId;
            return this;
        }

        /**
         * @param expressRouteId The ID of the Private Cloud's ExpressRoute Circuit that is participating in the global reach connection
         * 
         * @return builder
         * 
         */
        public Builder expressRouteId(String expressRouteId) {
            return expressRouteId(Output.of(expressRouteId));
        }

        /**
         * @param globalReachConnectionName Name of the global reach connection in the private cloud
         * 
         * @return builder
         * 
         */
        public Builder globalReachConnectionName(@Nullable Output globalReachConnectionName) {
            $.globalReachConnectionName = globalReachConnectionName;
            return this;
        }

        /**
         * @param globalReachConnectionName Name of the global reach connection in the private cloud
         * 
         * @return builder
         * 
         */
        public Builder globalReachConnectionName(String globalReachConnectionName) {
            return globalReachConnectionName(Output.of(globalReachConnectionName));
        }

        /**
         * @param peerExpressRouteCircuit Identifier of the ExpressRoute Circuit to peer with in the global reach connection
         * 
         * @return builder
         * 
         */
        public Builder peerExpressRouteCircuit(@Nullable Output peerExpressRouteCircuit) {
            $.peerExpressRouteCircuit = peerExpressRouteCircuit;
            return this;
        }

        /**
         * @param peerExpressRouteCircuit Identifier of the ExpressRoute Circuit to peer with in the global reach connection
         * 
         * @return builder
         * 
         */
        public Builder peerExpressRouteCircuit(String peerExpressRouteCircuit) {
            return peerExpressRouteCircuit(Output.of(peerExpressRouteCircuit));
        }

        /**
         * @param privateCloudName The name of the private cloud.
         * 
         * @return builder
         * 
         */
        public Builder privateCloudName(Output privateCloudName) {
            $.privateCloudName = privateCloudName;
            return this;
        }

        /**
         * @param privateCloudName The name of the private cloud.
         * 
         * @return builder
         * 
         */
        public Builder privateCloudName(String privateCloudName) {
            return privateCloudName(Output.of(privateCloudName));
        }

        /**
         * @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));
        }

        public GlobalReachConnectionArgs build() {
            if ($.privateCloudName == null) {
                throw new MissingRequiredPropertyException("GlobalReachConnectionArgs", "privateCloudName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GlobalReachConnectionArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy