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

com.pulumi.azure.storage.inputs.AccountRoutingArgs 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.storage.inputs;

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


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

    public static final AccountRoutingArgs Empty = new AccountRoutingArgs();

    /**
     * Specifies the kind of network routing opted by the user. Possible values are `InternetRouting` and `MicrosoftRouting`. Defaults to `MicrosoftRouting`.
     * 
     */
    @Import(name="choice")
    private @Nullable Output choice;

    /**
     * @return Specifies the kind of network routing opted by the user. Possible values are `InternetRouting` and `MicrosoftRouting`. Defaults to `MicrosoftRouting`.
     * 
     */
    public Optional> choice() {
        return Optional.ofNullable(this.choice);
    }

    /**
     * Should internet routing storage endpoints be published? Defaults to `false`.
     * 
     */
    @Import(name="publishInternetEndpoints")
    private @Nullable Output publishInternetEndpoints;

    /**
     * @return Should internet routing storage endpoints be published? Defaults to `false`.
     * 
     */
    public Optional> publishInternetEndpoints() {
        return Optional.ofNullable(this.publishInternetEndpoints);
    }

    /**
     * Should Microsoft routing storage endpoints be published? Defaults to `false`.
     * 
     */
    @Import(name="publishMicrosoftEndpoints")
    private @Nullable Output publishMicrosoftEndpoints;

    /**
     * @return Should Microsoft routing storage endpoints be published? Defaults to `false`.
     * 
     */
    public Optional> publishMicrosoftEndpoints() {
        return Optional.ofNullable(this.publishMicrosoftEndpoints);
    }

    private AccountRoutingArgs() {}

    private AccountRoutingArgs(AccountRoutingArgs $) {
        this.choice = $.choice;
        this.publishInternetEndpoints = $.publishInternetEndpoints;
        this.publishMicrosoftEndpoints = $.publishMicrosoftEndpoints;
    }

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

    public static final class Builder {
        private AccountRoutingArgs $;

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

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

        /**
         * @param choice Specifies the kind of network routing opted by the user. Possible values are `InternetRouting` and `MicrosoftRouting`. Defaults to `MicrosoftRouting`.
         * 
         * @return builder
         * 
         */
        public Builder choice(@Nullable Output choice) {
            $.choice = choice;
            return this;
        }

        /**
         * @param choice Specifies the kind of network routing opted by the user. Possible values are `InternetRouting` and `MicrosoftRouting`. Defaults to `MicrosoftRouting`.
         * 
         * @return builder
         * 
         */
        public Builder choice(String choice) {
            return choice(Output.of(choice));
        }

        /**
         * @param publishInternetEndpoints Should internet routing storage endpoints be published? Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder publishInternetEndpoints(@Nullable Output publishInternetEndpoints) {
            $.publishInternetEndpoints = publishInternetEndpoints;
            return this;
        }

        /**
         * @param publishInternetEndpoints Should internet routing storage endpoints be published? Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder publishInternetEndpoints(Boolean publishInternetEndpoints) {
            return publishInternetEndpoints(Output.of(publishInternetEndpoints));
        }

        /**
         * @param publishMicrosoftEndpoints Should Microsoft routing storage endpoints be published? Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder publishMicrosoftEndpoints(@Nullable Output publishMicrosoftEndpoints) {
            $.publishMicrosoftEndpoints = publishMicrosoftEndpoints;
            return this;
        }

        /**
         * @param publishMicrosoftEndpoints Should Microsoft routing storage endpoints be published? Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder publishMicrosoftEndpoints(Boolean publishMicrosoftEndpoints) {
            return publishMicrosoftEndpoints(Output.of(publishMicrosoftEndpoints));
        }

        public AccountRoutingArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy