azure-native.managednetworkfabric.L3IsolationDomain
Explore with Pulumi AI
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 = AzureNative.ManagedNetworkFabric.RedistributeConnectedSubnets.True,
        RedistributeStaticRoutes = AzureNative.ManagedNetworkFabric.RedistributeStaticRoutes.False,
        ResourceGroupName = "resourceGroupName",
    });
});
package main
import (
	managednetworkfabric "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.AggregateRouteConfigurationArgs{
				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(managednetworkfabric.RedistributeConnectedSubnetsTrue),
			RedistributeStaticRoutes:     pulumi.String(managednetworkfabric.RedistributeStaticRoutesFalse),
			ResourceGroupName:            pulumi.String("resourceGroupName"),
		})
		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.L3IsolationDomainPatchPropertiesConnectedSubnetRoutePolicyArgs;
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("10.0.0.1")
                    .build())
                .build())
            .connectedSubnetRoutePolicy(L3IsolationDomainPatchPropertiesConnectedSubnetRoutePolicyArgs.builder()
                .exportRoutePolicyId("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName2")
                .build())
            .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());
    }
}
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: "10.0.0.1",
        }],
    },
    connectedSubnetRoutePolicy: {
        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: azure_native.managednetworkfabric.RedistributeConnectedSubnets.True,
    redistributeStaticRoutes: azure_native.managednetworkfabric.RedistributeStaticRoutes.False,
    resourceGroupName: "resourceGroupName",
});
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": "10.0.0.1",
        }],
    },
    connected_subnet_route_policy={
        "export_route_policy_id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName2",
    },
    description="creating L3 isolation domain",
    l3_isolation_domain_name="example-l3domain",
    location="eastus",
    network_fabric_id="/subscriptions/xxxxxx/resourceGroups/resourcegroupname/providers/Microsoft.ManagedNetworkFabric/networkFabrics/FabricName",
    redistribute_connected_subnets=azure_native.managednetworkfabric.RedistributeConnectedSubnets.TRUE,
    redistribute_static_routes=azure_native.managednetworkfabric.RedistributeStaticRoutes.FALSE,
    resource_group_name="resourceGroupName")
resources:
  l3IsolationDomain:
    type: azure-native:managednetworkfabric:L3IsolationDomain
    properties:
      aggregateRouteConfiguration:
        ipv4Routes:
          - prefix: 10.0.0.0/24
        ipv6Routes:
          - prefix: 10.0.0.1
      connectedSubnetRoutePolicy:
        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
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[L3IsolationDomainPatchPropertiesConnectedSubnetRoutePolicyArgs] = None,
                      description: Optional[str] = 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.L3IsolationDomainPatchPropertiesConnectedSubnetRoutePolicyArgs
    {
        ExportRoutePolicyId = "string",
    },
    Description = "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.L3IsolationDomainPatchPropertiesConnectedSubnetRoutePolicyArgs{
		ExportRoutePolicyId: pulumi.String("string"),
	},
	Description:                  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(L3IsolationDomainPatchPropertiesConnectedSubnetRoutePolicyArgs.builder()
        .exportRoutePolicyId("string")
        .build())
    .description("string")
    .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_id": "string",
    },
    description="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: {
        exportRoutePolicyId: "string",
    },
    description: "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:
        exportRoutePolicyId: string
    description: 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:
