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

com.pulumi.azurenative.managednetworkfabric.NetworkFabricControllerArgs Maven / Gradle / Ivy

// *** 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.managednetworkfabric;

import com.pulumi.azurenative.managednetworkfabric.inputs.ExpressRouteConnectionInformationArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.ManagedResourceGroupConfigurationArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final NetworkFabricControllerArgs Empty = new NetworkFabricControllerArgs();

    /**
     * Switch configuration description.
     * 
     */
    @Import(name="annotation")
    private @Nullable Output annotation;

    /**
     * @return Switch configuration description.
     * 
     */
    public Optional> annotation() {
        return Optional.ofNullable(this.annotation);
    }

    /**
     * As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
     * 
     */
    @Import(name="infrastructureExpressRouteConnections")
    private @Nullable Output> infrastructureExpressRouteConnections;

    /**
     * @return As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
     * 
     */
    public Optional>> infrastructureExpressRouteConnections() {
        return Optional.ofNullable(this.infrastructureExpressRouteConnections);
    }

    /**
     * IPv4 Network Fabric Controller Address Space.
     * 
     */
    @Import(name="ipv4AddressSpace")
    private @Nullable Output ipv4AddressSpace;

    /**
     * @return IPv4 Network Fabric Controller Address Space.
     * 
     */
    public Optional> ipv4AddressSpace() {
        return Optional.ofNullable(this.ipv4AddressSpace);
    }

    /**
     * IPv6 Network Fabric Controller Address Space.
     * 
     */
    @Import(name="ipv6AddressSpace")
    private @Nullable Output ipv6AddressSpace;

    /**
     * @return IPv6 Network Fabric Controller Address Space.
     * 
     */
    public Optional> ipv6AddressSpace() {
        return Optional.ofNullable(this.ipv6AddressSpace);
    }

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

    /**
     * Managed Resource Group configuration properties.
     * 
     */
    @Import(name="managedResourceGroupConfiguration")
    private @Nullable Output managedResourceGroupConfiguration;

    /**
     * @return Managed Resource Group configuration properties.
     * 
     */
    public Optional> managedResourceGroupConfiguration() {
        return Optional.ofNullable(this.managedResourceGroupConfiguration);
    }

    /**
     * Name of the Network Fabric Controller
     * 
     */
    @Import(name="networkFabricControllerName")
    private @Nullable Output networkFabricControllerName;

    /**
     * @return Name of the Network Fabric Controller
     * 
     */
    public Optional> networkFabricControllerName() {
        return Optional.ofNullable(this.networkFabricControllerName);
    }

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

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

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

    /**
     * As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
     * 
     */
    @Import(name="workloadExpressRouteConnections")
    private @Nullable Output> workloadExpressRouteConnections;

    /**
     * @return As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
     * 
     */
    public Optional>> workloadExpressRouteConnections() {
        return Optional.ofNullable(this.workloadExpressRouteConnections);
    }

    private NetworkFabricControllerArgs() {}

    private NetworkFabricControllerArgs(NetworkFabricControllerArgs $) {
        this.annotation = $.annotation;
        this.infrastructureExpressRouteConnections = $.infrastructureExpressRouteConnections;
        this.ipv4AddressSpace = $.ipv4AddressSpace;
        this.ipv6AddressSpace = $.ipv6AddressSpace;
        this.location = $.location;
        this.managedResourceGroupConfiguration = $.managedResourceGroupConfiguration;
        this.networkFabricControllerName = $.networkFabricControllerName;
        this.resourceGroupName = $.resourceGroupName;
        this.tags = $.tags;
        this.workloadExpressRouteConnections = $.workloadExpressRouteConnections;
    }

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

    public static final class Builder {
        private NetworkFabricControllerArgs $;

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

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

        /**
         * @param annotation Switch configuration description.
         * 
         * @return builder
         * 
         */
        public Builder annotation(@Nullable Output annotation) {
            $.annotation = annotation;
            return this;
        }

        /**
         * @param annotation Switch configuration description.
         * 
         * @return builder
         * 
         */
        public Builder annotation(String annotation) {
            return annotation(Output.of(annotation));
        }

        /**
         * @param infrastructureExpressRouteConnections As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
         * 
         * @return builder
         * 
         */
        public Builder infrastructureExpressRouteConnections(@Nullable Output> infrastructureExpressRouteConnections) {
            $.infrastructureExpressRouteConnections = infrastructureExpressRouteConnections;
            return this;
        }

        /**
         * @param infrastructureExpressRouteConnections As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
         * 
         * @return builder
         * 
         */
        public Builder infrastructureExpressRouteConnections(List infrastructureExpressRouteConnections) {
            return infrastructureExpressRouteConnections(Output.of(infrastructureExpressRouteConnections));
        }

        /**
         * @param infrastructureExpressRouteConnections As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
         * 
         * @return builder
         * 
         */
        public Builder infrastructureExpressRouteConnections(ExpressRouteConnectionInformationArgs... infrastructureExpressRouteConnections) {
            return infrastructureExpressRouteConnections(List.of(infrastructureExpressRouteConnections));
        }

        /**
         * @param ipv4AddressSpace IPv4 Network Fabric Controller Address Space.
         * 
         * @return builder
         * 
         */
        public Builder ipv4AddressSpace(@Nullable Output ipv4AddressSpace) {
            $.ipv4AddressSpace = ipv4AddressSpace;
            return this;
        }

        /**
         * @param ipv4AddressSpace IPv4 Network Fabric Controller Address Space.
         * 
         * @return builder
         * 
         */
        public Builder ipv4AddressSpace(String ipv4AddressSpace) {
            return ipv4AddressSpace(Output.of(ipv4AddressSpace));
        }

        /**
         * @param ipv6AddressSpace IPv6 Network Fabric Controller Address Space.
         * 
         * @return builder
         * 
         */
        public Builder ipv6AddressSpace(@Nullable Output ipv6AddressSpace) {
            $.ipv6AddressSpace = ipv6AddressSpace;
            return this;
        }

        /**
         * @param ipv6AddressSpace IPv6 Network Fabric Controller Address Space.
         * 
         * @return builder
         * 
         */
        public Builder ipv6AddressSpace(String ipv6AddressSpace) {
            return ipv6AddressSpace(Output.of(ipv6AddressSpace));
        }

        /**
         * @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 managedResourceGroupConfiguration Managed Resource Group configuration properties.
         * 
         * @return builder
         * 
         */
        public Builder managedResourceGroupConfiguration(@Nullable Output managedResourceGroupConfiguration) {
            $.managedResourceGroupConfiguration = managedResourceGroupConfiguration;
            return this;
        }

        /**
         * @param managedResourceGroupConfiguration Managed Resource Group configuration properties.
         * 
         * @return builder
         * 
         */
        public Builder managedResourceGroupConfiguration(ManagedResourceGroupConfigurationArgs managedResourceGroupConfiguration) {
            return managedResourceGroupConfiguration(Output.of(managedResourceGroupConfiguration));
        }

        /**
         * @param networkFabricControllerName Name of the Network Fabric Controller
         * 
         * @return builder
         * 
         */
        public Builder networkFabricControllerName(@Nullable Output networkFabricControllerName) {
            $.networkFabricControllerName = networkFabricControllerName;
            return this;
        }

        /**
         * @param networkFabricControllerName Name of the Network Fabric Controller
         * 
         * @return builder
         * 
         */
        public Builder networkFabricControllerName(String networkFabricControllerName) {
            return networkFabricControllerName(Output.of(networkFabricControllerName));
        }

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

        /**
         * @param workloadExpressRouteConnections As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
         * 
         * @return builder
         * 
         */
        public Builder workloadExpressRouteConnections(@Nullable Output> workloadExpressRouteConnections) {
            $.workloadExpressRouteConnections = workloadExpressRouteConnections;
            return this;
        }

        /**
         * @param workloadExpressRouteConnections As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
         * 
         * @return builder
         * 
         */
        public Builder workloadExpressRouteConnections(List workloadExpressRouteConnections) {
            return workloadExpressRouteConnections(Output.of(workloadExpressRouteConnections));
        }

        /**
         * @param workloadExpressRouteConnections As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
         * 
         * @return builder
         * 
         */
        public Builder workloadExpressRouteConnections(ExpressRouteConnectionInformationArgs... workloadExpressRouteConnections) {
            return workloadExpressRouteConnections(List.of(workloadExpressRouteConnections));
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy