1. Packages
  2. Azure Native v2
  3. API Docs
  4. managednetworkfabric
  5. NetworkToNetworkInterconnect
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.managednetworkfabric.NetworkToNetworkInterconnect

Explore with Pulumi AI

The NetworkToNetworkInterconnect 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

NetworkToNetworkInterconnects_Create_MaximumSet_Gen

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var networkToNetworkInterconnect = new AzureNative.ManagedNetworkFabric.NetworkToNetworkInterconnect("networkToNetworkInterconnect", new()
    {
        IsManagementType = AzureNative.ManagedNetworkFabric.BooleanEnumProperty.True,
        Layer2Configuration = new AzureNative.ManagedNetworkFabric.Inputs.Layer2ConfigurationArgs
        {
            Mtu = 1500,
            PortCount = 10,
        },
        Layer3Configuration = new AzureNative.ManagedNetworkFabric.Inputs.Layer3ConfigurationArgs
        {
            ExportRoutePolicyId = "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName2",
            ImportRoutePolicyId = "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName1",
            PeerASN = 50272,
            PrimaryIpv4Prefix = "172.31.0.0/31",
            PrimaryIpv6Prefix = "3FFE:FFFF:0:CD30::a0/126",
            SecondaryIpv4Prefix = "172.31.0.20/31",
            SecondaryIpv6Prefix = "3FFE:FFFF:0:CD30::a4/126",
            VlanId = 2064,
        },
        NetworkFabricName = "FabricName",
        NetworkToNetworkInterconnectName = "DefaultNNI",
        NniType = AzureNative.ManagedNetworkFabric.NniType.CE,
        ResourceGroupName = "resourceGroupName",
        UseOptionB = AzureNative.ManagedNetworkFabric.BooleanEnumProperty.False,
    });

});
Copy
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.NewNetworkToNetworkInterconnect(ctx, "networkToNetworkInterconnect", &managednetworkfabric.NetworkToNetworkInterconnectArgs{
			IsManagementType: pulumi.String(managednetworkfabric.BooleanEnumPropertyTrue),
			Layer2Configuration: &managednetworkfabric.Layer2ConfigurationArgs{
				Mtu:       pulumi.Int(1500),
				PortCount: pulumi.Int(10),
			},
			Layer3Configuration: &managednetworkfabric.Layer3ConfigurationArgs{
				ExportRoutePolicyId: pulumi.String("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName2"),
				ImportRoutePolicyId: pulumi.String("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName1"),
				PeerASN:             pulumi.Int(50272),
				PrimaryIpv4Prefix:   pulumi.String("172.31.0.0/31"),
				PrimaryIpv6Prefix:   pulumi.String("3FFE:FFFF:0:CD30::a0/126"),
				SecondaryIpv4Prefix: pulumi.String("172.31.0.20/31"),
				SecondaryIpv6Prefix: pulumi.String("3FFE:FFFF:0:CD30::a4/126"),
				VlanId:              pulumi.Int(2064),
			},
			NetworkFabricName:                pulumi.String("FabricName"),
			NetworkToNetworkInterconnectName: pulumi.String("DefaultNNI"),
			NniType:                          pulumi.String(managednetworkfabric.NniTypeCE),
			ResourceGroupName:                pulumi.String("resourceGroupName"),
			UseOptionB:                       pulumi.String(managednetworkfabric.BooleanEnumPropertyFalse),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.managednetworkfabric.NetworkToNetworkInterconnect;
import com.pulumi.azurenative.managednetworkfabric.NetworkToNetworkInterconnectArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.Layer2ConfigurationArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.Layer3ConfigurationArgs;
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 networkToNetworkInterconnect = new NetworkToNetworkInterconnect("networkToNetworkInterconnect", NetworkToNetworkInterconnectArgs.builder()
            .isManagementType("True")
            .layer2Configuration(Layer2ConfigurationArgs.builder()
                .mtu(1500)
                .portCount(10)
                .build())
            .layer3Configuration(Layer3ConfigurationArgs.builder()
                .exportRoutePolicyId("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName2")
                .importRoutePolicyId("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName1")
                .peerASN(50272)
                .primaryIpv4Prefix("172.31.0.0/31")
                .primaryIpv6Prefix("3FFE:FFFF:0:CD30::a0/126")
                .secondaryIpv4Prefix("172.31.0.20/31")
                .secondaryIpv6Prefix("3FFE:FFFF:0:CD30::a4/126")
                .vlanId(2064)
                .build())
            .networkFabricName("FabricName")
            .networkToNetworkInterconnectName("DefaultNNI")
            .nniType("CE")
            .resourceGroupName("resourceGroupName")
            .useOptionB("False")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const networkToNetworkInterconnect = new azure_native.managednetworkfabric.NetworkToNetworkInterconnect("networkToNetworkInterconnect", {
    isManagementType: azure_native.managednetworkfabric.BooleanEnumProperty.True,
    layer2Configuration: {
        mtu: 1500,
        portCount: 10,
    },
    layer3Configuration: {
        exportRoutePolicyId: "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName2",
        importRoutePolicyId: "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName1",
        peerASN: 50272,
        primaryIpv4Prefix: "172.31.0.0/31",
        primaryIpv6Prefix: "3FFE:FFFF:0:CD30::a0/126",
        secondaryIpv4Prefix: "172.31.0.20/31",
        secondaryIpv6Prefix: "3FFE:FFFF:0:CD30::a4/126",
        vlanId: 2064,
    },
    networkFabricName: "FabricName",
    networkToNetworkInterconnectName: "DefaultNNI",
    nniType: azure_native.managednetworkfabric.NniType.CE,
    resourceGroupName: "resourceGroupName",
    useOptionB: azure_native.managednetworkfabric.BooleanEnumProperty.False,
});
Copy
import pulumi
import pulumi_azure_native as azure_native

network_to_network_interconnect = azure_native.managednetworkfabric.NetworkToNetworkInterconnect("networkToNetworkInterconnect",
    is_management_type=azure_native.managednetworkfabric.BooleanEnumProperty.TRUE,
    layer2_configuration={
        "mtu": 1500,
        "port_count": 10,
    },
    layer3_configuration={
        "export_route_policy_id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName2",
        "import_route_policy_id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName1",
        "peer_asn": 50272,
        "primary_ipv4_prefix": "172.31.0.0/31",
        "primary_ipv6_prefix": "3FFE:FFFF:0:CD30::a0/126",
        "secondary_ipv4_prefix": "172.31.0.20/31",
        "secondary_ipv6_prefix": "3FFE:FFFF:0:CD30::a4/126",
        "vlan_id": 2064,
    },
    network_fabric_name="FabricName",
    network_to_network_interconnect_name="DefaultNNI",
    nni_type=azure_native.managednetworkfabric.NniType.CE,
    resource_group_name="resourceGroupName",
    use_option_b=azure_native.managednetworkfabric.BooleanEnumProperty.FALSE)
Copy
resources:
  networkToNetworkInterconnect:
    type: azure-native:managednetworkfabric:NetworkToNetworkInterconnect
    properties:
      isManagementType: True
      layer2Configuration:
        mtu: 1500
        portCount: 10
      layer3Configuration:
        exportRoutePolicyId: /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName2
        importRoutePolicyId: /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName1
        peerASN: 50272
        primaryIpv4Prefix: 172.31.0.0/31
        primaryIpv6Prefix: 3FFE:FFFF:0:CD30::a0/126
        secondaryIpv4Prefix: 172.31.0.20/31
        secondaryIpv6Prefix: 3FFE:FFFF:0:CD30::a4/126
        vlanId: 2064
      networkFabricName: FabricName
      networkToNetworkInterconnectName: DefaultNNI
      nniType: CE
      resourceGroupName: resourceGroupName
      useOptionB: False
Copy

Create NetworkToNetworkInterconnect Resource

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

Constructor syntax

new NetworkToNetworkInterconnect(name: string, args: NetworkToNetworkInterconnectArgs, opts?: CustomResourceOptions);
@overload
def NetworkToNetworkInterconnect(resource_name: str,
                                 args: NetworkToNetworkInterconnectArgs,
                                 opts: Optional[ResourceOptions] = None)

@overload
def NetworkToNetworkInterconnect(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 is_management_type: Optional[Union[str, BooleanEnumProperty]] = None,
                                 network_fabric_name: Optional[str] = None,
                                 resource_group_name: Optional[str] = None,
                                 use_option_b: Optional[Union[str, BooleanEnumProperty]] = None,
                                 layer2_configuration: Optional[Layer2ConfigurationArgs] = None,
                                 layer3_configuration: Optional[Layer3ConfigurationArgs] = None,
                                 network_to_network_interconnect_name: Optional[str] = None,
                                 nni_type: Optional[Union[str, NniType]] = None)
func NewNetworkToNetworkInterconnect(ctx *Context, name string, args NetworkToNetworkInterconnectArgs, opts ...ResourceOption) (*NetworkToNetworkInterconnect, error)
public NetworkToNetworkInterconnect(string name, NetworkToNetworkInterconnectArgs args, CustomResourceOptions? opts = null)
public NetworkToNetworkInterconnect(String name, NetworkToNetworkInterconnectArgs args)
public NetworkToNetworkInterconnect(String name, NetworkToNetworkInterconnectArgs args, CustomResourceOptions options)
type: azure-native:managednetworkfabric:NetworkToNetworkInterconnect
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. NetworkToNetworkInterconnectArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. NetworkToNetworkInterconnectArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. NetworkToNetworkInterconnectArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. NetworkToNetworkInterconnectArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. NetworkToNetworkInterconnectArgs
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 networkToNetworkInterconnectResource = new AzureNative.Managednetworkfabric.NetworkToNetworkInterconnect("networkToNetworkInterconnectResource", new()
{
    IsManagementType = "string",
    NetworkFabricName = "string",
    ResourceGroupName = "string",
    UseOptionB = "string",
    Layer2Configuration = 
    {
        { "mtu", 0 },
        { "portCount", 0 },
    },
    Layer3Configuration = 
    {
        { "exportRoutePolicyId", "string" },
        { "importRoutePolicyId", "string" },
        { "peerASN", 0 },
        { "primaryIpv4Prefix", "string" },
        { "primaryIpv6Prefix", "string" },
        { "secondaryIpv4Prefix", "string" },
        { "secondaryIpv6Prefix", "string" },
        { "vlanId", 0 },
    },
    NetworkToNetworkInterconnectName = "string",
    NniType = "string",
});
Copy
example, err := managednetworkfabric.NewNetworkToNetworkInterconnect(ctx, "networkToNetworkInterconnectResource", &managednetworkfabric.NetworkToNetworkInterconnectArgs{
	IsManagementType:  "string",
	NetworkFabricName: "string",
	ResourceGroupName: "string",
	UseOptionB:        "string",
	Layer2Configuration: map[string]interface{}{
		"mtu":       0,
		"portCount": 0,
	},
	Layer3Configuration: map[string]interface{}{
		"exportRoutePolicyId": "string",
		"importRoutePolicyId": "string",
		"peerASN":             0,
		"primaryIpv4Prefix":   "string",
		"primaryIpv6Prefix":   "string",
		"secondaryIpv4Prefix": "string",
		"secondaryIpv6Prefix": "string",
		"vlanId":              0,
	},
	NetworkToNetworkInterconnectName: "string",
	NniType:                          "string",
})
Copy
var networkToNetworkInterconnectResource = new NetworkToNetworkInterconnect("networkToNetworkInterconnectResource", NetworkToNetworkInterconnectArgs.builder()
    .isManagementType("string")
    .networkFabricName("string")
    .resourceGroupName("string")
    .useOptionB("string")
    .layer2Configuration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .layer3Configuration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .networkToNetworkInterconnectName("string")
    .nniType("string")
    .build());
Copy
network_to_network_interconnect_resource = azure_native.managednetworkfabric.NetworkToNetworkInterconnect("networkToNetworkInterconnectResource",
    is_management_type=string,
    network_fabric_name=string,
    resource_group_name=string,
    use_option_b=string,
    layer2_configuration={
        mtu: 0,
        portCount: 0,
    },
    layer3_configuration={
        exportRoutePolicyId: string,
        importRoutePolicyId: string,
        peerASN: 0,
        primaryIpv4Prefix: string,
        primaryIpv6Prefix: string,
        secondaryIpv4Prefix: string,
        secondaryIpv6Prefix: string,
        vlanId: 0,
    },
    network_to_network_interconnect_name=string,
    nni_type=string)
Copy
const networkToNetworkInterconnectResource = new azure_native.managednetworkfabric.NetworkToNetworkInterconnect("networkToNetworkInterconnectResource", {
    isManagementType: "string",
    networkFabricName: "string",
    resourceGroupName: "string",
    useOptionB: "string",
    layer2Configuration: {
        mtu: 0,
        portCount: 0,
    },
    layer3Configuration: {
        exportRoutePolicyId: "string",
        importRoutePolicyId: "string",
        peerASN: 0,
        primaryIpv4Prefix: "string",
        primaryIpv6Prefix: "string",
        secondaryIpv4Prefix: "string",
        secondaryIpv6Prefix: "string",
        vlanId: 0,
    },
    networkToNetworkInterconnectName: "string",
    nniType: "string",
});
Copy
type: azure-native:managednetworkfabric:NetworkToNetworkInterconnect
properties:
    isManagementType: string
    layer2Configuration:
        mtu: 0
        portCount: 0
    layer3Configuration:
        exportRoutePolicyId: string
        importRoutePolicyId: string
        peerASN: 0
        primaryIpv4Prefix: string
        primaryIpv6Prefix: string
        secondaryIpv4Prefix: string
        secondaryIpv6Prefix: string
        vlanId: 0
    networkFabricName: string
    networkToNetworkInterconnectName: string
    nniType: string
    resourceGroupName: string
    useOptionB: string
Copy

NetworkToNetworkInterconnect 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 NetworkToNetworkInterconnect resource accepts the following input properties:

IsManagementType This property is required. string | Pulumi.AzureNative.ManagedNetworkFabric.BooleanEnumProperty
Configuration to use NNI for Infrastructure Management. Example: True/False.
NetworkFabricName
This property is required.
Changes to this property will trigger replacement.
string
Name of the NetworkFabric.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
UseOptionB This property is required. string | Pulumi.AzureNative.ManagedNetworkFabric.BooleanEnumProperty
Based on this parameter the layer2/layer3 is made as mandatory. Example: True/False
Layer2Configuration Pulumi.AzureNative.ManagedNetworkFabric.Inputs.Layer2Configuration
Common properties for Layer2Configuration.
Layer3Configuration Pulumi.AzureNative.ManagedNetworkFabric.Inputs.Layer3Configuration
Common properties for Layer3Configuration.
NetworkToNetworkInterconnectName Changes to this property will trigger replacement. string
Name of the NetworkToNetworkInterconnectName
NniType string | Pulumi.AzureNative.ManagedNetworkFabric.NniType
Type of NNI used. Example: CE | NPB
IsManagementType This property is required. string | BooleanEnumProperty
Configuration to use NNI for Infrastructure Management. Example: True/False.
NetworkFabricName
This property is required.
Changes to this property will trigger replacement.
string
Name of the NetworkFabric.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
UseOptionB This property is required. string | BooleanEnumProperty
Based on this parameter the layer2/layer3 is made as mandatory. Example: True/False
Layer2Configuration Layer2ConfigurationArgs
Common properties for Layer2Configuration.
Layer3Configuration Layer3ConfigurationArgs
Common properties for Layer3Configuration.
NetworkToNetworkInterconnectName Changes to this property will trigger replacement. string
Name of the NetworkToNetworkInterconnectName
NniType string | NniType
Type of NNI used. Example: CE | NPB
isManagementType This property is required. String | BooleanEnumProperty
Configuration to use NNI for Infrastructure Management. Example: True/False.
networkFabricName
This property is required.
Changes to this property will trigger replacement.
String
Name of the NetworkFabric.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
useOptionB This property is required. String | BooleanEnumProperty
Based on this parameter the layer2/layer3 is made as mandatory. Example: True/False
layer2Configuration Layer2Configuration
Common properties for Layer2Configuration.
layer3Configuration Layer3Configuration
Common properties for Layer3Configuration.
networkToNetworkInterconnectName Changes to this property will trigger replacement. String
Name of the NetworkToNetworkInterconnectName
nniType String | NniType
Type of NNI used. Example: CE | NPB
isManagementType This property is required. string | BooleanEnumProperty
Configuration to use NNI for Infrastructure Management. Example: True/False.
networkFabricName
This property is required.
Changes to this property will trigger replacement.
string
Name of the NetworkFabric.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
useOptionB This property is required. string | BooleanEnumProperty
Based on this parameter the layer2/layer3 is made as mandatory. Example: True/False
layer2Configuration Layer2Configuration
Common properties for Layer2Configuration.
layer3Configuration Layer3Configuration
Common properties for Layer3Configuration.
networkToNetworkInterconnectName Changes to this property will trigger replacement. string
Name of the NetworkToNetworkInterconnectName
nniType string | NniType
Type of NNI used. Example: CE | NPB
is_management_type This property is required. str | BooleanEnumProperty
Configuration to use NNI for Infrastructure Management. Example: True/False.
network_fabric_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the NetworkFabric.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
use_option_b This property is required. str | BooleanEnumProperty
Based on this parameter the layer2/layer3 is made as mandatory. Example: True/False
layer2_configuration Layer2ConfigurationArgs
Common properties for Layer2Configuration.
layer3_configuration Layer3ConfigurationArgs
Common properties for Layer3Configuration.
network_to_network_interconnect_name Changes to this property will trigger replacement. str
Name of the NetworkToNetworkInterconnectName
nni_type str | NniType
Type of NNI used. Example: CE | NPB
isManagementType This property is required. String | "True" | "False"
Configuration to use NNI for Infrastructure Management. Example: True/False.
networkFabricName
This property is required.
Changes to this property will trigger replacement.
String
Name of the NetworkFabric.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
useOptionB This property is required. String | "True" | "False"
Based on this parameter the layer2/layer3 is made as mandatory. Example: True/False
layer2Configuration Property Map
Common properties for Layer2Configuration.
layer3Configuration Property Map
Common properties for Layer3Configuration.
networkToNetworkInterconnectName Changes to this property will trigger replacement. String
Name of the NetworkToNetworkInterconnectName
nniType String | "CE" | "NPB"
Type of NNI used. Example: CE | NPB

Outputs

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

AdministrativeState string
Gets the administrativeState of the resource. Example -Enabled/Disabled
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
Gets the 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
Gets the administrativeState of the resource. Example -Enabled/Disabled
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
Gets the 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
Gets the administrativeState of the resource. Example -Enabled/Disabled
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
Gets the 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
Gets the administrativeState of the resource. Example -Enabled/Disabled
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
provisioningState string
Gets the 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
Gets the administrativeState of the resource. Example -Enabled/Disabled
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
provisioning_state str
Gets the 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
Gets the administrativeState of the resource. Example -Enabled/Disabled
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
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

BooleanEnumProperty
, BooleanEnumPropertyArgs

True
True
False
False
BooleanEnumPropertyTrue
True
BooleanEnumPropertyFalse
False
True
True
False
False
True
True
False
False
TRUE
True
FALSE
False
"True"
True
"False"
False

Layer2Configuration
, Layer2ConfigurationArgs

Mtu This property is required. int
MTU of the packets between PE & CE.
PortCount int
Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
Mtu This property is required. int
MTU of the packets between PE & CE.
PortCount int
Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
mtu This property is required. Integer
MTU of the packets between PE & CE.
portCount Integer
Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
mtu This property is required. number
MTU of the packets between PE & CE.
portCount number
Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
mtu This property is required. int
MTU of the packets between PE & CE.
port_count int
Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
mtu This property is required. Number
MTU of the packets between PE & CE.
portCount Number
Number of ports connected between PE/CE. Maximum value depends on FabricSKU.

Layer2ConfigurationResponse
, Layer2ConfigurationResponseArgs

Interfaces This property is required. List<string>
List of network device interfaces resource IDs.
Mtu This property is required. int
MTU of the packets between PE & CE.
PortCount int
Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
Interfaces This property is required. []string
List of network device interfaces resource IDs.
Mtu This property is required. int
MTU of the packets between PE & CE.
PortCount int
Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
interfaces This property is required. List<String>
List of network device interfaces resource IDs.
mtu This property is required. Integer
MTU of the packets between PE & CE.
portCount Integer
Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
interfaces This property is required. string[]
List of network device interfaces resource IDs.
mtu This property is required. number
MTU of the packets between PE & CE.
portCount number
Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
interfaces This property is required. Sequence[str]
List of network device interfaces resource IDs.
mtu This property is required. int
MTU of the packets between PE & CE.
port_count int
Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
interfaces This property is required. List<String>
List of network device interfaces resource IDs.
mtu This property is required. Number
MTU of the packets between PE & CE.
portCount Number
Number of ports connected between PE/CE. Maximum value depends on FabricSKU.

Layer3Configuration
, Layer3ConfigurationArgs

ExportRoutePolicyId string
exportRoutePolicyId
ImportRoutePolicyId string
importRoutePolicyId
PeerASN int
ASN of PE devices for CE/PE connectivity.Example : 28
PrimaryIpv4Prefix string
IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.0/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
PrimaryIpv6Prefix string
IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a0/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
SecondaryIpv4Prefix string
Secondary IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.20/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
SecondaryIpv6Prefix string
Secondary IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a4/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
VlanId int
VLAN for CE/PE Layer 3 connectivity.Example : 501
ExportRoutePolicyId string
exportRoutePolicyId
ImportRoutePolicyId string
importRoutePolicyId
PeerASN int
ASN of PE devices for CE/PE connectivity.Example : 28
PrimaryIpv4Prefix string
IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.0/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
PrimaryIpv6Prefix string
IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a0/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
SecondaryIpv4Prefix string
Secondary IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.20/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
SecondaryIpv6Prefix string
Secondary IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a4/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
VlanId int
VLAN for CE/PE Layer 3 connectivity.Example : 501
exportRoutePolicyId String
exportRoutePolicyId
importRoutePolicyId String
importRoutePolicyId
peerASN Integer
ASN of PE devices for CE/PE connectivity.Example : 28
primaryIpv4Prefix String
IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.0/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
primaryIpv6Prefix String
IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a0/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondaryIpv4Prefix String
Secondary IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.20/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondaryIpv6Prefix String
Secondary IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a4/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
vlanId Integer
VLAN for CE/PE Layer 3 connectivity.Example : 501
exportRoutePolicyId string
exportRoutePolicyId
importRoutePolicyId string
importRoutePolicyId
peerASN number
ASN of PE devices for CE/PE connectivity.Example : 28
primaryIpv4Prefix string
IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.0/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
primaryIpv6Prefix string
IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a0/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondaryIpv4Prefix string
Secondary IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.20/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondaryIpv6Prefix string
Secondary IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a4/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
vlanId number
VLAN for CE/PE Layer 3 connectivity.Example : 501
export_route_policy_id str
exportRoutePolicyId
import_route_policy_id str
importRoutePolicyId
peer_asn int
ASN of PE devices for CE/PE connectivity.Example : 28
primary_ipv4_prefix str
IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.0/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
primary_ipv6_prefix str
IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a0/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondary_ipv4_prefix str
Secondary IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.20/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondary_ipv6_prefix str
Secondary IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a4/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
vlan_id int
VLAN for CE/PE Layer 3 connectivity.Example : 501
exportRoutePolicyId String
exportRoutePolicyId
importRoutePolicyId String
importRoutePolicyId
peerASN Number
ASN of PE devices for CE/PE connectivity.Example : 28
primaryIpv4Prefix String
IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.0/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
primaryIpv6Prefix String
IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a0/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondaryIpv4Prefix String
Secondary IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.20/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondaryIpv6Prefix String
Secondary IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a4/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
vlanId Number
VLAN for CE/PE Layer 3 connectivity.Example : 501

Layer3ConfigurationResponse
, Layer3ConfigurationResponseArgs

FabricASN This property is required. int
ASN of CE devices for CE/PE connectivity.
ExportRoutePolicyId string
exportRoutePolicyId
ImportRoutePolicyId string
importRoutePolicyId
PeerASN int
ASN of PE devices for CE/PE connectivity.Example : 28
PrimaryIpv4Prefix string
IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.0/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
PrimaryIpv6Prefix string
IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a0/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
SecondaryIpv4Prefix string
Secondary IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.20/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
SecondaryIpv6Prefix string
Secondary IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a4/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
VlanId int
VLAN for CE/PE Layer 3 connectivity.Example : 501
FabricASN This property is required. int
ASN of CE devices for CE/PE connectivity.
ExportRoutePolicyId string
exportRoutePolicyId
ImportRoutePolicyId string
importRoutePolicyId
PeerASN int
ASN of PE devices for CE/PE connectivity.Example : 28
PrimaryIpv4Prefix string
IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.0/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
PrimaryIpv6Prefix string
IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a0/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
SecondaryIpv4Prefix string
Secondary IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.20/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
SecondaryIpv6Prefix string
Secondary IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a4/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
VlanId int
VLAN for CE/PE Layer 3 connectivity.Example : 501
fabricASN This property is required. Integer
ASN of CE devices for CE/PE connectivity.
exportRoutePolicyId String
exportRoutePolicyId
importRoutePolicyId String
importRoutePolicyId
peerASN Integer
ASN of PE devices for CE/PE connectivity.Example : 28
primaryIpv4Prefix String
IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.0/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
primaryIpv6Prefix String
IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a0/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondaryIpv4Prefix String
Secondary IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.20/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondaryIpv6Prefix String
Secondary IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a4/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
vlanId Integer
VLAN for CE/PE Layer 3 connectivity.Example : 501
fabricASN This property is required. number
ASN of CE devices for CE/PE connectivity.
exportRoutePolicyId string
exportRoutePolicyId
importRoutePolicyId string
importRoutePolicyId
peerASN number
ASN of PE devices for CE/PE connectivity.Example : 28
primaryIpv4Prefix string
IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.0/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
primaryIpv6Prefix string
IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a0/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondaryIpv4Prefix string
Secondary IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.20/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondaryIpv6Prefix string
Secondary IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a4/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
vlanId number
VLAN for CE/PE Layer 3 connectivity.Example : 501
fabric_asn This property is required. int
ASN of CE devices for CE/PE connectivity.
export_route_policy_id str
exportRoutePolicyId
import_route_policy_id str
importRoutePolicyId
peer_asn int
ASN of PE devices for CE/PE connectivity.Example : 28
primary_ipv4_prefix str
IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.0/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
primary_ipv6_prefix str
IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a0/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondary_ipv4_prefix str
Secondary IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.20/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondary_ipv6_prefix str
Secondary IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a4/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
vlan_id int
VLAN for CE/PE Layer 3 connectivity.Example : 501
fabricASN This property is required. Number
ASN of CE devices for CE/PE connectivity.
exportRoutePolicyId String
exportRoutePolicyId
importRoutePolicyId String
importRoutePolicyId
peerASN Number
ASN of PE devices for CE/PE connectivity.Example : 28
primaryIpv4Prefix String
IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.0/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
primaryIpv6Prefix String
IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a0/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondaryIpv4Prefix String
Secondary IPv4 Address Prefix of CE-PE interconnect links. Example: 172.31.0.20/31. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
secondaryIpv6Prefix String
Secondary IPv6 Address Prefix of CE-PE interconnect links. Example: 3FFE:FFFF:0:CD30::a4/126. The values can be specified at the time of creation or can be updated afterwards. Any update to the values post-provisioning may disrupt traffic. The 1st and 3rd IPs are to be configured on CE1 and CE2 for Option B interfaces. The 2nd and 4th IPs are to be configured on PE1 and PE2 for Option B interfaces.
vlanId Number
VLAN for CE/PE Layer 3 connectivity.Example : 501

NniType
, NniTypeArgs

CE
CE
NPB
NPB
NniTypeCE
CE
NniTypeNPB
NPB
CE
CE
NPB
NPB
CE
CE
NPB
NPB
CE
CE
NPB
NPB
"CE"
CE
"NPB"
NPB

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:NetworkToNetworkInterconnect DefaultNNI /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/networkFabrics/{networkFabricName}/networkToNetworkInterconnects/{networkToNetworkInterconnectName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0