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

com.pulumi.azurenative.avs.AuthorizationArgs 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.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 AuthorizationArgs extends com.pulumi.resources.ResourceArgs {

    public static final AuthorizationArgs Empty = new AuthorizationArgs();

    /**
     * Name of the ExpressRoute Circuit Authorization in the private cloud
     * 
     */
    @Import(name="authorizationName")
    private @Nullable Output authorizationName;

    /**
     * @return Name of the ExpressRoute Circuit Authorization in the private cloud
     * 
     */
    public Optional> authorizationName() {
        return Optional.ofNullable(this.authorizationName);
    }

    /**
     * The ID of the ExpressRoute Circuit
     * 
     */
    @Import(name="expressRouteId")
    private @Nullable Output expressRouteId;

    /**
     * @return The ID of the ExpressRoute Circuit
     * 
     */
    public Optional> expressRouteId() {
        return Optional.ofNullable(this.expressRouteId);
    }

    /**
     * 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 AuthorizationArgs() {}

    private AuthorizationArgs(AuthorizationArgs $) {
        this.authorizationName = $.authorizationName;
        this.expressRouteId = $.expressRouteId;
        this.privateCloudName = $.privateCloudName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private AuthorizationArgs $;

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

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

        /**
         * @param authorizationName Name of the ExpressRoute Circuit Authorization in the private cloud
         * 
         * @return builder
         * 
         */
        public Builder authorizationName(@Nullable Output authorizationName) {
            $.authorizationName = authorizationName;
            return this;
        }

        /**
         * @param authorizationName Name of the ExpressRoute Circuit Authorization in the private cloud
         * 
         * @return builder
         * 
         */
        public Builder authorizationName(String authorizationName) {
            return authorizationName(Output.of(authorizationName));
        }

        /**
         * @param expressRouteId The ID of the ExpressRoute Circuit
         * 
         * @return builder
         * 
         */
        public Builder expressRouteId(@Nullable Output expressRouteId) {
            $.expressRouteId = expressRouteId;
            return this;
        }

        /**
         * @param expressRouteId The ID of the ExpressRoute Circuit
         * 
         * @return builder
         * 
         */
        public Builder expressRouteId(String expressRouteId) {
            return expressRouteId(Output.of(expressRouteId));
        }

        /**
         * @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 AuthorizationArgs build() {
            if ($.privateCloudName == null) {
                throw new MissingRequiredPropertyException("AuthorizationArgs", "privateCloudName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("AuthorizationArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy