azure-native.managednetworkfabric.NetworkFabric
Explore with Pulumi AI
The NetworkFabric 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
NetworkFabrics_Create_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var networkFabric = new AzureNative.ManagedNetworkFabric.NetworkFabric("networkFabric", new()
{
Annotation = "annotationValue",
FabricASN = 29249,
Ipv4Prefix = "10.18.0.0/19",
Ipv6Prefix = "3FFE:FFFF:0:CD40::/59",
Location = "eastuseuap",
ManagementNetworkConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.ManagementNetworkConfigurationArgs
{
InfrastructureVpnConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.VpnConfigurationPropertiesArgs
{
OptionAProperties = new AzureNative.ManagedNetworkFabric.Inputs.OptionAPropertiesArgs
{
Mtu = 5892,
PeerASN = 42666,
PrimaryIpv4Prefix = "20.0.0.12/30",
PrimaryIpv6Prefix = "3FFE:FFFF:0:CD30::a8/126",
SecondaryIpv4Prefix = "20.0.0.13/30",
SecondaryIpv6Prefix = "3FFE:FFFF:0:CD30::ac/126",
VlanId = 2724,
},
OptionBProperties = new AzureNative.ManagedNetworkFabric.Inputs.FabricOptionBPropertiesArgs
{
ExportRouteTargets = new[]
{
"65046:10039",
},
ImportRouteTargets = new[]
{
"65046:10039",
},
},
PeeringOption = AzureNative.ManagedNetworkFabric.PeeringOption.OptionA,
},
WorkloadVpnConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.VpnConfigurationPropertiesArgs
{
OptionAProperties = new AzureNative.ManagedNetworkFabric.Inputs.OptionAPropertiesArgs
{
Mtu = 5892,
PeerASN = 42666,
PrimaryIpv4Prefix = "10.0.0.14/30",
PrimaryIpv6Prefix = "2FFE:FFFF:0:CD30::a7/126",
SecondaryIpv4Prefix = "10.0.0.15/30",
SecondaryIpv6Prefix = "2FFE:FFFF:0:CD30::ac/126",
VlanId = 2724,
},
OptionBProperties = new AzureNative.ManagedNetworkFabric.Inputs.FabricOptionBPropertiesArgs
{
ExportRouteTargets = new[]
{
"65046:10050",
},
ImportRouteTargets = new[]
{
"65046:10050",
},
},
PeeringOption = AzureNative.ManagedNetworkFabric.PeeringOption.OptionA,
},
},
NetworkFabricControllerId = "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/fabricControllerName",
NetworkFabricName = "FabricName",
NetworkFabricSku = "M4-A400-A100-C16-aa",
RackCount = 4,
ResourceGroupName = "resourceGroupName",
ServerCountPerRack = 8,
Tags =
{
{ "key6468", "" },
},
TerminalServerConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.TerminalServerConfigurationArgs
{
Password = "xxxx",
PrimaryIpv4Prefix = "20.0.0.12/30",
PrimaryIpv6Prefix = "3FFE:FFFF:0:CD30::a8/126",
SecondaryIpv4Prefix = "20.0.0.13/30",
SecondaryIpv6Prefix = "3FFE:FFFF:0:CD30::ac/126",
SerialNumber = "123456",
Username = "username",
},
});
});
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.NewNetworkFabric(ctx, "networkFabric", &managednetworkfabric.NetworkFabricArgs{
Annotation: pulumi.String("annotationValue"),
FabricASN: pulumi.Int(29249),
Ipv4Prefix: pulumi.String("10.18.0.0/19"),
Ipv6Prefix: pulumi.String("3FFE:FFFF:0:CD40::/59"),
Location: pulumi.String("eastuseuap"),
ManagementNetworkConfiguration: &managednetworkfabric.ManagementNetworkConfigurationArgs{
InfrastructureVpnConfiguration: &managednetworkfabric.VpnConfigurationPropertiesArgs{
OptionAProperties: &managednetworkfabric.OptionAPropertiesArgs{
Mtu: pulumi.Int(5892),
PeerASN: pulumi.Int(42666),
PrimaryIpv4Prefix: pulumi.String("20.0.0.12/30"),
PrimaryIpv6Prefix: pulumi.String("3FFE:FFFF:0:CD30::a8/126"),
SecondaryIpv4Prefix: pulumi.String("20.0.0.13/30"),
SecondaryIpv6Prefix: pulumi.String("3FFE:FFFF:0:CD30::ac/126"),
VlanId: pulumi.Int(2724),
},
OptionBProperties: &managednetworkfabric.FabricOptionBPropertiesArgs{
ExportRouteTargets: pulumi.StringArray{
pulumi.String("65046:10039"),
},
ImportRouteTargets: pulumi.StringArray{
pulumi.String("65046:10039"),
},
},
PeeringOption: pulumi.String(managednetworkfabric.PeeringOptionOptionA),
},
WorkloadVpnConfiguration: &managednetworkfabric.VpnConfigurationPropertiesArgs{
OptionAProperties: &managednetworkfabric.OptionAPropertiesArgs{
Mtu: pulumi.Int(5892),
PeerASN: pulumi.Int(42666),
PrimaryIpv4Prefix: pulumi.String("10.0.0.14/30"),
PrimaryIpv6Prefix: pulumi.String("2FFE:FFFF:0:CD30::a7/126"),
SecondaryIpv4Prefix: pulumi.String("10.0.0.15/30"),
SecondaryIpv6Prefix: pulumi.String("2FFE:FFFF:0:CD30::ac/126"),
VlanId: pulumi.Int(2724),
},
OptionBProperties: &managednetworkfabric.FabricOptionBPropertiesArgs{
ExportRouteTargets: pulumi.StringArray{
pulumi.String("65046:10050"),
},
ImportRouteTargets: pulumi.StringArray{
pulumi.String("65046:10050"),
},
},
PeeringOption: pulumi.String(managednetworkfabric.PeeringOptionOptionA),
},
},
NetworkFabricControllerId: pulumi.String("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/fabricControllerName"),
NetworkFabricName: pulumi.String("FabricName"),
NetworkFabricSku: pulumi.String("M4-A400-A100-C16-aa"),
RackCount: pulumi.Int(4),
ResourceGroupName: pulumi.String("resourceGroupName"),
ServerCountPerRack: pulumi.Int(8),
Tags: pulumi.StringMap{
"key6468": pulumi.String(""),
},
TerminalServerConfiguration: &managednetworkfabric.TerminalServerConfigurationArgs{
Password: pulumi.String("xxxx"),
PrimaryIpv4Prefix: pulumi.String("20.0.0.12/30"),
PrimaryIpv6Prefix: pulumi.String("3FFE:FFFF:0:CD30::a8/126"),
SecondaryIpv4Prefix: pulumi.String("20.0.0.13/30"),
SecondaryIpv6Prefix: pulumi.String("3FFE:FFFF:0:CD30::ac/126"),
SerialNumber: pulumi.String("123456"),
Username: pulumi.String("username"),
},
})
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.NetworkFabric;
import com.pulumi.azurenative.managednetworkfabric.NetworkFabricArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.ManagementNetworkConfigurationArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.VpnConfigurationPropertiesArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.OptionAPropertiesArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.FabricOptionBPropertiesArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.TerminalServerConfigurationArgs;
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 networkFabric = new NetworkFabric("networkFabric", NetworkFabricArgs.builder()
.annotation("annotationValue")
.fabricASN(29249)
.ipv4Prefix("10.18.0.0/19")
.ipv6Prefix("3FFE:FFFF:0:CD40::/59")
.location("eastuseuap")
.managementNetworkConfiguration(ManagementNetworkConfigurationArgs.builder()
.infrastructureVpnConfiguration(VpnConfigurationPropertiesArgs.builder()
.optionAProperties(OptionAPropertiesArgs.builder()
.mtu(5892)
.peerASN(42666)
.primaryIpv4Prefix("20.0.0.12/30")
.primaryIpv6Prefix("3FFE:FFFF:0:CD30::a8/126")
.secondaryIpv4Prefix("20.0.0.13/30")
.secondaryIpv6Prefix("3FFE:FFFF:0:CD30::ac/126")
.vlanId(2724)
.build())
.optionBProperties(FabricOptionBPropertiesArgs.builder()
.exportRouteTargets("65046:10039")
.importRouteTargets("65046:10039")
.build())
.peeringOption("OptionA")
.build())
.workloadVpnConfiguration(VpnConfigurationPropertiesArgs.builder()
.optionAProperties(OptionAPropertiesArgs.builder()
.mtu(5892)
.peerASN(42666)
.primaryIpv4Prefix("10.0.0.14/30")
.primaryIpv6Prefix("2FFE:FFFF:0:CD30::a7/126")
.secondaryIpv4Prefix("10.0.0.15/30")
.secondaryIpv6Prefix("2FFE:FFFF:0:CD30::ac/126")
.vlanId(2724)
.build())
.optionBProperties(FabricOptionBPropertiesArgs.builder()
.exportRouteTargets("65046:10050")
.importRouteTargets("65046:10050")
.build())
.peeringOption("OptionA")
.build())
.build())
.networkFabricControllerId("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/fabricControllerName")
.networkFabricName("FabricName")
.networkFabricSku("M4-A400-A100-C16-aa")
.rackCount(4)
.resourceGroupName("resourceGroupName")
.serverCountPerRack(8)
.tags(Map.of("key6468", ""))
.terminalServerConfiguration(TerminalServerConfigurationArgs.builder()
.password("xxxx")
.primaryIpv4Prefix("20.0.0.12/30")
.primaryIpv6Prefix("3FFE:FFFF:0:CD30::a8/126")
.secondaryIpv4Prefix("20.0.0.13/30")
.secondaryIpv6Prefix("3FFE:FFFF:0:CD30::ac/126")
.serialNumber("123456")
.username("username")
.build())
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
network_fabric = azure_native.managednetworkfabric.NetworkFabric("networkFabric",
annotation="annotationValue",
fabric_asn=29249,
ipv4_prefix="10.18.0.0/19",
ipv6_prefix="3FFE:FFFF:0:CD40::/59",
location="eastuseuap",
management_network_configuration={
"infrastructure_vpn_configuration": {
"option_a_properties": {
"mtu": 5892,
"peer_asn": 42666,
"primary_ipv4_prefix": "20.0.0.12/30",
"primary_ipv6_prefix": "3FFE:FFFF:0:CD30::a8/126",
"secondary_ipv4_prefix": "20.0.0.13/30",
"secondary_ipv6_prefix": "3FFE:FFFF:0:CD30::ac/126",
"vlan_id": 2724,
},
"option_b_properties": {
"export_route_targets": ["65046:10039"],
"import_route_targets": ["65046:10039"],
},
"peering_option": azure_native.managednetworkfabric.PeeringOption.OPTION_A,
},
"workload_vpn_configuration": {
"option_a_properties": {
"mtu": 5892,
"peer_asn": 42666,
"primary_ipv4_prefix": "10.0.0.14/30",
"primary_ipv6_prefix": "2FFE:FFFF:0:CD30::a7/126",
"secondary_ipv4_prefix": "10.0.0.15/30",
"secondary_ipv6_prefix": "2FFE:FFFF:0:CD30::ac/126",
"vlan_id": 2724,
},
"option_b_properties": {
"export_route_targets": ["65046:10050"],
"import_route_targets": ["65046:10050"],
},
"peering_option": azure_native.managednetworkfabric.PeeringOption.OPTION_A,
},
},
network_fabric_controller_id="/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/fabricControllerName",
network_fabric_name="FabricName",
network_fabric_sku="M4-A400-A100-C16-aa",
rack_count=4,
resource_group_name="resourceGroupName",
server_count_per_rack=8,
tags={
"key6468": "",
},
terminal_server_configuration={
"password": "xxxx",
"primary_ipv4_prefix": "20.0.0.12/30",
"primary_ipv6_prefix": "3FFE:FFFF:0:CD30::a8/126",
"secondary_ipv4_prefix": "20.0.0.13/30",
"secondary_ipv6_prefix": "3FFE:FFFF:0:CD30::ac/126",
"serial_number": "123456",
"username": "username",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const networkFabric = new azure_native.managednetworkfabric.NetworkFabric("networkFabric", {
annotation: "annotationValue",
fabricASN: 29249,
ipv4Prefix: "10.18.0.0/19",
ipv6Prefix: "3FFE:FFFF:0:CD40::/59",
location: "eastuseuap",
managementNetworkConfiguration: {
infrastructureVpnConfiguration: {
optionAProperties: {
mtu: 5892,
peerASN: 42666,
primaryIpv4Prefix: "20.0.0.12/30",
primaryIpv6Prefix: "3FFE:FFFF:0:CD30::a8/126",
secondaryIpv4Prefix: "20.0.0.13/30",
secondaryIpv6Prefix: "3FFE:FFFF:0:CD30::ac/126",
vlanId: 2724,
},
optionBProperties: {
exportRouteTargets: ["65046:10039"],
importRouteTargets: ["65046:10039"],
},
peeringOption: azure_native.managednetworkfabric.PeeringOption.OptionA,
},
workloadVpnConfiguration: {
optionAProperties: {
mtu: 5892,
peerASN: 42666,
primaryIpv4Prefix: "10.0.0.14/30",
primaryIpv6Prefix: "2FFE:FFFF:0:CD30::a7/126",
secondaryIpv4Prefix: "10.0.0.15/30",
secondaryIpv6Prefix: "2FFE:FFFF:0:CD30::ac/126",
vlanId: 2724,
},
optionBProperties: {
exportRouteTargets: ["65046:10050"],
importRouteTargets: ["65046:10050"],
},
peeringOption: azure_native.managednetworkfabric.PeeringOption.OptionA,
},
},
networkFabricControllerId: "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/fabricControllerName",
networkFabricName: "FabricName",
networkFabricSku: "M4-A400-A100-C16-aa",
rackCount: 4,
resourceGroupName: "resourceGroupName",
serverCountPerRack: 8,
tags: {
key6468: "",
},
terminalServerConfiguration: {
password: "xxxx",
primaryIpv4Prefix: "20.0.0.12/30",
primaryIpv6Prefix: "3FFE:FFFF:0:CD30::a8/126",
secondaryIpv4Prefix: "20.0.0.13/30",
secondaryIpv6Prefix: "3FFE:FFFF:0:CD30::ac/126",
serialNumber: "123456",
username: "username",
},
});
resources:
networkFabric:
type: azure-native:managednetworkfabric:NetworkFabric
properties:
annotation: annotationValue
fabricASN: 29249
ipv4Prefix: 10.18.0.0/19
ipv6Prefix: 3FFE:FFFF:0:CD40::/59
location: eastuseuap
managementNetworkConfiguration:
infrastructureVpnConfiguration:
optionAProperties:
mtu: 5892
peerASN: 42666
primaryIpv4Prefix: 20.0.0.12/30
primaryIpv6Prefix: 3FFE:FFFF:0:CD30::a8/126
secondaryIpv4Prefix: 20.0.0.13/30
secondaryIpv6Prefix: 3FFE:FFFF:0:CD30::ac/126
vlanId: 2724
optionBProperties:
exportRouteTargets:
- 65046:10039
importRouteTargets:
- 65046:10039
peeringOption: OptionA
workloadVpnConfiguration:
optionAProperties:
mtu: 5892
peerASN: 42666
primaryIpv4Prefix: 10.0.0.14/30
primaryIpv6Prefix: 2FFE:FFFF:0:CD30::a7/126
secondaryIpv4Prefix: 10.0.0.15/30
secondaryIpv6Prefix: 2FFE:FFFF:0:CD30::ac/126
vlanId: 2724
optionBProperties:
exportRouteTargets:
- 65046:10050
importRouteTargets:
- 65046:10050
peeringOption: OptionA
networkFabricControllerId: /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/fabricControllerName
networkFabricName: FabricName
networkFabricSku: M4-A400-A100-C16-aa
rackCount: 4
resourceGroupName: resourceGroupName
serverCountPerRack: 8
tags:
key6468:
terminalServerConfiguration:
password: xxxx
primaryIpv4Prefix: 20.0.0.12/30
primaryIpv6Prefix: 3FFE:FFFF:0:CD30::a8/126
secondaryIpv4Prefix: 20.0.0.13/30
secondaryIpv6Prefix: 3FFE:FFFF:0:CD30::ac/126
serialNumber: '123456'
username: username
Create NetworkFabric Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkFabric(name: string, args: NetworkFabricArgs, opts?: CustomResourceOptions);
@overload
def NetworkFabric(resource_name: str,
args: NetworkFabricArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkFabric(resource_name: str,
opts: Optional[ResourceOptions] = None,
rack_count: Optional[int] = None,
network_fabric_sku: Optional[str] = None,
terminal_server_configuration: Optional[TerminalServerConfigurationArgs] = None,
server_count_per_rack: Optional[int] = None,
resource_group_name: Optional[str] = None,
management_network_configuration: Optional[ManagementNetworkConfigurationArgs] = None,
fabric_asn: Optional[int] = None,
network_fabric_controller_id: Optional[str] = None,
location: Optional[str] = None,
annotation: Optional[str] = None,
network_fabric_name: Optional[str] = None,
ipv6_prefix: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
ipv4_prefix: Optional[str] = None)
func NewNetworkFabric(ctx *Context, name string, args NetworkFabricArgs, opts ...ResourceOption) (*NetworkFabric, error)
public NetworkFabric(string name, NetworkFabricArgs args, CustomResourceOptions? opts = null)
public NetworkFabric(String name, NetworkFabricArgs args)
public NetworkFabric(String name, NetworkFabricArgs args, CustomResourceOptions options)
type: azure-native:managednetworkfabric:NetworkFabric
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 NetworkFabricArgs
- 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 NetworkFabricArgs
- 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 NetworkFabricArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkFabricArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkFabricArgs
- 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 networkFabricResource = new AzureNative.ManagedNetworkFabric.NetworkFabric("networkFabricResource", new()
{
RackCount = 0,
NetworkFabricSku = "string",
TerminalServerConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.TerminalServerConfigurationArgs
{
Password = "string",
PrimaryIpv4Prefix = "string",
SecondaryIpv4Prefix = "string",
Username = "string",
PrimaryIpv6Prefix = "string",
SecondaryIpv6Prefix = "string",
SerialNumber = "string",
},
ServerCountPerRack = 0,
ResourceGroupName = "string",
ManagementNetworkConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.ManagementNetworkConfigurationArgs
{
InfrastructureVpnConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.VpnConfigurationPropertiesArgs
{
PeeringOption = "string",
OptionAProperties = new AzureNative.ManagedNetworkFabric.Inputs.OptionAPropertiesArgs
{
Mtu = 0,
PeerASN = 0,
PrimaryIpv4Prefix = "string",
PrimaryIpv6Prefix = "string",
SecondaryIpv4Prefix = "string",
SecondaryIpv6Prefix = "string",
VlanId = 0,
},
OptionBProperties = new AzureNative.ManagedNetworkFabric.Inputs.FabricOptionBPropertiesArgs
{
ExportRouteTargets = new[]
{
"string",
},
ImportRouteTargets = new[]
{
"string",
},
},
},
WorkloadVpnConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.VpnConfigurationPropertiesArgs
{
PeeringOption = "string",
OptionAProperties = new AzureNative.ManagedNetworkFabric.Inputs.OptionAPropertiesArgs
{
Mtu = 0,
PeerASN = 0,
PrimaryIpv4Prefix = "string",
PrimaryIpv6Prefix = "string",
SecondaryIpv4Prefix = "string",
SecondaryIpv6Prefix = "string",
VlanId = 0,
},
OptionBProperties = new AzureNative.ManagedNetworkFabric.Inputs.FabricOptionBPropertiesArgs
{
ExportRouteTargets = new[]
{
"string",
},
ImportRouteTargets = new[]
{
"string",
},
},
},
},
FabricASN = 0,
NetworkFabricControllerId = "string",
Location = "string",
Annotation = "string",
NetworkFabricName = "string",
Ipv6Prefix = "string",
Tags =
{
{ "string", "string" },
},
Ipv4Prefix = "string",
});
example, err := managednetworkfabric.NewNetworkFabric(ctx, "networkFabricResource", &managednetworkfabric.NetworkFabricArgs{
RackCount: pulumi.Int(0),
NetworkFabricSku: pulumi.String("string"),
TerminalServerConfiguration: &managednetworkfabric.TerminalServerConfigurationArgs{
Password: pulumi.String("string"),
PrimaryIpv4Prefix: pulumi.String("string"),
SecondaryIpv4Prefix: pulumi.String("string"),
Username: pulumi.String("string"),
PrimaryIpv6Prefix: pulumi.String("string"),
SecondaryIpv6Prefix: pulumi.String("string"),
SerialNumber: pulumi.String("string"),
},
ServerCountPerRack: pulumi.Int(0),
ResourceGroupName: pulumi.String("string"),
ManagementNetworkConfiguration: &managednetworkfabric.ManagementNetworkConfigurationArgs{
InfrastructureVpnConfiguration: &managednetworkfabric.VpnConfigurationPropertiesArgs{
PeeringOption: pulumi.String("string"),
OptionAProperties: &managednetworkfabric.OptionAPropertiesArgs{
Mtu: pulumi.Int(0),
PeerASN: pulumi.Int(0),
PrimaryIpv4Prefix: pulumi.String("string"),
PrimaryIpv6Prefix: pulumi.String("string"),
SecondaryIpv4Prefix: pulumi.String("string"),
SecondaryIpv6Prefix: pulumi.String("string"),
VlanId: pulumi.Int(0),
},
OptionBProperties: &managednetworkfabric.FabricOptionBPropertiesArgs{
ExportRouteTargets: pulumi.StringArray{
pulumi.String("string"),
},
ImportRouteTargets: pulumi.StringArray{
pulumi.String("string"),
},
},
},
WorkloadVpnConfiguration: &managednetworkfabric.VpnConfigurationPropertiesArgs{
PeeringOption: pulumi.String("string"),
OptionAProperties: &managednetworkfabric.OptionAPropertiesArgs{
Mtu: pulumi.Int(0),
PeerASN: pulumi.Int(0),
PrimaryIpv4Prefix: pulumi.String("string"),
PrimaryIpv6Prefix: pulumi.String("string"),
SecondaryIpv4Prefix: pulumi.String("string"),
SecondaryIpv6Prefix: pulumi.String("string"),
VlanId: pulumi.Int(0),
},
OptionBProperties: &managednetworkfabric.FabricOptionBPropertiesArgs{
ExportRouteTargets: pulumi.StringArray{
pulumi.String("string"),
},
ImportRouteTargets: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
FabricASN: pulumi.Int(0),
NetworkFabricControllerId: pulumi.String("string"),
Location: pulumi.String("string"),
Annotation: pulumi.String("string"),
NetworkFabricName: pulumi.String("string"),
Ipv6Prefix: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Ipv4Prefix: pulumi.String("string"),
})
var networkFabricResource = new NetworkFabric("networkFabricResource", NetworkFabricArgs.builder()
.rackCount(0)
.networkFabricSku("string")
.terminalServerConfiguration(TerminalServerConfigurationArgs.builder()
.password("string")
.primaryIpv4Prefix("string")
.secondaryIpv4Prefix("string")
.username("string")
.primaryIpv6Prefix("string")
.secondaryIpv6Prefix("string")
.serialNumber("string")
.build())
.serverCountPerRack(0)
.resourceGroupName("string")
.managementNetworkConfiguration(ManagementNetworkConfigurationArgs.builder()
.infrastructureVpnConfiguration(VpnConfigurationPropertiesArgs.builder()
.peeringOption("string")
.optionAProperties(OptionAPropertiesArgs.builder()
.mtu(0)
.peerASN(0)
.primaryIpv4Prefix("string")
.primaryIpv6Prefix("string")
.secondaryIpv4Prefix("string")
.secondaryIpv6Prefix("string")
.vlanId(0)
.build())
.optionBProperties(FabricOptionBPropertiesArgs.builder()
.exportRouteTargets("string")
.importRouteTargets("string")
.build())
.build())
.workloadVpnConfiguration(VpnConfigurationPropertiesArgs.builder()
.peeringOption("string")
.optionAProperties(OptionAPropertiesArgs.builder()
.mtu(0)
.peerASN(0)
.primaryIpv4Prefix("string")
.primaryIpv6Prefix("string")
.secondaryIpv4Prefix("string")
.secondaryIpv6Prefix("string")
.vlanId(0)
.build())
.optionBProperties(FabricOptionBPropertiesArgs.builder()
.exportRouteTargets("string")
.importRouteTargets("string")
.build())
.build())
.build())
.fabricASN(0)
.networkFabricControllerId("string")
.location("string")
.annotation("string")
.networkFabricName("string")
.ipv6Prefix("string")
.tags(Map.of("string", "string"))
.ipv4Prefix("string")
.build());
network_fabric_resource = azure_native.managednetworkfabric.NetworkFabric("networkFabricResource",
rack_count=0,
network_fabric_sku="string",
terminal_server_configuration={
"password": "string",
"primaryIpv4Prefix": "string",
"secondaryIpv4Prefix": "string",
"username": "string",
"primaryIpv6Prefix": "string",
"secondaryIpv6Prefix": "string",
"serialNumber": "string",
},
server_count_per_rack=0,
resource_group_name="string",
management_network_configuration={
"infrastructureVpnConfiguration": {
"peeringOption": "string",
"optionAProperties": {
"mtu": 0,
"peerASN": 0,
"primaryIpv4Prefix": "string",
"primaryIpv6Prefix": "string",
"secondaryIpv4Prefix": "string",
"secondaryIpv6Prefix": "string",
"vlanId": 0,
},
"optionBProperties": {
"exportRouteTargets": ["string"],
"importRouteTargets": ["string"],
},
},
"workloadVpnConfiguration": {
"peeringOption": "string",
"optionAProperties": {
"mtu": 0,
"peerASN": 0,
"primaryIpv4Prefix": "string",
"primaryIpv6Prefix": "string",
"secondaryIpv4Prefix": "string",
"secondaryIpv6Prefix": "string",
"vlanId": 0,
},
"optionBProperties": {
"exportRouteTargets": ["string"],
"importRouteTargets": ["string"],
},
},
},
fabric_asn=0,
network_fabric_controller_id="string",
location="string",
annotation="string",
network_fabric_name="string",
ipv6_prefix="string",
tags={
"string": "string",
},
ipv4_prefix="string")
const networkFabricResource = new azure_native.managednetworkfabric.NetworkFabric("networkFabricResource", {
rackCount: 0,
networkFabricSku: "string",
terminalServerConfiguration: {
password: "string",
primaryIpv4Prefix: "string",
secondaryIpv4Prefix: "string",
username: "string",
primaryIpv6Prefix: "string",
secondaryIpv6Prefix: "string",
serialNumber: "string",
},
serverCountPerRack: 0,
resourceGroupName: "string",
managementNetworkConfiguration: {
infrastructureVpnConfiguration: {
peeringOption: "string",
optionAProperties: {
mtu: 0,
peerASN: 0,
primaryIpv4Prefix: "string",
primaryIpv6Prefix: "string",
secondaryIpv4Prefix: "string",
secondaryIpv6Prefix: "string",
vlanId: 0,
},
optionBProperties: {
exportRouteTargets: ["string"],
importRouteTargets: ["string"],
},
},
workloadVpnConfiguration: {
peeringOption: "string",
optionAProperties: {
mtu: 0,
peerASN: 0,
primaryIpv4Prefix: "string",
primaryIpv6Prefix: "string",
secondaryIpv4Prefix: "string",
secondaryIpv6Prefix: "string",
vlanId: 0,
},
optionBProperties: {
exportRouteTargets: ["string"],
importRouteTargets: ["string"],
},
},
},
fabricASN: 0,
networkFabricControllerId: "string",
location: "string",
annotation: "string",
networkFabricName: "string",
ipv6Prefix: "string",
tags: {
string: "string",
},
ipv4Prefix: "string",
});
type: azure-native:managednetworkfabric:NetworkFabric
properties:
annotation: string
fabricASN: 0
ipv4Prefix: string
ipv6Prefix: string
location: string
managementNetworkConfiguration:
infrastructureVpnConfiguration:
optionAProperties:
mtu: 0
peerASN: 0
primaryIpv4Prefix: string
primaryIpv6Prefix: string
secondaryIpv4Prefix: string
secondaryIpv6Prefix: string
vlanId: 0
optionBProperties:
exportRouteTargets:
- string
importRouteTargets:
- string
peeringOption: string
workloadVpnConfiguration:
optionAProperties:
mtu: 0
peerASN: 0
primaryIpv4Prefix: string
primaryIpv6Prefix: string
secondaryIpv4Prefix: string
secondaryIpv6Prefix: string
vlanId: 0
optionBProperties:
exportRouteTargets:
- string
importRouteTargets:
- string
peeringOption: string
networkFabricControllerId: string
networkFabricName: string
networkFabricSku: string
rackCount: 0
resourceGroupName: string
serverCountPerRack: 0
tags:
string: string
terminalServerConfiguration:
password: string
primaryIpv4Prefix: string
primaryIpv6Prefix: string
secondaryIpv4Prefix: string
secondaryIpv6Prefix: string
serialNumber: string
username: string
NetworkFabric 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 NetworkFabric resource accepts the following input properties:
- Fabric
ASN int - ASN of CE devices for CE/PE connectivity.
- Management
Network Pulumi.Configuration Azure Native. Managed Network Fabric. Inputs. Management Network Configuration - Configuration to be used to setup the management network.
- Network
Fabric stringController Id - Azure resource ID for the NetworkFabricController the NetworkFabric belongs.
- Network
Fabric stringSku - Supported Network Fabric SKU.Example: Compute / Aggregate racks. Once the user chooses a particular SKU, only supported racks can be added to the Network Fabric. The SKU determines whether it is a single / multi rack Network Fabric.
- Rack
Count int - Number of racks associated to Network Fabric.Possible values are from 2-8.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Server
Count intPer Rack - Number of servers.Possible values are from 1-16.
- Terminal
Server Pulumi.Configuration Azure Native. Managed Network Fabric. Inputs. Terminal Server Configuration - Network and credentials configuration currently applied to terminal server.
- Annotation string
- Switch configuration description.
- Ipv4Prefix string
- IPv4Prefix for Management Network. Example: 10.1.0.0/19.
- Ipv6Prefix string
- IPv6Prefix for Management Network. Example: 3FFE:FFFF:0:CD40::/59.
- Location string
- The geo-location where the resource lives
- Network
Fabric stringName - Name of the Network Fabric
- Dictionary<string, string>
- Resource tags.
- Fabric
ASN int - ASN of CE devices for CE/PE connectivity.
- Management
Network ManagementConfiguration Network Configuration Args - Configuration to be used to setup the management network.
- Network
Fabric stringController Id - Azure resource ID for the NetworkFabricController the NetworkFabric belongs.
- Network
Fabric stringSku - Supported Network Fabric SKU.Example: Compute / Aggregate racks. Once the user chooses a particular SKU, only supported racks can be added to the Network Fabric. The SKU determines whether it is a single / multi rack Network Fabric.
- Rack
Count int - Number of racks associated to Network Fabric.Possible values are from 2-8.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Server
Count intPer Rack - Number of servers.Possible values are from 1-16.
- Terminal
Server TerminalConfiguration Server Configuration Args - Network and credentials configuration currently applied to terminal server.
- Annotation string
- Switch configuration description.
- Ipv4Prefix string
- IPv4Prefix for Management Network. Example: 10.1.0.0/19.
- Ipv6Prefix string
- IPv6Prefix for Management Network. Example: 3FFE:FFFF:0:CD40::/59.
- Location string
- The geo-location where the resource lives
- Network
Fabric stringName - Name of the Network Fabric
- map[string]string
- Resource tags.
- fabric
ASN Integer - ASN of CE devices for CE/PE connectivity.
- management
Network ManagementConfiguration Network Configuration - Configuration to be used to setup the management network.
- network
Fabric StringController Id - Azure resource ID for the NetworkFabricController the NetworkFabric belongs.
- network
Fabric StringSku - Supported Network Fabric SKU.Example: Compute / Aggregate racks. Once the user chooses a particular SKU, only supported racks can be added to the Network Fabric. The SKU determines whether it is a single / multi rack Network Fabric.
- rack
Count Integer - Number of racks associated to Network Fabric.Possible values are from 2-8.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- server
Count IntegerPer Rack - Number of servers.Possible values are from 1-16.
- terminal
Server TerminalConfiguration Server Configuration - Network and credentials configuration currently applied to terminal server.
- annotation String
- Switch configuration description.
- ipv4Prefix String
- IPv4Prefix for Management Network. Example: 10.1.0.0/19.
- ipv6Prefix String
- IPv6Prefix for Management Network. Example: 3FFE:FFFF:0:CD40::/59.
- location String
- The geo-location where the resource lives
- network
Fabric StringName - Name of the Network Fabric
- Map<String,String>
- Resource tags.
- fabric
ASN number - ASN of CE devices for CE/PE connectivity.
- management
Network ManagementConfiguration Network Configuration - Configuration to be used to setup the management network.
- network
Fabric stringController Id - Azure resource ID for the NetworkFabricController the NetworkFabric belongs.
- network
Fabric stringSku - Supported Network Fabric SKU.Example: Compute / Aggregate racks. Once the user chooses a particular SKU, only supported racks can be added to the Network Fabric. The SKU determines whether it is a single / multi rack Network Fabric.
- rack
Count number - Number of racks associated to Network Fabric.Possible values are from 2-8.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- server
Count numberPer Rack - Number of servers.Possible values are from 1-16.
- terminal
Server TerminalConfiguration Server Configuration - Network and credentials configuration currently applied to terminal server.
- annotation string
- Switch configuration description.
- ipv4Prefix string
- IPv4Prefix for Management Network. Example: 10.1.0.0/19.
- ipv6Prefix string
- IPv6Prefix for Management Network. Example: 3FFE:FFFF:0:CD40::/59.
- location string
- The geo-location where the resource lives
- network
Fabric stringName - Name of the Network Fabric
- {[key: string]: string}
- Resource tags.
- fabric_
asn int - ASN of CE devices for CE/PE connectivity.
- management_
network_ Managementconfiguration Network Configuration Args - Configuration to be used to setup the management network.
- network_
fabric_ strcontroller_ id - Azure resource ID for the NetworkFabricController the NetworkFabric belongs.
- network_
fabric_ strsku - Supported Network Fabric SKU.Example: Compute / Aggregate racks. Once the user chooses a particular SKU, only supported racks can be added to the Network Fabric. The SKU determines whether it is a single / multi rack Network Fabric.
- rack_
count int - Number of racks associated to Network Fabric.Possible values are from 2-8.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- server_
count_ intper_ rack - Number of servers.Possible values are from 1-16.
- terminal_
server_ Terminalconfiguration Server Configuration Args - Network and credentials configuration currently applied to terminal server.
- annotation str
- Switch configuration description.
- ipv4_
prefix str - IPv4Prefix for Management Network. Example: 10.1.0.0/19.
- ipv6_
prefix str - IPv6Prefix for Management Network. Example: 3FFE:FFFF:0:CD40::/59.
- location str
- The geo-location where the resource lives
- network_
fabric_ strname - Name of the Network Fabric
- Mapping[str, str]
- Resource tags.
- fabric
ASN Number - ASN of CE devices for CE/PE connectivity.
- management
Network Property MapConfiguration - Configuration to be used to setup the management network.
- network
Fabric StringController Id - Azure resource ID for the NetworkFabricController the NetworkFabric belongs.
- network
Fabric StringSku - Supported Network Fabric SKU.Example: Compute / Aggregate racks. Once the user chooses a particular SKU, only supported racks can be added to the Network Fabric. The SKU determines whether it is a single / multi rack Network Fabric.
- rack
Count Number - Number of racks associated to Network Fabric.Possible values are from 2-8.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- server
Count NumberPer Rack - Number of servers.Possible values are from 1-16.
- terminal
Server Property MapConfiguration - Network and credentials configuration currently applied to terminal server.
- annotation String
- Switch configuration description.
- ipv4Prefix String
- IPv4Prefix for Management Network. Example: 10.1.0.0/19.
- ipv6Prefix String
- IPv6Prefix for Management Network. Example: 3FFE:FFFF:0:CD40::/59.
- location String
- The geo-location where the resource lives
- network
Fabric StringName - Name of the Network Fabric
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkFabric resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- L2Isolation
Domains List<string> - List of L2IsolationDomain resource IDs under the Network Fabric.
- L3Isolation
Domains List<string> - List of L3IsolationDomain resource IDs under the Network Fabric.
- Name string
- The name of the resource
- Operational
State string - Gets the operational state of the resource.
- Provisioning
State string - Gets the provisioning state of the resource.
- Racks List<string>
- List of NetworkRack resource IDs under the Network Fabric. The number of racks allowed depends on the Network Fabric SKU.
- Router
Id string - Router Id of CE to be used for MP-BGP between PE and CE
- System
Data Pulumi.Azure Native. Managed Network Fabric. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- L2Isolation
Domains []string - List of L2IsolationDomain resource IDs under the Network Fabric.
- L3Isolation
Domains []string - List of L3IsolationDomain resource IDs under the Network Fabric.
- Name string
- The name of the resource
- Operational
State string - Gets the operational state of the resource.
- Provisioning
State string - Gets the provisioning state of the resource.
- Racks []string
- List of NetworkRack resource IDs under the Network Fabric. The number of racks allowed depends on the Network Fabric SKU.
- Router
Id string - Router Id of CE to be used for MP-BGP between PE and CE
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- l2Isolation
Domains List<String> - List of L2IsolationDomain resource IDs under the Network Fabric.
- l3Isolation
Domains List<String> - List of L3IsolationDomain resource IDs under the Network Fabric.
- name String
- The name of the resource
- operational
State String - Gets the operational state of the resource.
- provisioning
State String - Gets the provisioning state of the resource.
- racks List<String>
- List of NetworkRack resource IDs under the Network Fabric. The number of racks allowed depends on the Network Fabric SKU.
- router
Id String - Router Id of CE to be used for MP-BGP between PE and CE
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- l2Isolation
Domains string[] - List of L2IsolationDomain resource IDs under the Network Fabric.
- l3Isolation
Domains string[] - List of L3IsolationDomain resource IDs under the Network Fabric.
- name string
- The name of the resource
- operational
State string - Gets the operational state of the resource.
- provisioning
State string - Gets the provisioning state of the resource.
- racks string[]
- List of NetworkRack resource IDs under the Network Fabric. The number of racks allowed depends on the Network Fabric SKU.
- router
Id string - Router Id of CE to be used for MP-BGP between PE and CE
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- l2_
isolation_ Sequence[str]domains - List of L2IsolationDomain resource IDs under the Network Fabric.
- l3_
isolation_ Sequence[str]domains - List of L3IsolationDomain resource IDs under the Network Fabric.
- name str
- The name of the resource
- operational_
state str - Gets the operational state of the resource.
- provisioning_
state str - Gets the provisioning state of the resource.
- racks Sequence[str]
- List of NetworkRack resource IDs under the Network Fabric. The number of racks allowed depends on the Network Fabric SKU.
- router_
id str - Router Id of CE to be used for MP-BGP between PE and CE
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- l2Isolation
Domains List<String> - List of L2IsolationDomain resource IDs under the Network Fabric.
- l3Isolation
Domains List<String> - List of L3IsolationDomain resource IDs under the Network Fabric.
- name String
- The name of the resource
- operational
State String - Gets the operational state of the resource.
- provisioning
State String - Gets the provisioning state of the resource.
- racks List<String>
- List of NetworkRack resource IDs under the Network Fabric. The number of racks allowed depends on the Network Fabric SKU.
- router
Id String - Router Id of CE to be used for MP-BGP between PE and CE
- system
Data 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
FabricBfdConfigurationResponse, FabricBfdConfigurationResponseArgs
- Interval int
- interval in seconds. Example: 300.
- Multiplier int
- multiplier. Example: 3.
- Interval int
- interval in seconds. Example: 300.
- Multiplier int
- multiplier. Example: 3.
- interval Integer
- interval in seconds. Example: 300.
- multiplier Integer
- multiplier. Example: 3.
- interval number
- interval in seconds. Example: 300.
- multiplier number
- multiplier. Example: 3.
- interval int
- interval in seconds. Example: 300.
- multiplier int
- multiplier. Example: 3.
- interval Number
- interval in seconds. Example: 300.
- multiplier Number
- multiplier. Example: 3.
FabricOptionBProperties, FabricOptionBPropertiesArgs
- Export
Route List<string>Targets - Route Targets to be applied for outgoing routes from CE.
- Import
Route List<string>Targets - Route Targets to be applied for incoming routes into CE.
- Export
Route []stringTargets - Route Targets to be applied for outgoing routes from CE.
- Import
Route []stringTargets - Route Targets to be applied for incoming routes into CE.
- export
Route List<String>Targets - Route Targets to be applied for outgoing routes from CE.
- import
Route List<String>Targets - Route Targets to be applied for incoming routes into CE.
- export
Route string[]Targets - Route Targets to be applied for outgoing routes from CE.
- import
Route string[]Targets - Route Targets to be applied for incoming routes into CE.
- export_
route_ Sequence[str]targets - Route Targets to be applied for outgoing routes from CE.
- import_
route_ Sequence[str]targets - Route Targets to be applied for incoming routes into CE.
- export
Route List<String>Targets - Route Targets to be applied for outgoing routes from CE.
- import
Route List<String>Targets - Route Targets to be applied for incoming routes into CE.
FabricOptionBPropertiesResponse, FabricOptionBPropertiesResponseArgs
- Export
Route List<string>Targets - Route Targets to be applied for outgoing routes from CE.
- Import
Route List<string>Targets - Route Targets to be applied for incoming routes into CE.
- Export
Route []stringTargets - Route Targets to be applied for outgoing routes from CE.
- Import
Route []stringTargets - Route Targets to be applied for incoming routes into CE.
- export
Route List<String>Targets - Route Targets to be applied for outgoing routes from CE.
- import
Route List<String>Targets - Route Targets to be applied for incoming routes into CE.
- export
Route string[]Targets - Route Targets to be applied for outgoing routes from CE.
- import
Route string[]Targets - Route Targets to be applied for incoming routes into CE.
- export_
route_ Sequence[str]targets - Route Targets to be applied for outgoing routes from CE.
- import_
route_ Sequence[str]targets - Route Targets to be applied for incoming routes into CE.
- export
Route List<String>Targets - Route Targets to be applied for outgoing routes from CE.
- import
Route List<String>Targets - Route Targets to be applied for incoming routes into CE.
ManagementNetworkConfiguration, ManagementNetworkConfigurationArgs
- Infrastructure
Vpn Pulumi.Configuration Azure Native. Managed Network Fabric. Inputs. Vpn Configuration Properties - Configuration for infrastructure vpn.
- Workload
Vpn Pulumi.Configuration Azure Native. Managed Network Fabric. Inputs. Vpn Configuration Properties - Configuration for workload vpn.
- Infrastructure
Vpn VpnConfiguration Configuration Properties - Configuration for infrastructure vpn.
- Workload
Vpn VpnConfiguration Configuration Properties - Configuration for workload vpn.
- infrastructure
Vpn VpnConfiguration Configuration Properties - Configuration for infrastructure vpn.
- workload
Vpn VpnConfiguration Configuration Properties - Configuration for workload vpn.
- infrastructure
Vpn VpnConfiguration Configuration Properties - Configuration for infrastructure vpn.
- workload
Vpn VpnConfiguration Configuration Properties - Configuration for workload vpn.
- infrastructure_
vpn_ Vpnconfiguration Configuration Properties - Configuration for infrastructure vpn.
- workload_
vpn_ Vpnconfiguration Configuration Properties - Configuration for workload vpn.
- infrastructure
Vpn Property MapConfiguration - Configuration for infrastructure vpn.
- workload
Vpn Property MapConfiguration - Configuration for workload vpn.
ManagementNetworkConfigurationResponse, ManagementNetworkConfigurationResponseArgs
- Infrastructure
Vpn Pulumi.Configuration Azure Native. Managed Network Fabric. Inputs. Vpn Configuration Properties Response - Configuration for infrastructure vpn.
- Workload
Vpn Pulumi.Configuration Azure Native. Managed Network Fabric. Inputs. Vpn Configuration Properties Response - Configuration for workload vpn.
- Infrastructure
Vpn VpnConfiguration Configuration Properties Response - Configuration for infrastructure vpn.
- Workload
Vpn VpnConfiguration Configuration Properties Response - Configuration for workload vpn.
- infrastructure
Vpn VpnConfiguration Configuration Properties Response - Configuration for infrastructure vpn.
- workload
Vpn VpnConfiguration Configuration Properties Response - Configuration for workload vpn.
- infrastructure
Vpn VpnConfiguration Configuration Properties Response - Configuration for infrastructure vpn.
- workload
Vpn VpnConfiguration Configuration Properties Response - Configuration for workload vpn.
- infrastructure_
vpn_ Vpnconfiguration Configuration Properties Response - Configuration for infrastructure vpn.
- workload_
vpn_ Vpnconfiguration Configuration Properties Response - Configuration for workload vpn.
- infrastructure
Vpn Property MapConfiguration - Configuration for infrastructure vpn.
- workload
Vpn Property MapConfiguration - Configuration for workload vpn.
OptionAProperties, OptionAPropertiesArgs
- Mtu int
- MTU to use for option A peering.
- Peer
ASN int - Peer ASN number.Example : 28
- Primary
Ipv4Prefix 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.
- Primary
Ipv6Prefix 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.
- Secondary
Ipv4Prefix 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.
- Secondary
Ipv6Prefix 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.
- Vlan
Id int - Vlan identifier. Example : 501
- Mtu int
- MTU to use for option A peering.
- Peer
ASN int - Peer ASN number.Example : 28
- Primary
Ipv4Prefix 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.
- Primary
Ipv6Prefix 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.
- Secondary
Ipv4Prefix 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.
- Secondary
Ipv6Prefix 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.
- Vlan
Id int - Vlan identifier. Example : 501
- mtu Integer
- MTU to use for option A peering.
- peer
ASN Integer - Peer ASN number.Example : 28
- primary
Ipv4Prefix 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.
- primary
Ipv6Prefix 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.
- secondary
Ipv4Prefix 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.
- secondary
Ipv6Prefix 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.
- vlan
Id Integer - Vlan identifier. Example : 501
- mtu number
- MTU to use for option A peering.
- peer
ASN number - Peer ASN number.Example : 28
- primary
Ipv4Prefix 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.
- primary
Ipv6Prefix 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.
- secondary
Ipv4Prefix 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.
- secondary
Ipv6Prefix 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.
- vlan
Id number - Vlan identifier. Example : 501
- mtu int
- MTU to use for option A peering.
- peer_
asn int - Peer ASN number.Example : 28
- primary_
ipv4_ strprefix - 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_ strprefix - 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_ strprefix - 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_ strprefix - 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 identifier. Example : 501
- mtu Number
- MTU to use for option A peering.
- peer
ASN Number - Peer ASN number.Example : 28
- primary
Ipv4Prefix 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.
- primary
Ipv6Prefix 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.
- secondary
Ipv4Prefix 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.
- secondary
Ipv6Prefix 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.
- vlan
Id Number - Vlan identifier. Example : 501
OptionAPropertiesResponse, OptionAPropertiesResponseArgs
- Bfd
Configuration Pulumi.Azure Native. Managed Network Fabric. Inputs. Fabric Bfd Configuration Response - BFD Configuration properties.
- Mtu int
- MTU to use for option A peering.
- Peer
ASN int - Peer ASN number.Example : 28
- Primary
Ipv4Prefix 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.
- Primary
Ipv6Prefix 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.
- Secondary
Ipv4Prefix 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.
- Secondary
Ipv6Prefix 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.
- Vlan
Id int - Vlan identifier. Example : 501
- Bfd
Configuration FabricBfd Configuration Response - BFD Configuration properties.
- Mtu int
- MTU to use for option A peering.
- Peer
ASN int - Peer ASN number.Example : 28
- Primary
Ipv4Prefix 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.
- Primary
Ipv6Prefix 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.
- Secondary
Ipv4Prefix 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.
- Secondary
Ipv6Prefix 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.
- Vlan
Id int - Vlan identifier. Example : 501
- bfd
Configuration FabricBfd Configuration Response - BFD Configuration properties.
- mtu Integer
- MTU to use for option A peering.
- peer
ASN Integer - Peer ASN number.Example : 28
- primary
Ipv4Prefix 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.
- primary
Ipv6Prefix 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.
- secondary
Ipv4Prefix 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.
- secondary
Ipv6Prefix 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.
- vlan
Id Integer - Vlan identifier. Example : 501
- bfd
Configuration FabricBfd Configuration Response - BFD Configuration properties.
- mtu number
- MTU to use for option A peering.
- peer
ASN number - Peer ASN number.Example : 28
- primary
Ipv4Prefix 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.
- primary
Ipv6Prefix 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.
- secondary
Ipv4Prefix 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.
- secondary
Ipv6Prefix 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.
- vlan
Id number - Vlan identifier. Example : 501
- bfd_
configuration FabricBfd Configuration Response - BFD Configuration properties.
- mtu int
- MTU to use for option A peering.
- peer_
asn int - Peer ASN number.Example : 28
- primary_
ipv4_ strprefix - 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_ strprefix - 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_ strprefix - 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_ strprefix - 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 identifier. Example : 501
- bfd
Configuration Property Map - BFD Configuration properties.
- mtu Number
- MTU to use for option A peering.
- peer
ASN Number - Peer ASN number.Example : 28
- primary
Ipv4Prefix 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.
- primary
Ipv6Prefix 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.
- secondary
Ipv4Prefix 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.
- secondary
Ipv6Prefix 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.
- vlan
Id Number - Vlan identifier. Example : 501
PeeringOption, PeeringOptionArgs
- Option
A - OptionA
- Option
B - OptionB
- Peering
Option Option A - OptionA
- Peering
Option Option B - OptionB
- Option
A - OptionA
- Option
B - OptionB
- Option
A - OptionA
- Option
B - OptionB
- OPTION_A
- OptionA
- OPTION_B
- OptionB
- "Option
A" - OptionA
- "Option
B" - OptionB
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
TerminalServerConfiguration, TerminalServerConfigurationArgs
- Password string
- Password for the terminal server connection.
- Primary
Ipv4Prefix 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.
- Secondary
Ipv4Prefix 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.
- Username string
- Username for the terminal server connection.
- Primary
Ipv6Prefix 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.
- Secondary
Ipv6Prefix 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.
- Serial
Number string - Serial Number of Terminal server.
- Password string
- Password for the terminal server connection.
- Primary
Ipv4Prefix 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.
- Secondary
Ipv4Prefix 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.
- Username string
- Username for the terminal server connection.
- Primary
Ipv6Prefix 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.
- Secondary
Ipv6Prefix 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.
- Serial
Number string - Serial Number of Terminal server.
- password String
- Password for the terminal server connection.
- primary
Ipv4Prefix 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.
- secondary
Ipv4Prefix 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.
- username String
- Username for the terminal server connection.
- primary
Ipv6Prefix 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.
- secondary
Ipv6Prefix 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.
- serial
Number String - Serial Number of Terminal server.
- password string
- Password for the terminal server connection.
- primary
Ipv4Prefix 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.
- secondary
Ipv4Prefix 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.
- username string
- Username for the terminal server connection.
- primary
Ipv6Prefix 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.
- secondary
Ipv6Prefix 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.
- serial
Number string - Serial Number of Terminal server.
- password str
- Password for the terminal server connection.
- primary_
ipv4_ strprefix - 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.
- secondary_
ipv4_ strprefix - 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.
- username str
- Username for the terminal server connection.
- primary_
ipv6_ strprefix - 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_
ipv6_ strprefix - 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.
- serial_
number str - Serial Number of Terminal server.
- password String
- Password for the terminal server connection.
- primary
Ipv4Prefix 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.
- secondary
Ipv4Prefix 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.
- username String
- Username for the terminal server connection.
- primary
Ipv6Prefix 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.
- secondary
Ipv6Prefix 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.
- serial
Number String - Serial Number of Terminal server.
TerminalServerConfigurationResponse, TerminalServerConfigurationResponseArgs
- Network
Device stringId - ARM Resource ID used for the NetworkDevice.
- Password string
- Password for the terminal server connection.
- Primary
Ipv4Prefix 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.
- Secondary
Ipv4Prefix 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.
- Username string
- Username for the terminal server connection.
- Primary
Ipv6Prefix 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.
- Secondary
Ipv6Prefix 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.
- Serial
Number string - Serial Number of Terminal server.
- Network
Device stringId - ARM Resource ID used for the NetworkDevice.
- Password string
- Password for the terminal server connection.
- Primary
Ipv4Prefix 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.
- Secondary
Ipv4Prefix 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.
- Username string
- Username for the terminal server connection.
- Primary
Ipv6Prefix 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.
- Secondary
Ipv6Prefix 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.
- Serial
Number string - Serial Number of Terminal server.
- network
Device StringId - ARM Resource ID used for the NetworkDevice.
- password String
- Password for the terminal server connection.
- primary
Ipv4Prefix 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.
- secondary
Ipv4Prefix 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.
- username String
- Username for the terminal server connection.
- primary
Ipv6Prefix 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.
- secondary
Ipv6Prefix 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.
- serial
Number String - Serial Number of Terminal server.
- network
Device stringId - ARM Resource ID used for the NetworkDevice.
- password string
- Password for the terminal server connection.
- primary
Ipv4Prefix 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.
- secondary
Ipv4Prefix 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.
- username string
- Username for the terminal server connection.
- primary
Ipv6Prefix 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.
- secondary
Ipv6Prefix 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.
- serial
Number string - Serial Number of Terminal server.
- network_
device_ strid - ARM Resource ID used for the NetworkDevice.
- password str
- Password for the terminal server connection.
- primary_
ipv4_ strprefix - 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.
- secondary_
ipv4_ strprefix - 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.
- username str
- Username for the terminal server connection.
- primary_
ipv6_ strprefix - 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_
ipv6_ strprefix - 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.
- serial_
number str - Serial Number of Terminal server.
- network
Device StringId - ARM Resource ID used for the NetworkDevice.
- password String
- Password for the terminal server connection.
- primary
Ipv4Prefix 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.
- secondary
Ipv4Prefix 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.
- username String
- Username for the terminal server connection.
- primary
Ipv6Prefix 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.
- secondary
Ipv6Prefix 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.
- serial
Number String - Serial Number of Terminal server.
VpnConfigurationProperties, VpnConfigurationPropertiesArgs
- Peering
Option string | Pulumi.Azure Native. Managed Network Fabric. Peering Option - Peering option list.
- Option
AProperties Pulumi.Azure Native. Managed Network Fabric. Inputs. Option AProperties - option A properties
- Option
BProperties Pulumi.Azure Native. Managed Network Fabric. Inputs. Fabric Option BProperties - option B properties
- Peering
Option string | PeeringOption - Peering option list.
- Option
AProperties OptionAProperties - option A properties
- Option
BProperties FabricOption BProperties - option B properties
- peering
Option String | PeeringOption - Peering option list.
- option
AProperties OptionAProperties - option A properties
- option
BProperties FabricOption BProperties - option B properties
- peering
Option string | PeeringOption - Peering option list.
- option
AProperties OptionAProperties - option A properties
- option
BProperties FabricOption BProperties - option B properties
- peering_
option str | PeeringOption - Peering option list.
- option_
a_ Optionproperties AProperties - option A properties
- option_
b_ Fabricproperties Option BProperties - option B properties
- peering
Option String | "OptionA" | "Option B" - Peering option list.
- option
AProperties Property Map - option A properties
- option
BProperties Property Map - option B properties
VpnConfigurationPropertiesResponse, VpnConfigurationPropertiesResponseArgs
- Administrative
State string - Indicates configuration state. Example: Enabled | Disabled.
- Network
To stringNetwork Interconnect Id - Gets the networkToNetworkInterconnectId of the resource.
- Peering
Option string - Peering option list.
- Option
AProperties Pulumi.Azure Native. Managed Network Fabric. Inputs. Option AProperties Response - option A properties
- Option
BProperties Pulumi.Azure Native. Managed Network Fabric. Inputs. Fabric Option BProperties Response - option B properties
- Administrative
State string - Indicates configuration state. Example: Enabled | Disabled.
- Network
To stringNetwork Interconnect Id - Gets the networkToNetworkInterconnectId of the resource.
- Peering
Option string - Peering option list.
- Option
AProperties OptionAProperties Response - option A properties
- Option
BProperties FabricOption BProperties Response - option B properties
- administrative
State String - Indicates configuration state. Example: Enabled | Disabled.
- network
To StringNetwork Interconnect Id - Gets the networkToNetworkInterconnectId of the resource.
- peering
Option String - Peering option list.
- option
AProperties OptionAProperties Response - option A properties
- option
BProperties FabricOption BProperties Response - option B properties
- administrative
State string - Indicates configuration state. Example: Enabled | Disabled.
- network
To stringNetwork Interconnect Id - Gets the networkToNetworkInterconnectId of the resource.
- peering
Option string - Peering option list.
- option
AProperties OptionAProperties Response - option A properties
- option
BProperties FabricOption BProperties Response - option B properties
- administrative_
state str - Indicates configuration state. Example: Enabled | Disabled.
- network_
to_ strnetwork_ interconnect_ id - Gets the networkToNetworkInterconnectId of the resource.
- peering_
option str - Peering option list.
- option_
a_ Optionproperties AProperties Response - option A properties
- option_
b_ Fabricproperties Option BProperties Response - option B properties
- administrative
State String - Indicates configuration state. Example: Enabled | Disabled.
- network
To StringNetwork Interconnect Id - Gets the networkToNetworkInterconnectId of the resource.
- peering
Option String - Peering option list.
- option
AProperties Property Map - option A properties
- option
BProperties Property Map - option B properties
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:managednetworkfabric:NetworkFabric FabricName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/networkFabrics/{networkFabricName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0