L3Isolation Domain Args
    data class L3IsolationDomainArgs(val aggregateRouteConfiguration: Output<AggregateRouteConfigurationArgs>? = null, val annotation: Output<String>? = null, val connectedSubnetRoutePolicy: Output<L3IsolationDomainPatchPropertiesConnectedSubnetRoutePolicyArgs>? = null, val description: Output<String>? = null, val l3IsolationDomainName: Output<String>? = null, val location: Output<String>? = null, val networkFabricId: Output<String>? = null, val redistributeConnectedSubnets: Output<Either<String, RedistributeConnectedSubnets>>? = null, val redistributeStaticRoutes: Output<Either<String, RedistributeStaticRoutes>>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<L3IsolationDomainArgs> 
The L3IsolationDomain 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
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 = "10.0.0.1",
                },
            },
        },
        ConnectedSubnetRoutePolicy = new AzureNative.ManagedNetworkFabric.Inputs.L3IsolationDomainPatchPropertiesConnectedSubnetRoutePolicyArgs
        {
            ExportRoutePolicyId = "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName2",
        },
        Description = "creating L3 isolation domain",
        L3IsolationDomainName = "example-l3domain",
        Location = "eastus",
        NetworkFabricId = "/subscriptions/xxxxxx/resourceGroups/resourcegroupname/providers/Microsoft.ManagedNetworkFabric/networkFabrics/FabricName",
        RedistributeConnectedSubnets = "True",
        RedistributeStaticRoutes = "False",
        ResourceGroupName = "resourceGroupName",
    });
});Content copied to clipboard
package main
import (
	"github.com/pulumi/pulumi-azure-native-sdk/managednetworkfabric/v2"
	"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.AggregateRouteConfigurationResponse{
				Ipv4Routes: managednetworkfabric.AggregateRouteArray{
					&managednetworkfabric.AggregateRouteArgs{
						Prefix: pulumi.String("10.0.0.0/24"),
					},
				},
				Ipv6Routes: managednetworkfabric.AggregateRouteArray{
					&managednetworkfabric.AggregateRouteArgs{
						Prefix: pulumi.String("10.0.0.1"),
					},
				},
			},
			ConnectedSubnetRoutePolicy: &managednetworkfabric.L3IsolationDomainPatchPropertiesConnectedSubnetRoutePolicyArgs{
				ExportRoutePolicyId: pulumi.String("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName2"),
			},
			Description:                  pulumi.String("creating L3 isolation domain"),
			L3IsolationDomainName:        pulumi.String("example-l3domain"),
			Location:                     pulumi.String("eastus"),
			NetworkFabricId:              pulumi.String("/subscriptions/xxxxxx/resourceGroups/resourcegroupname/providers/Microsoft.ManagedNetworkFabric/networkFabrics/FabricName"),
			RedistributeConnectedSubnets: pulumi.String("True"),
			RedistributeStaticRoutes:     pulumi.String("False"),
			ResourceGroupName:            pulumi.String("resourceGroupName"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}Content copied to clipboard
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 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(Map.ofEntries(
                Map.entry("ipv4Routes", Map.of("prefix", "10.0.0.0/24")),
                Map.entry("ipv6Routes", Map.of("prefix", "10.0.0.1"))
            ))
            .connectedSubnetRoutePolicy(Map.of("exportRoutePolicyId", "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName2"))
            .description("creating L3 isolation domain")
            .l3IsolationDomainName("example-l3domain")
            .location("eastus")
            .networkFabricId("/subscriptions/xxxxxx/resourceGroups/resourcegroupname/providers/Microsoft.ManagedNetworkFabric/networkFabrics/FabricName")
            .redistributeConnectedSubnets("True")
            .redistributeStaticRoutes("False")
            .resourceGroupName("resourceGroupName")
            .build());
    }
}Content copied to clipboard
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}Content copied to clipboard
Constructors
Link copied to clipboard
                fun L3IsolationDomainArgs(aggregateRouteConfiguration: Output<AggregateRouteConfigurationArgs>? = null, annotation: Output<String>? = null, connectedSubnetRoutePolicy: Output<L3IsolationDomainPatchPropertiesConnectedSubnetRoutePolicyArgs>? = null, description: Output<String>? = null, l3IsolationDomainName: Output<String>? = null, location: Output<String>? = null, networkFabricId: Output<String>? = null, redistributeConnectedSubnets: Output<Either<String, RedistributeConnectedSubnets>>? = null, redistributeStaticRoutes: Output<Either<String, RedistributeStaticRoutes>>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null)
Functions
Properties
Link copied to clipboard
                Link copied to clipboard
                val connectedSubnetRoutePolicy: Output<L3IsolationDomainPatchPropertiesConnectedSubnetRoutePolicyArgs>? = null
Link copied to clipboard
                Link copied to clipboard
                Link copied to clipboard