Class NetworkFabricController


  • public class NetworkFabricController
    extends com.pulumi.resources.CustomResource
    The NetworkFabricController resource definition. Azure REST API version: 2023-02-01-preview. Prior API version in Azure Native 1.x: 2023-02-01-preview. Other available API versions: 2023-06-15. ## Example Usage ### NetworkFabricControllers_Create_MaximumSet_Gen ```java package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; import com.pulumi.azurenative.managednetworkfabric.NetworkFabricController; import com.pulumi.azurenative.managednetworkfabric.NetworkFabricControllerArgs; import java.util.List; import java.util.ArrayList; import java.util.Map; import java.io.File; import java.nio.file.Files; import java.nio.file.Paths; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { var networkFabricController = new NetworkFabricController("networkFabricController", NetworkFabricControllerArgs.builder() .annotation("lab 1") .infrastructureExpressRouteConnections(Map.ofEntries( Map.entry("expressRouteAuthorizationKey", "xxxxxxx"), Map.entry("expressRouteCircuitId", "/subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName") )) .ipv4AddressSpace("172.253.0.0/19") .location("eastus") .managedResourceGroupConfiguration(Map.ofEntries( Map.entry("location", "eastus"), Map.entry("name", "managedResourceGroupName") )) .networkFabricControllerName("NetworkControllerName") .resourceGroupName("resourceGroupName") .workloadExpressRouteConnections(Map.ofEntries( Map.entry("expressRouteAuthorizationKey", "xxxxx"), Map.entry("expressRouteCircuitId", "/subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName") )) .build()); } } ``` ## Import An existing resource can be imported using its type token, name, and identifier, e.g. ```sh $ pulumi import azure-native:managednetworkfabric:NetworkFabricController NetworkFabricName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/{networkFabricControllerName} ```
    • Constructor Detail

      • NetworkFabricController

        public NetworkFabricController​(java.lang.String name)
        Parameters:
        name - The _unique_ name of the resulting resource.
      • NetworkFabricController

        public NetworkFabricController​(java.lang.String name,
                                       NetworkFabricControllerArgs args)
        Parameters:
        name - The _unique_ name of the resulting resource.
        args - The arguments to use to populate this resource's properties.
      • NetworkFabricController

        public NetworkFabricController​(java.lang.String name,
                                       NetworkFabricControllerArgs args,
                                       @Nullable
                                       com.pulumi.resources.CustomResourceOptions options)
        Parameters:
        name - The _unique_ name of the resulting resource.
        args - The arguments to use to populate this resource's properties.
        options - A bag of options that control this resource's behavior.
    • Method Detail

      • annotation

        public com.pulumi.core.Output<java.util.Optional<java.lang.String>> annotation()
        Returns:
        Switch configuration description.
      • infrastructureExpressRouteConnections

        public com.pulumi.core.Output<java.util.Optional<java.util.List<ExpressRouteConnectionInformationResponse>>> infrastructureExpressRouteConnections()
        Returns:
        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)
      • infrastructureServices

        public com.pulumi.core.Output<InfrastructureServicesResponse> infrastructureServices()
        Returns:
        InfrastructureServices IP ranges.
      • ipv4AddressSpace

        public com.pulumi.core.Output<java.util.Optional<java.lang.String>> ipv4AddressSpace()
        Returns:
        IPv4 Network Fabric Controller Address Space.
      • ipv6AddressSpace

        public com.pulumi.core.Output<java.util.Optional<java.lang.String>> ipv6AddressSpace()
        Returns:
        IPv6 Network Fabric Controller Address Space.
      • location

        public com.pulumi.core.Output<java.lang.String> location()
        Returns:
        The geo-location where the resource lives
      • managedResourceGroupConfiguration

        public com.pulumi.core.Output<java.util.Optional<ManagedResourceGroupConfigurationResponse>> managedResourceGroupConfiguration()
        Returns:
        Managed Resource Group configuration properties.
      • name

        public com.pulumi.core.Output<java.lang.String> name()
        Returns:
        The name of the resource
      • networkFabricIds

        public com.pulumi.core.Output<java.util.List<java.lang.String>> networkFabricIds()
        Returns:
        The NF-ID will be an input parameter used by the NF to link and get associated with the parent NFC Service.
      • operationalState

        public com.pulumi.core.Output<java.lang.String> operationalState()
        Returns:
        The Operational Status would always be NULL. Look only in to the Provisioning state for the latest status.
      • provisioningState

        public com.pulumi.core.Output<java.lang.String> provisioningState()
        Returns:
        Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of NFC provisioning.
      • systemData

        public com.pulumi.core.Output<SystemDataResponse> systemData()
        Returns:
        Azure Resource Manager metadata containing createdBy and modifiedBy information.
      • tags

        public com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,​java.lang.String>>> tags()
        Returns:
        Resource tags.
      • type

        public com.pulumi.core.Output<java.lang.String> type()
        Returns:
        The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
      • workloadExpressRouteConnections

        public com.pulumi.core.Output<java.util.Optional<java.util.List<ExpressRouteConnectionInformationResponse>>> workloadExpressRouteConnections()
        Returns:
        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).
      • workloadManagementNetwork

        public com.pulumi.core.Output<java.lang.Boolean> workloadManagementNetwork()
        Returns:
        A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints.
      • workloadServices

        public com.pulumi.core.Output<WorkloadServicesResponse> workloadServices()
        Returns:
        WorkloadServices IP ranges.
      • get

        public static NetworkFabricController get​(java.lang.String name,
                                                  com.pulumi.core.Output<java.lang.String> id,
                                                  @Nullable
                                                  com.pulumi.resources.CustomResourceOptions options)
        Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
        Parameters:
        name - The _unique_ name of the resulting resource.
        id - The _unique_ provider ID of the resource to lookup.
        options - Optional settings to control the behavior of the CustomResource.