- NetworkFabric stringId 
- Network Fabric ARM resource id.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AggregateRoute Pulumi.Configuration Azure Native. Managed Network Fabric. Inputs. Aggregate Route Configuration 
- List of Ipv4 and Ipv6 route configurations.
- Annotation string
- Switch configuration description.
- ConnectedSubnet Pulumi.Route Policy Azure Native. Managed Network Fabric. Inputs. L3Isolation Domain Patch Properties Connected Subnet Route Policy 
- Connected Subnet RoutePolicy
- Description string
- L3 Isolation Domain description.
- L3IsolationDomain stringName 
- Name of the L3 Isolation Domain
- Location string
- The geo-location where the resource lives
- RedistributeConnected string | Pulumi.Subnets Azure Native. Managed Network Fabric. Redistribute Connected Subnets 
- Advertise Connected Subnets. Ex: "True" | "False".
- RedistributeStatic string | Pulumi.Routes Azure Native. Managed Network Fabric. Redistribute Static Routes 
- Advertise Static Routes. Ex: "True" | "False".
- Dictionary<string, string>
- Resource tags.
- NetworkFabric stringId 
- Network Fabric ARM resource id.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AggregateRoute AggregateConfiguration Route Configuration Args 
- List of Ipv4 and Ipv6 route configurations.
- Annotation string
- Switch configuration description.
- ConnectedSubnet L3IsolationRoute Policy Domain Patch Properties Connected Subnet Route Policy Args 
- Connected Subnet RoutePolicy
- Description string
- L3 Isolation Domain description.
- L3IsolationDomain stringName 
- Name of the L3 Isolation Domain
- Location string
- The geo-location where the resource lives
- RedistributeConnected string | RedistributeSubnets Connected Subnets 
- Advertise Connected Subnets. Ex: "True" | "False".
- RedistributeStatic string | RedistributeRoutes Static Routes 
- Advertise Static Routes. Ex: "True" | "False".
- map[string]string
- Resource tags.
- networkFabric StringId 
- Network Fabric ARM resource id.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- aggregateRoute AggregateConfiguration Route Configuration 
- List of Ipv4 and Ipv6 route configurations.
- annotation String
- Switch configuration description.
- connectedSubnet L3IsolationRoute Policy Domain Patch Properties Connected Subnet Route Policy 
- Connected Subnet RoutePolicy
- description String
- L3 Isolation Domain description.
- l3IsolationDomain StringName 
- Name of the L3 Isolation Domain
- location String
- The geo-location where the resource lives
- redistributeConnected String | RedistributeSubnets Connected Subnets 
- Advertise Connected Subnets. Ex: "True" | "False".
- redistributeStatic String | RedistributeRoutes Static Routes 
- Advertise Static Routes. Ex: "True" | "False".
- Map<String,String>
- Resource tags.
- networkFabric stringId 
- Network Fabric ARM resource id.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- aggregateRoute AggregateConfiguration Route Configuration 
- List of Ipv4 and Ipv6 route configurations.
- annotation string
- Switch configuration description.
- connectedSubnet L3IsolationRoute Policy Domain Patch Properties Connected Subnet Route Policy 
- Connected Subnet RoutePolicy
- description string
- L3 Isolation Domain description.
- l3IsolationDomain stringName 
- Name of the L3 Isolation Domain
- location string
- The geo-location where the resource lives
- redistributeConnected string | RedistributeSubnets Connected Subnets 
- Advertise Connected Subnets. Ex: "True" | "False".
- redistributeStatic string | RedistributeRoutes Static Routes 
- Advertise Static Routes. Ex: "True" | "False".
- {[key: string]: string}
- Resource tags.
- network_fabric_ strid 
- Network Fabric ARM resource id.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- aggregate_route_ Aggregateconfiguration Route Configuration Args 
- List of Ipv4 and Ipv6 route configurations.
- annotation str
- Switch configuration description.
- connected_subnet_ L3Isolationroute_ policy Domain Patch Properties Connected Subnet Route Policy Args 
- Connected Subnet RoutePolicy
- description str
- L3 Isolation Domain description.
- l3_isolation_ strdomain_ name 
- Name of the L3 Isolation Domain
- location str
- The geo-location where the resource lives
- redistribute_connected_ str | Redistributesubnets Connected Subnets 
- Advertise Connected Subnets. Ex: "True" | "False".
- redistribute_static_ str | Redistributeroutes Static Routes 
- Advertise Static Routes. Ex: "True" | "False".
- Mapping[str, str]
- Resource tags.
- networkFabric StringId 
- Network Fabric ARM resource id.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- aggregateRoute Property MapConfiguration 
- List of Ipv4 and Ipv6 route configurations.
- annotation String
- Switch configuration description.
- connectedSubnet Property MapRoute Policy 
- Connected Subnet RoutePolicy
- description String
- L3 Isolation Domain description.
- l3IsolationDomain StringName 
- Name of the L3 Isolation Domain
- location String
- The geo-location where the resource lives
- redistributeConnected String | "True" | "False"Subnets 
- Advertise Connected Subnets. Ex: "True" | "False".
- redistributeStatic String | "True" | "False"Routes 
- Advertise Static Routes. Ex: "True" | "False".
- 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 IsolationDomain. Example: Enabled | Disabled.
- DisabledOn List<string>Resources 
- List of resources the L3 Isolation Domain is disabled on. Can be either entire NetworkFabric or NetworkRack.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- OptionBDisabled List<string>On Resources 
- List of resources the OptionB is disabled on. Can be either entire NetworkFabric or NetworkRack.
- ProvisioningState string
- Gets the provisioning state of the resource.
- SystemData Pulumi.Azure Native. Managed Network Fabric. Outputs. System Data Response 
- 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 IsolationDomain. Example: Enabled | Disabled.
- DisabledOn []stringResources 
- List of resources the L3 Isolation Domain is disabled on. Can be either entire NetworkFabric or NetworkRack.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- OptionBDisabled []stringOn Resources 
- List of resources the OptionB is disabled on. Can be either entire NetworkFabric or NetworkRack.
- ProvisioningState string
- Gets the provisioning state of the resource.
- SystemData SystemData Response 
- 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 IsolationDomain. Example: Enabled | Disabled.
- disabledOn List<String>Resources 
- List of resources the L3 Isolation Domain is disabled on. Can be either entire NetworkFabric or NetworkRack.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- optionBDisabled List<String>On Resources 
- List of resources the OptionB is disabled on. Can be either entire NetworkFabric or NetworkRack.
- provisioningState String
- Gets the provisioning state of the resource.
- systemData SystemData Response 
- 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 IsolationDomain. Example: Enabled | Disabled.
- disabledOn string[]Resources 
- List of resources the L3 Isolation Domain is disabled on. Can be either entire NetworkFabric or NetworkRack.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- optionBDisabled string[]On Resources 
- List of resources the OptionB is disabled on. Can be either entire NetworkFabric or NetworkRack.
- provisioningState string
- Gets the provisioning state of the resource.
- systemData SystemData Response 
- 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 IsolationDomain. Example: Enabled | Disabled.
- disabled_on_ Sequence[str]resources 
- List of resources the L3 Isolation Domain is disabled on. Can be either entire NetworkFabric or NetworkRack.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- option_b_ Sequence[str]disabled_ on_ resources 
- List of resources the OptionB is disabled on. Can be either entire NetworkFabric or NetworkRack.
- provisioning_state str
- Gets the provisioning state of the resource.
- system_data SystemData Response 
- 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 IsolationDomain. Example: Enabled | Disabled.
- disabledOn List<String>Resources 
- List of resources the L3 Isolation Domain is disabled on. Can be either entire NetworkFabric or NetworkRack.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- optionBDisabled List<String>On Resources 
- List of resources the OptionB is disabled on. Can be either entire NetworkFabric or NetworkRack.
- provisioningState String
- Gets the 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
- Prefix of the aggregate Route.
- Prefix string
- Prefix of the aggregate Route.
- prefix String
- Prefix of the aggregate Route.
- prefix string
- Prefix of the aggregate Route.
- prefix str
- Prefix of the aggregate Route.
- prefix String
- Prefix of the aggregate Route.
AggregateRouteConfiguration, AggregateRouteConfigurationArgs      
- Ipv4Routes
List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Aggregate Route> 
- List of IPv4 Route prefixes.
- Ipv6Routes
List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Aggregate Route> 
- List of IPv6 Routes prefixes.
- Ipv4Routes
[]AggregateRoute 
- List of IPv4 Route prefixes.
- Ipv6Routes
[]AggregateRoute 
- List of IPv6 Routes prefixes.
- ipv4Routes
List<AggregateRoute> 
- List of IPv4 Route prefixes.
- ipv6Routes
List<AggregateRoute> 
- List of IPv6 Routes prefixes.
- ipv4Routes
AggregateRoute[] 
- List of IPv4 Route prefixes.
- ipv6Routes
AggregateRoute[] 
- List of IPv6 Routes prefixes.
- ipv4_routes Sequence[AggregateRoute] 
- List of IPv4 Route prefixes.
- ipv6_routes Sequence[AggregateRoute] 
- List of IPv6 Routes prefixes.
- ipv4Routes List<Property Map>
- List of IPv4 Route prefixes.
- ipv6Routes List<Property Map>
- List of IPv6 Routes prefixes.
AggregateRouteConfigurationResponse, AggregateRouteConfigurationResponseArgs        
- Ipv4Routes
List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Aggregate Route Response> 
- List of IPv4 Route prefixes.
- Ipv6Routes
List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Aggregate Route Response> 
- List of IPv6 Routes prefixes.
- Ipv4Routes
[]AggregateRoute Response 
- List of IPv4 Route prefixes.
- Ipv6Routes
[]AggregateRoute Response 
- List of IPv6 Routes prefixes.
- ipv4Routes
List<AggregateRoute Response> 
- List of IPv4 Route prefixes.
- ipv6Routes
List<AggregateRoute Response> 
- List of IPv6 Routes prefixes.
- ipv4Routes
AggregateRoute Response[] 
- List of IPv4 Route prefixes.
- ipv6Routes
AggregateRoute Response[] 
- List of IPv6 Routes prefixes.
- ipv4_routes Sequence[AggregateRoute Response] 
- List of IPv4 Route prefixes.
- ipv6_routes Sequence[AggregateRoute Response] 
- List of IPv6 Routes prefixes.
- ipv4Routes List<Property Map>
- List of IPv4 Route prefixes.
- ipv6Routes List<Property Map>
- List of IPv6 Routes prefixes.
AggregateRouteResponse, AggregateRouteResponseArgs      
- Prefix string
- Prefix of the aggregate Route.
- Prefix string
- Prefix of the aggregate Route.
- prefix String
- Prefix of the aggregate Route.
- prefix string
- Prefix of the aggregate Route.
- prefix str
- Prefix of the aggregate Route.
- prefix String
- Prefix of the aggregate Route.
L3IsolationDomainPatchPropertiesConnectedSubnetRoutePolicy, L3IsolationDomainPatchPropertiesConnectedSubnetRoutePolicyArgs                
- ExportRoute stringPolicy Id 
- exportRoutePolicyId value.
- ExportRoute stringPolicy Id 
- exportRoutePolicyId value.
- exportRoute StringPolicy Id 
- exportRoutePolicyId value.
- exportRoute stringPolicy Id 
- exportRoutePolicyId value.
- export_route_ strpolicy_ id 
- exportRoutePolicyId value.
- exportRoute StringPolicy Id 
- exportRoutePolicyId value.
L3IsolationDomainPatchPropertiesResponseConnectedSubnetRoutePolicy, L3IsolationDomainPatchPropertiesResponseConnectedSubnetRoutePolicyArgs                  
- AdministrativeState string
- Enabled/Disabled connected subnet route policy. Ex: Enabled | Disabled.
- ExportRoute stringPolicy Id 
- exportRoutePolicyId value.
- AdministrativeState string
- Enabled/Disabled connected subnet route policy. Ex: Enabled | Disabled.
- ExportRoute stringPolicy Id 
- exportRoutePolicyId value.
- administrativeState String
- Enabled/Disabled connected subnet route policy. Ex: Enabled | Disabled.
- exportRoute StringPolicy Id 
- exportRoutePolicyId value.
- administrativeState string
- Enabled/Disabled connected subnet route policy. Ex: Enabled | Disabled.
- exportRoute stringPolicy Id 
- exportRoutePolicyId value.
- administrative_state str
- Enabled/Disabled connected subnet route policy. Ex: Enabled | Disabled.
- export_route_ strpolicy_ id 
- exportRoutePolicyId value.
- administrativeState String
- Enabled/Disabled connected subnet route policy. Ex: Enabled | Disabled.
- exportRoute StringPolicy Id 
- exportRoutePolicyId value.
RedistributeConnectedSubnets, RedistributeConnectedSubnetsArgs      
- True
- True
- False
- False
- RedistributeConnected Subnets True 
- True
- RedistributeConnected Subnets False 
- False
- True
- True
- False
- False
- True
- True
- False
- False
- TRUE
- True
- FALSE
- False
- "True"
- True
- "False"
- False
RedistributeStaticRoutes, RedistributeStaticRoutesArgs      
- True
- True
- False
- False
- RedistributeStatic Routes True 
- True
- RedistributeStatic Routes False 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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