1. Packages
  2. Azure Native
  3. API Docs
  4. managednetworkfabric
  5. L3IsolationDomain
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.managednetworkfabric.L3IsolationDomain

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    The L3 Isolation Domain resource definition.

    Uses Azure REST API version 2023-06-15. In version 2.x of the Azure Native provider, it used API version 2023-02-01-preview.

    Other available API versions: 2023-02-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native managednetworkfabric [ApiVersion]. See the version guide for details.

    Example Usage

    L3IsolationDomains_Create_MaximumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var l3IsolationDomain = new AzureNative.ManagedNetworkFabric.L3IsolationDomain("l3IsolationDomain", new()
        {
            AggregateRouteConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.AggregateRouteConfigurationArgs
            {
                Ipv4Routes = new[]
                {
                    new AzureNative.ManagedNetworkFabric.Inputs.AggregateRouteArgs
                    {
                        Prefix = "10.0.0.0/24",
                    },
                },
                Ipv6Routes = new[]
                {
                    new AzureNative.ManagedNetworkFabric.Inputs.AggregateRouteArgs
                    {
                        Prefix = "3FFE:FFFF:0:CD30::a0/29",
                    },
                },
            },
            Annotation = "annotation",
            ConnectedSubnetRoutePolicy = new AzureNative.ManagedNetworkFabric.Inputs.ConnectedSubnetRoutePolicyArgs
            {
                ExportRoutePolicy = new AzureNative.ManagedNetworkFabric.Inputs.L3ExportRoutePolicyArgs
                {
                    ExportIpv4RoutePolicyId = "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/example-routePolicy",
                    ExportIpv6RoutePolicyId = "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/example-routePolicy",
                },
                ExportRoutePolicyId = "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName",
            },
            L3IsolationDomainName = "example-l3domain",
            Location = "eastus",
            NetworkFabricId = "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkFabrics/example-fabric",
            RedistributeConnectedSubnets = AzureNative.ManagedNetworkFabric.RedistributeConnectedSubnets.True,
            RedistributeStaticRoutes = AzureNative.ManagedNetworkFabric.RedistributeStaticRoutes.False,
            ResourceGroupName = "example-rg",
            Tags = 
            {
                { "keyID", "KeyValue" },
            },
        });
    
    });
    
    package main
    
    import (
    	managednetworkfabric "github.com/pulumi/pulumi-azure-native-sdk/managednetworkfabric/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := managednetworkfabric.NewL3IsolationDomain(ctx, "l3IsolationDomain", &managednetworkfabric.L3IsolationDomainArgs{
    			AggregateRouteConfiguration: &managednetworkfabric.AggregateRouteConfigurationArgs{
    				Ipv4Routes: managednetworkfabric.AggregateRouteArray{
    					&managednetworkfabric.AggregateRouteArgs{
    						Prefix: pulumi.String("10.0.0.0/24"),
    					},
    				},
    				Ipv6Routes: managednetworkfabric.AggregateRouteArray{
    					&managednetworkfabric.AggregateRouteArgs{
    						Prefix: pulumi.String("3FFE:FFFF:0:CD30::a0/29"),
    					},
    				},
    			},
    			Annotation: pulumi.String("annotation"),
    			ConnectedSubnetRoutePolicy: &managednetworkfabric.ConnectedSubnetRoutePolicyArgs{
    				ExportRoutePolicy: &managednetworkfabric.L3ExportRoutePolicyArgs{
    					ExportIpv4RoutePolicyId: pulumi.String("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/example-routePolicy"),
    					ExportIpv6RoutePolicyId: pulumi.String("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/example-routePolicy"),
    				},
    				ExportRoutePolicyId: pulumi.String("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName"),
    			},
    			L3IsolationDomainName:        pulumi.String("example-l3domain"),
    			Location:                     pulumi.String("eastus"),
    			NetworkFabricId:              pulumi.String("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkFabrics/example-fabric"),
    			RedistributeConnectedSubnets: pulumi.String(managednetworkfabric.RedistributeConnectedSubnetsTrue),
    			RedistributeStaticRoutes:     pulumi.String(managednetworkfabric.RedistributeStaticRoutesFalse),
    			ResourceGroupName:            pulumi.String("example-rg"),
    			Tags: pulumi.StringMap{
    				"keyID": pulumi.String("KeyValue"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.managednetworkfabric.L3IsolationDomain;
    import com.pulumi.azurenative.managednetworkfabric.L3IsolationDomainArgs;
    import com.pulumi.azurenative.managednetworkfabric.inputs.AggregateRouteConfigurationArgs;
    import com.pulumi.azurenative.managednetworkfabric.inputs.ConnectedSubnetRoutePolicyArgs;
    import com.pulumi.azurenative.managednetworkfabric.inputs.L3ExportRoutePolicyArgs;
    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 l3IsolationDomain = new L3IsolationDomain("l3IsolationDomain", L3IsolationDomainArgs.builder()
                .aggregateRouteConfiguration(AggregateRouteConfigurationArgs.builder()
                    .ipv4Routes(AggregateRouteArgs.builder()
                        .prefix("10.0.0.0/24")
                        .build())
                    .ipv6Routes(AggregateRouteArgs.builder()
                        .prefix("3FFE:FFFF:0:CD30::a0/29")
                        .build())
                    .build())
                .annotation("annotation")
                .connectedSubnetRoutePolicy(ConnectedSubnetRoutePolicyArgs.builder()
                    .exportRoutePolicy(L3ExportRoutePolicyArgs.builder()
                        .exportIpv4RoutePolicyId("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/example-routePolicy")
                        .exportIpv6RoutePolicyId("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/example-routePolicy")
                        .build())
                    .exportRoutePolicyId("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName")
                    .build())
                .l3IsolationDomainName("example-l3domain")
                .location("eastus")
                .networkFabricId("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkFabrics/example-fabric")
                .redistributeConnectedSubnets("True")
                .redistributeStaticRoutes("False")
                .resourceGroupName("example-rg")
                .tags(Map.of("keyID", "KeyValue"))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const l3IsolationDomain = new azure_native.managednetworkfabric.L3IsolationDomain("l3IsolationDomain", {
        aggregateRouteConfiguration: {
            ipv4Routes: [{
                prefix: "10.0.0.0/24",
            }],
            ipv6Routes: [{
                prefix: "3FFE:FFFF:0:CD30::a0/29",
            }],
        },
        annotation: "annotation",
        connectedSubnetRoutePolicy: {
            exportRoutePolicy: {
                exportIpv4RoutePolicyId: "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/example-routePolicy",
                exportIpv6RoutePolicyId: "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/example-routePolicy",
            },
            exportRoutePolicyId: "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName",
        },
        l3IsolationDomainName: "example-l3domain",
        location: "eastus",
        networkFabricId: "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkFabrics/example-fabric",
        redistributeConnectedSubnets: azure_native.managednetworkfabric.RedistributeConnectedSubnets.True,
        redistributeStaticRoutes: azure_native.managednetworkfabric.RedistributeStaticRoutes.False,
        resourceGroupName: "example-rg",
        tags: {
            keyID: "KeyValue",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    l3_isolation_domain = azure_native.managednetworkfabric.L3IsolationDomain("l3IsolationDomain",
        aggregate_route_configuration={
            "ipv4_routes": [{
                "prefix": "10.0.0.0/24",
            }],
            "ipv6_routes": [{
                "prefix": "3FFE:FFFF:0:CD30::a0/29",
            }],
        },
        annotation="annotation",
        connected_subnet_route_policy={
            "export_route_policy": {
                "export_ipv4_route_policy_id": "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/example-routePolicy",
                "export_ipv6_route_policy_id": "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/example-routePolicy",
            },
            "export_route_policy_id": "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName",
        },
        l3_isolation_domain_name="example-l3domain",
        location="eastus",
        network_fabric_id="/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkFabrics/example-fabric",
        redistribute_connected_subnets=azure_native.managednetworkfabric.RedistributeConnectedSubnets.TRUE,
        redistribute_static_routes=azure_native.managednetworkfabric.RedistributeStaticRoutes.FALSE,
        resource_group_name="example-rg",
        tags={
            "keyID": "KeyValue",
        })
    
    resources:
      l3IsolationDomain:
        type: azure-native:managednetworkfabric:L3IsolationDomain
        properties:
          aggregateRouteConfiguration:
            ipv4Routes:
              - prefix: 10.0.0.0/24
            ipv6Routes:
              - prefix: 3FFE:FFFF:0:CD30::a0/29
          annotation: annotation
          connectedSubnetRoutePolicy:
            exportRoutePolicy:
              exportIpv4RoutePolicyId: /subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/example-routePolicy
              exportIpv6RoutePolicyId: /subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/example-routePolicy
            exportRoutePolicyId: /subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName
          l3IsolationDomainName: example-l3domain
          location: eastus
          networkFabricId: /subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkFabrics/example-fabric
          redistributeConnectedSubnets: True
          redistributeStaticRoutes: False
          resourceGroupName: example-rg
          tags:
            keyID: KeyValue
    

    Create L3IsolationDomain Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new L3IsolationDomain(name: string, args: L3IsolationDomainArgs, opts?: CustomResourceOptions);
    @overload
    def L3IsolationDomain(resource_name: str,
                          args: L3IsolationDomainArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def L3IsolationDomain(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          network_fabric_id: Optional[str] = None,
                          resource_group_name: Optional[str] = None,
                          aggregate_route_configuration: Optional[AggregateRouteConfigurationArgs] = None,
                          annotation: Optional[str] = None,
                          connected_subnet_route_policy: Optional[ConnectedSubnetRoutePolicyArgs] = None,
                          l3_isolation_domain_name: Optional[str] = None,
                          location: Optional[str] = None,
                          redistribute_connected_subnets: Optional[Union[str, RedistributeConnectedSubnets]] = None,
                          redistribute_static_routes: Optional[Union[str, RedistributeStaticRoutes]] = None,
                          tags: Optional[Mapping[str, str]] = None)
    func NewL3IsolationDomain(ctx *Context, name string, args L3IsolationDomainArgs, opts ...ResourceOption) (*L3IsolationDomain, error)
    public L3IsolationDomain(string name, L3IsolationDomainArgs args, CustomResourceOptions? opts = null)
    public L3IsolationDomain(String name, L3IsolationDomainArgs args)
    public L3IsolationDomain(String name, L3IsolationDomainArgs args, CustomResourceOptions options)
    
    type: azure-native:managednetworkfabric:L3IsolationDomain
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args L3IsolationDomainArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args L3IsolationDomainArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args L3IsolationDomainArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args L3IsolationDomainArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args L3IsolationDomainArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var l3isolationDomainResource = new AzureNative.ManagedNetworkFabric.L3IsolationDomain("l3isolationDomainResource", new()
    {
        NetworkFabricId = "string",
        ResourceGroupName = "string",
        AggregateRouteConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.AggregateRouteConfigurationArgs
        {
            Ipv4Routes = new[]
            {
                new AzureNative.ManagedNetworkFabric.Inputs.AggregateRouteArgs
                {
                    Prefix = "string",
                },
            },
            Ipv6Routes = new[]
            {
                new AzureNative.ManagedNetworkFabric.Inputs.AggregateRouteArgs
                {
                    Prefix = "string",
                },
            },
        },
        Annotation = "string",
        ConnectedSubnetRoutePolicy = new AzureNative.ManagedNetworkFabric.Inputs.ConnectedSubnetRoutePolicyArgs
        {
            ExportRoutePolicy = new AzureNative.ManagedNetworkFabric.Inputs.L3ExportRoutePolicyArgs
            {
                ExportIpv4RoutePolicyId = "string",
                ExportIpv6RoutePolicyId = "string",
            },
            ExportRoutePolicyId = "string",
        },
        L3IsolationDomainName = "string",
        Location = "string",
        RedistributeConnectedSubnets = "string",
        RedistributeStaticRoutes = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := managednetworkfabric.NewL3IsolationDomain(ctx, "l3isolationDomainResource", &managednetworkfabric.L3IsolationDomainArgs{
    	NetworkFabricId:   pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	AggregateRouteConfiguration: &managednetworkfabric.AggregateRouteConfigurationArgs{
    		Ipv4Routes: managednetworkfabric.AggregateRouteArray{
    			&managednetworkfabric.AggregateRouteArgs{
    				Prefix: pulumi.String("string"),
    			},
    		},
    		Ipv6Routes: managednetworkfabric.AggregateRouteArray{
    			&managednetworkfabric.AggregateRouteArgs{
    				Prefix: pulumi.String("string"),
    			},
    		},
    	},
    	Annotation: pulumi.String("string"),
    	ConnectedSubnetRoutePolicy: &managednetworkfabric.ConnectedSubnetRoutePolicyArgs{
    		ExportRoutePolicy: &managednetworkfabric.L3ExportRoutePolicyArgs{
    			ExportIpv4RoutePolicyId: pulumi.String("string"),
    			ExportIpv6RoutePolicyId: pulumi.String("string"),
    		},
    		ExportRoutePolicyId: pulumi.String("string"),
    	},
    	L3IsolationDomainName:        pulumi.String("string"),
    	Location:                     pulumi.String("string"),
    	RedistributeConnectedSubnets: pulumi.String("string"),
    	RedistributeStaticRoutes:     pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var l3isolationDomainResource = new L3IsolationDomain("l3isolationDomainResource", L3IsolationDomainArgs.builder()
        .networkFabricId("string")
        .resourceGroupName("string")
        .aggregateRouteConfiguration(AggregateRouteConfigurationArgs.builder()
            .ipv4Routes(AggregateRouteArgs.builder()
                .prefix("string")
                .build())
            .ipv6Routes(AggregateRouteArgs.builder()
                .prefix("string")
                .build())
            .build())
        .annotation("string")
        .connectedSubnetRoutePolicy(ConnectedSubnetRoutePolicyArgs.builder()
            .exportRoutePolicy(L3ExportRoutePolicyArgs.builder()
                .exportIpv4RoutePolicyId("string")
                .exportIpv6RoutePolicyId("string")
                .build())
            .exportRoutePolicyId("string")
            .build())
        .l3IsolationDomainName("string")
        .location("string")
        .redistributeConnectedSubnets("string")
        .redistributeStaticRoutes("string")
        .tags(Map.of("string", "string"))
        .build());
    
    l3isolation_domain_resource = azure_native.managednetworkfabric.L3IsolationDomain("l3isolationDomainResource",
        network_fabric_id="string",
        resource_group_name="string",
        aggregate_route_configuration={
            "ipv4_routes": [{
                "prefix": "string",
            }],
            "ipv6_routes": [{
                "prefix": "string",
            }],
        },
        annotation="string",
        connected_subnet_route_policy={
            "export_route_policy": {
                "export_ipv4_route_policy_id": "string",
                "export_ipv6_route_policy_id": "string",
            },
            "export_route_policy_id": "string",
        },
        l3_isolation_domain_name="string",
        location="string",
        redistribute_connected_subnets="string",
        redistribute_static_routes="string",
        tags={
            "string": "string",
        })
    
    const l3isolationDomainResource = new azure_native.managednetworkfabric.L3IsolationDomain("l3isolationDomainResource", {
        networkFabricId: "string",
        resourceGroupName: "string",
        aggregateRouteConfiguration: {
            ipv4Routes: [{
                prefix: "string",
            }],
            ipv6Routes: [{
                prefix: "string",
            }],
        },
        annotation: "string",
        connectedSubnetRoutePolicy: {
            exportRoutePolicy: {
                exportIpv4RoutePolicyId: "string",
                exportIpv6RoutePolicyId: "string",
            },
            exportRoutePolicyId: "string",
        },
        l3IsolationDomainName: "string",
        location: "string",
        redistributeConnectedSubnets: "string",
        redistributeStaticRoutes: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:managednetworkfabric:L3IsolationDomain
    properties:
        aggregateRouteConfiguration:
            ipv4Routes:
                - prefix: string
            ipv6Routes:
                - prefix: string
        annotation: string
        connectedSubnetRoutePolicy:
            exportRoutePolicy:
                exportIpv4RoutePolicyId: string
                exportIpv6RoutePolicyId: string
            exportRoutePolicyId: string
        l3IsolationDomainName: string
        location: string
        networkFabricId: string
        redistributeConnectedSubnets: string
        redistributeStaticRoutes: string
        resourceGroupName: string
        tags:
            string: string
    

    L3IsolationDomain Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The L3IsolationDomain resource accepts the following input properties:

    NetworkFabricId string
    ARM Resource ID of the Network Fabric.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AggregateRouteConfiguration Pulumi.AzureNative.ManagedNetworkFabric.Inputs.AggregateRouteConfiguration
    Aggregate route configurations.
    Annotation string
    Switch configuration description.
    ConnectedSubnetRoutePolicy Pulumi.AzureNative.ManagedNetworkFabric.Inputs.ConnectedSubnetRoutePolicy
    Connected Subnet RoutePolicy
    L3IsolationDomainName string
    Name of the L3 Isolation Domain.
    Location string
    The geo-location where the resource lives
    RedistributeConnectedSubnets string | Pulumi.AzureNative.ManagedNetworkFabric.RedistributeConnectedSubnets
    Advertise Connected Subnets. Ex: "True" | "False".
    RedistributeStaticRoutes string | Pulumi.AzureNative.ManagedNetworkFabric.RedistributeStaticRoutes
    Advertise Static Routes. Ex: "True" | "False".
    Tags Dictionary<string, string>
    Resource tags.
    NetworkFabricId string
    ARM Resource ID of the Network Fabric.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AggregateRouteConfiguration AggregateRouteConfigurationArgs
    Aggregate route configurations.
    Annotation string
    Switch configuration description.
    ConnectedSubnetRoutePolicy ConnectedSubnetRoutePolicyArgs
    Connected Subnet RoutePolicy
    L3IsolationDomainName string
    Name of the L3 Isolation Domain.
    Location string
    The geo-location where the resource lives
    RedistributeConnectedSubnets string | RedistributeConnectedSubnets
    Advertise Connected Subnets. Ex: "True" | "False".
    RedistributeStaticRoutes string | RedistributeStaticRoutes
    Advertise Static Routes. Ex: "True" | "False".
    Tags map[string]string
    Resource tags.
    networkFabricId String
    ARM Resource ID of the Network Fabric.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    aggregateRouteConfiguration AggregateRouteConfiguration
    Aggregate route configurations.
    annotation String
    Switch configuration description.
    connectedSubnetRoutePolicy ConnectedSubnetRoutePolicy
    Connected Subnet RoutePolicy
    l3IsolationDomainName String
    Name of the L3 Isolation Domain.
    location String
    The geo-location where the resource lives
    redistributeConnectedSubnets String | RedistributeConnectedSubnets
    Advertise Connected Subnets. Ex: "True" | "False".
    redistributeStaticRoutes String | RedistributeStaticRoutes
    Advertise Static Routes. Ex: "True" | "False".
    tags Map<String,String>
    Resource tags.
    networkFabricId string
    ARM Resource ID of the Network Fabric.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    aggregateRouteConfiguration AggregateRouteConfiguration
    Aggregate route configurations.
    annotation string
    Switch configuration description.
    connectedSubnetRoutePolicy ConnectedSubnetRoutePolicy
    Connected Subnet RoutePolicy
    l3IsolationDomainName string
    Name of the L3 Isolation Domain.
    location string
    The geo-location where the resource lives
    redistributeConnectedSubnets string | RedistributeConnectedSubnets
    Advertise Connected Subnets. Ex: "True" | "False".
    redistributeStaticRoutes string | RedistributeStaticRoutes
    Advertise Static Routes. Ex: "True" | "False".
    tags {[key: string]: string}
    Resource tags.
    network_fabric_id str
    ARM Resource ID of the Network Fabric.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    aggregate_route_configuration AggregateRouteConfigurationArgs
    Aggregate route configurations.
    annotation str
    Switch configuration description.
    connected_subnet_route_policy ConnectedSubnetRoutePolicyArgs
    Connected Subnet RoutePolicy
    l3_isolation_domain_name str
    Name of the L3 Isolation Domain.
    location str
    The geo-location where the resource lives
    redistribute_connected_subnets str | RedistributeConnectedSubnets
    Advertise Connected Subnets. Ex: "True" | "False".
    redistribute_static_routes str | RedistributeStaticRoutes
    Advertise Static Routes. Ex: "True" | "False".
    tags Mapping[str, str]
    Resource tags.
    networkFabricId String
    ARM Resource ID of the Network Fabric.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    aggregateRouteConfiguration Property Map
    Aggregate route configurations.
    annotation String
    Switch configuration description.
    connectedSubnetRoutePolicy Property Map
    Connected Subnet RoutePolicy
    l3IsolationDomainName String
    Name of the L3 Isolation Domain.
    location String
    The geo-location where the resource lives
    redistributeConnectedSubnets String | "True" | "False"
    Advertise Connected Subnets. Ex: "True" | "False".
    redistributeStaticRoutes String | "True" | "False"
    Advertise Static Routes. Ex: "True" | "False".
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the L3IsolationDomain resource produces the following output properties:

    AdministrativeState string
    Administrative state of the resource.
    AzureApiVersion string
    The Azure API version of the resource.
    ConfigurationState string
    Configuration state of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning state of the resource.
    SystemData Pulumi.AzureNative.ManagedNetworkFabric.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AdministrativeState string
    Administrative state of the resource.
    AzureApiVersion string
    The Azure API version of the resource.
    ConfigurationState string
    Configuration state of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning state of the resource.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    administrativeState String
    Administrative state of the resource.
    azureApiVersion String
    The Azure API version of the resource.
    configurationState String
    Configuration state of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Provisioning state of the resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    administrativeState string
    Administrative state of the resource.
    azureApiVersion string
    The Azure API version of the resource.
    configurationState string
    Configuration state of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    Provisioning state of the resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    administrative_state str
    Administrative state of the resource.
    azure_api_version str
    The Azure API version of the resource.
    configuration_state str
    Configuration state of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    Provisioning state of the resource.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    administrativeState String
    Administrative state of the resource.
    azureApiVersion String
    The Azure API version of the resource.
    configurationState String
    Configuration state of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Provisioning state of the resource.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AggregateRoute, AggregateRouteArgs

    Prefix string
    IPv4 Prefix of the aggregate Ipv4Route.
    Prefix string
    IPv4 Prefix of the aggregate Ipv4Route.
    prefix String
    IPv4 Prefix of the aggregate Ipv4Route.
    prefix string
    IPv4 Prefix of the aggregate Ipv4Route.
    prefix str
    IPv4 Prefix of the aggregate Ipv4Route.
    prefix String
    IPv4 Prefix of the aggregate Ipv4Route.

    AggregateRouteConfiguration, AggregateRouteConfigurationArgs

    Ipv4Routes []AggregateRoute
    List of IPv4 Route prefixes.
    Ipv6Routes []AggregateRoute
    List of Ipv6Routes prefixes.
    ipv4Routes List<AggregateRoute>
    List of IPv4 Route prefixes.
    ipv6Routes List<AggregateRoute>
    List of Ipv6Routes prefixes.
    ipv4Routes AggregateRoute[]
    List of IPv4 Route prefixes.
    ipv6Routes AggregateRoute[]
    List of Ipv6Routes prefixes.
    ipv4_routes Sequence[AggregateRoute]
    List of IPv4 Route prefixes.
    ipv6_routes Sequence[AggregateRoute]
    List of Ipv6Routes prefixes.
    ipv4Routes List<Property Map>
    List of IPv4 Route prefixes.
    ipv6Routes List<Property Map>
    List of Ipv6Routes prefixes.

    AggregateRouteConfigurationResponse, AggregateRouteConfigurationResponseArgs

    Ipv4Routes []AggregateRouteResponse
    List of IPv4 Route prefixes.
    Ipv6Routes []AggregateRouteResponse
    List of Ipv6Routes prefixes.
    ipv4Routes List<AggregateRouteResponse>
    List of IPv4 Route prefixes.
    ipv6Routes List<AggregateRouteResponse>
    List of Ipv6Routes prefixes.
    ipv4Routes AggregateRouteResponse[]
    List of IPv4 Route prefixes.
    ipv6Routes AggregateRouteResponse[]
    List of Ipv6Routes prefixes.
    ipv4_routes Sequence[AggregateRouteResponse]
    List of IPv4 Route prefixes.
    ipv6_routes Sequence[AggregateRouteResponse]
    List of Ipv6Routes prefixes.
    ipv4Routes List<Property Map>
    List of IPv4 Route prefixes.
    ipv6Routes List<Property Map>
    List of Ipv6Routes prefixes.

    AggregateRouteResponse, AggregateRouteResponseArgs

    Prefix string
    IPv4 Prefix of the aggregate Ipv4Route.
    Prefix string
    IPv4 Prefix of the aggregate Ipv4Route.
    prefix String
    IPv4 Prefix of the aggregate Ipv4Route.
    prefix string
    IPv4 Prefix of the aggregate Ipv4Route.
    prefix str
    IPv4 Prefix of the aggregate Ipv4Route.
    prefix String
    IPv4 Prefix of the aggregate Ipv4Route.

    ConnectedSubnetRoutePolicy, ConnectedSubnetRoutePolicyArgs

    ExportRoutePolicy Pulumi.AzureNative.ManagedNetworkFabric.Inputs.L3ExportRoutePolicy
    Array of ARM Resource ID of the RoutePolicies.
    ExportRoutePolicyId string
    ARM Resource ID of the Route Policy. This is used for the backward compatibility.
    ExportRoutePolicy L3ExportRoutePolicy
    Array of ARM Resource ID of the RoutePolicies.
    ExportRoutePolicyId string
    ARM Resource ID of the Route Policy. This is used for the backward compatibility.
    exportRoutePolicy L3ExportRoutePolicy
    Array of ARM Resource ID of the RoutePolicies.
    exportRoutePolicyId String
    ARM Resource ID of the Route Policy. This is used for the backward compatibility.
    exportRoutePolicy L3ExportRoutePolicy
    Array of ARM Resource ID of the RoutePolicies.
    exportRoutePolicyId string
    ARM Resource ID of the Route Policy. This is used for the backward compatibility.
    export_route_policy L3ExportRoutePolicy
    Array of ARM Resource ID of the RoutePolicies.
    export_route_policy_id str
    ARM Resource ID of the Route Policy. This is used for the backward compatibility.
    exportRoutePolicy Property Map
    Array of ARM Resource ID of the RoutePolicies.
    exportRoutePolicyId String
    ARM Resource ID of the Route Policy. This is used for the backward compatibility.

    ConnectedSubnetRoutePolicyResponse, ConnectedSubnetRoutePolicyResponseArgs

    ExportRoutePolicy Pulumi.AzureNative.ManagedNetworkFabric.Inputs.L3ExportRoutePolicyResponse
    Array of ARM Resource ID of the RoutePolicies.
    ExportRoutePolicyId string
    ARM Resource ID of the Route Policy. This is used for the backward compatibility.
    ExportRoutePolicy L3ExportRoutePolicyResponse
    Array of ARM Resource ID of the RoutePolicies.
    ExportRoutePolicyId string
    ARM Resource ID of the Route Policy. This is used for the backward compatibility.
    exportRoutePolicy L3ExportRoutePolicyResponse
    Array of ARM Resource ID of the RoutePolicies.
    exportRoutePolicyId String
    ARM Resource ID of the Route Policy. This is used for the backward compatibility.
    exportRoutePolicy L3ExportRoutePolicyResponse
    Array of ARM Resource ID of the RoutePolicies.
    exportRoutePolicyId string
    ARM Resource ID of the Route Policy. This is used for the backward compatibility.
    export_route_policy L3ExportRoutePolicyResponse
    Array of ARM Resource ID of the RoutePolicies.
    export_route_policy_id str
    ARM Resource ID of the Route Policy. This is used for the backward compatibility.
    exportRoutePolicy Property Map
    Array of ARM Resource ID of the RoutePolicies.
    exportRoutePolicyId String
    ARM Resource ID of the Route Policy. This is used for the backward compatibility.

    L3ExportRoutePolicy, L3ExportRoutePolicyArgs

    ExportIpv4RoutePolicyId string
    ARM Resource ID of the RoutePolicy.
    ExportIpv6RoutePolicyId string
    ARM Resource ID of the RoutePolicy.
    ExportIpv4RoutePolicyId string
    ARM Resource ID of the RoutePolicy.
    ExportIpv6RoutePolicyId string
    ARM Resource ID of the RoutePolicy.
    exportIpv4RoutePolicyId String
    ARM Resource ID of the RoutePolicy.
    exportIpv6RoutePolicyId String
    ARM Resource ID of the RoutePolicy.
    exportIpv4RoutePolicyId string
    ARM Resource ID of the RoutePolicy.
    exportIpv6RoutePolicyId string
    ARM Resource ID of the RoutePolicy.
    export_ipv4_route_policy_id str
    ARM Resource ID of the RoutePolicy.
    export_ipv6_route_policy_id str
    ARM Resource ID of the RoutePolicy.
    exportIpv4RoutePolicyId String
    ARM Resource ID of the RoutePolicy.
    exportIpv6RoutePolicyId String
    ARM Resource ID of the RoutePolicy.

    L3ExportRoutePolicyResponse, L3ExportRoutePolicyResponseArgs

    ExportIpv4RoutePolicyId string
    ARM Resource ID of the RoutePolicy.
    ExportIpv6RoutePolicyId string
    ARM Resource ID of the RoutePolicy.
    ExportIpv4RoutePolicyId string
    ARM Resource ID of the RoutePolicy.
    ExportIpv6RoutePolicyId string
    ARM Resource ID of the RoutePolicy.
    exportIpv4RoutePolicyId String
    ARM Resource ID of the RoutePolicy.
    exportIpv6RoutePolicyId String
    ARM Resource ID of the RoutePolicy.
    exportIpv4RoutePolicyId string
    ARM Resource ID of the RoutePolicy.
    exportIpv6RoutePolicyId string
    ARM Resource ID of the RoutePolicy.
    export_ipv4_route_policy_id str
    ARM Resource ID of the RoutePolicy.
    export_ipv6_route_policy_id str
    ARM Resource ID of the RoutePolicy.
    exportIpv4RoutePolicyId String
    ARM Resource ID of the RoutePolicy.
    exportIpv6RoutePolicyId String
    ARM Resource ID of the RoutePolicy.

    RedistributeConnectedSubnets, RedistributeConnectedSubnetsArgs

    True
    True
    False
    False
    RedistributeConnectedSubnetsTrue
    True
    RedistributeConnectedSubnetsFalse
    False
    True
    True
    False
    False
    True
    True
    False
    False
    TRUE
    True
    FALSE
    False
    "True"
    True
    "False"
    False

    RedistributeStaticRoutes, RedistributeStaticRoutesArgs

    True
    True
    False
    False
    RedistributeStaticRoutesTrue
    True
    RedistributeStaticRoutesFalse
    False
    True
    True
    False
    False
    True
    True
    False
    False
    TRUE
    True
    FALSE
    False
    "True"
    True
    "False"
    False

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:managednetworkfabric:L3IsolationDomain example-l3domain /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/{l3IsolationDomainName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi