1. Packages
  2. Azure Native
  3. API Docs
  4. managednetworkfabric
  5. NetworkToNetworkInterconnect
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

azure-native.managednetworkfabric.NetworkToNetworkInterconnect

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

    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,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/managednetworkfabric/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := managednetworkfabric.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
    	})
    }
    
    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());
    
        }
    }
    
    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=azure_native.managednetworkfabric.Layer2ConfigurationArgs(
            mtu=1500,
            port_count=10,
        ),
        layer3_configuration=azure_native.managednetworkfabric.Layer3ConfigurationArgs(
            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)
    
    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,
    });
    
    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
    

    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 string
    The unique name of the resource.
    args NetworkToNetworkInterconnectArgs
    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 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 string
    The unique name of the resource.
    args NetworkToNetworkInterconnectArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkToNetworkInterconnectArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkToNetworkInterconnectArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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 = new AzureNative.ManagedNetworkFabric.Inputs.Layer2ConfigurationArgs
        {
            Mtu = 0,
            PortCount = 0,
        },
        Layer3Configuration = new AzureNative.ManagedNetworkFabric.Inputs.Layer3ConfigurationArgs
        {
            ExportRoutePolicyId = "string",
            ImportRoutePolicyId = "string",
            PeerASN = 0,
            PrimaryIpv4Prefix = "string",
            PrimaryIpv6Prefix = "string",
            SecondaryIpv4Prefix = "string",
            SecondaryIpv6Prefix = "string",
            VlanId = 0,
        },
        NetworkToNetworkInterconnectName = "string",
        NniType = "string",
    });
    
    example, err := managednetworkfabric.NewNetworkToNetworkInterconnect(ctx, "networkToNetworkInterconnectResource", &managednetworkfabric.NetworkToNetworkInterconnectArgs{
    IsManagementType: pulumi.String("string"),
    NetworkFabricName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    UseOptionB: pulumi.String("string"),
    Layer2Configuration: &managednetworkfabric.Layer2ConfigurationArgs{
    Mtu: pulumi.Int(0),
    PortCount: pulumi.Int(0),
    },
    Layer3Configuration: &managednetworkfabric.Layer3ConfigurationArgs{
    ExportRoutePolicyId: pulumi.String("string"),
    ImportRoutePolicyId: pulumi.String("string"),
    PeerASN: pulumi.Int(0),
    PrimaryIpv4Prefix: pulumi.String("string"),
    PrimaryIpv6Prefix: pulumi.String("string"),
    SecondaryIpv4Prefix: pulumi.String("string"),
    SecondaryIpv6Prefix: pulumi.String("string"),
    VlanId: pulumi.Int(0),
    },
    NetworkToNetworkInterconnectName: pulumi.String("string"),
    NniType: pulumi.String("string"),
    })
    
    var networkToNetworkInterconnectResource = new NetworkToNetworkInterconnect("networkToNetworkInterconnectResource", NetworkToNetworkInterconnectArgs.builder()        
        .isManagementType("string")
        .networkFabricName("string")
        .resourceGroupName("string")
        .useOptionB("string")
        .layer2Configuration(Layer2ConfigurationArgs.builder()
            .mtu(0)
            .portCount(0)
            .build())
        .layer3Configuration(Layer3ConfigurationArgs.builder()
            .exportRoutePolicyId("string")
            .importRoutePolicyId("string")
            .peerASN(0)
            .primaryIpv4Prefix("string")
            .primaryIpv6Prefix("string")
            .secondaryIpv4Prefix("string")
            .secondaryIpv6Prefix("string")
            .vlanId(0)
            .build())
        .networkToNetworkInterconnectName("string")
        .nniType("string")
        .build());
    
    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=azure_native.managednetworkfabric.Layer2ConfigurationArgs(
            mtu=0,
            port_count=0,
        ),
        layer3_configuration=azure_native.managednetworkfabric.Layer3ConfigurationArgs(
            export_route_policy_id="string",
            import_route_policy_id="string",
            peer_asn=0,
            primary_ipv4_prefix="string",
            primary_ipv6_prefix="string",
            secondary_ipv4_prefix="string",
            secondary_ipv6_prefix="string",
            vlan_id=0,
        ),
        network_to_network_interconnect_name="string",
        nni_type="string")
    
    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",
    });
    
    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
    

    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

    The NetworkToNetworkInterconnect resource accepts the following input properties:

    IsManagementType string | Pulumi.AzureNative.ManagedNetworkFabric.BooleanEnumProperty
    Configuration to use NNI for Infrastructure Management. Example: True/False.
    NetworkFabricName string
    Name of the NetworkFabric.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    UseOptionB 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 string
    Name of the NetworkToNetworkInterconnectName
    NniType string | Pulumi.AzureNative.ManagedNetworkFabric.NniType
    Type of NNI used. Example: CE | NPB
    IsManagementType string | BooleanEnumProperty
    Configuration to use NNI for Infrastructure Management. Example: True/False.
    NetworkFabricName string
    Name of the NetworkFabric.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    UseOptionB 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 string
    Name of the NetworkToNetworkInterconnectName
    NniType string | NniType
    Type of NNI used. Example: CE | NPB
    isManagementType String | BooleanEnumProperty
    Configuration to use NNI for Infrastructure Management. Example: True/False.
    networkFabricName String
    Name of the NetworkFabric.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    useOptionB 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 String
    Name of the NetworkToNetworkInterconnectName
    nniType String | NniType
    Type of NNI used. Example: CE | NPB
    isManagementType string | BooleanEnumProperty
    Configuration to use NNI for Infrastructure Management. Example: True/False.
    networkFabricName string
    Name of the NetworkFabric.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    useOptionB 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 string
    Name of the NetworkToNetworkInterconnectName
    nniType string | NniType
    Type of NNI used. Example: CE | NPB
    is_management_type str | BooleanEnumProperty
    Configuration to use NNI for Infrastructure Management. Example: True/False.
    network_fabric_name str
    Name of the NetworkFabric.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    use_option_b 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 str
    Name of the NetworkToNetworkInterconnectName
    nni_type str | NniType
    Type of NNI used. Example: CE | NPB
    isManagementType String | "True" | "False"
    Configuration to use NNI for Infrastructure Management. Example: True/False.
    networkFabricName String
    Name of the NetworkFabric.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    useOptionB 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 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 int
    MTU of the packets between PE & CE.
    PortCount int
    Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
    Mtu int
    MTU of the packets between PE & CE.
    PortCount int
    Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
    mtu Integer
    MTU of the packets between PE & CE.
    portCount Integer
    Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
    mtu number
    MTU of the packets between PE & CE.
    portCount number
    Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
    mtu int
    MTU of the packets between PE & CE.
    port_count int
    Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
    mtu 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 List<string>
    List of network device interfaces resource IDs.
    Mtu int
    MTU of the packets between PE & CE.
    PortCount int
    Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
    Interfaces []string
    List of network device interfaces resource IDs.
    Mtu int
    MTU of the packets between PE & CE.
    PortCount int
    Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
    interfaces List<String>
    List of network device interfaces resource IDs.
    mtu Integer
    MTU of the packets between PE & CE.
    portCount Integer
    Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
    interfaces string[]
    List of network device interfaces resource IDs.
    mtu number
    MTU of the packets between PE & CE.
    portCount number
    Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
    interfaces Sequence[str]
    List of network device interfaces resource IDs.
    mtu int
    MTU of the packets between PE & CE.
    port_count int
    Number of ports connected between PE/CE. Maximum value depends on FabricSKU.
    interfaces List<String>
    List of network device interfaces resource IDs.
    mtu 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 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 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 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 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 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 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} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi