azure-native.managednetworkfabric.ExternalNetwork
Explore with Pulumi AI
Defines the ExternalNetwork item. 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
ExternalNetworks_Create_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var externalNetwork = new AzureNative.ManagedNetworkFabric.ExternalNetwork("externalNetwork", new()
{
ExportRoutePolicyId = "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName",
ExternalNetworkName = "example-externalnetwork",
ImportRoutePolicyId = "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName",
L3IsolationDomainName = "example-l3domain",
OptionAProperties = new AzureNative.ManagedNetworkFabric.Inputs.ExternalNetworkPropertiesOptionAPropertiesArgs
{
Mtu = 1500,
PeerASN = 65047,
PrimaryIpv4Prefix = "10.1.1.0/30",
PrimaryIpv6Prefix = "3FFE:FFFF:0:CD30::a0/126",
SecondaryIpv4Prefix = "10.1.1.4/30",
SecondaryIpv6Prefix = "3FFE:FFFF:0:CD30::a4/126",
VlanId = 1001,
},
OptionBProperties = new AzureNative.ManagedNetworkFabric.Inputs.OptionBPropertiesArgs
{
ExportRouteTargets = new[]
{
"65046:10039",
},
ImportRouteTargets = new[]
{
"65046:10039",
},
},
PeeringOption = AzureNative.ManagedNetworkFabric.PeeringOption.OptionA,
ResourceGroupName = "resourceGroupName",
});
});
package main
import (
managednetworkfabric "github.com/pulumi/pulumi-azure-native-sdk/managednetworkfabric/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := managednetworkfabric.NewExternalNetwork(ctx, "externalNetwork", &managednetworkfabric.ExternalNetworkArgs{
ExportRoutePolicyId: pulumi.String("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName"),
ExternalNetworkName: pulumi.String("example-externalnetwork"),
ImportRoutePolicyId: pulumi.String("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName"),
L3IsolationDomainName: pulumi.String("example-l3domain"),
OptionAProperties: &managednetworkfabric.ExternalNetworkPropertiesOptionAPropertiesArgs{
Mtu: pulumi.Int(1500),
PeerASN: pulumi.Int(65047),
PrimaryIpv4Prefix: pulumi.String("10.1.1.0/30"),
PrimaryIpv6Prefix: pulumi.String("3FFE:FFFF:0:CD30::a0/126"),
SecondaryIpv4Prefix: pulumi.String("10.1.1.4/30"),
SecondaryIpv6Prefix: pulumi.String("3FFE:FFFF:0:CD30::a4/126"),
VlanId: pulumi.Int(1001),
},
OptionBProperties: &managednetworkfabric.OptionBPropertiesArgs{
ExportRouteTargets: pulumi.StringArray{
pulumi.String("65046:10039"),
},
ImportRouteTargets: pulumi.StringArray{
pulumi.String("65046:10039"),
},
},
PeeringOption: pulumi.String(managednetworkfabric.PeeringOptionOptionA),
ResourceGroupName: pulumi.String("resourceGroupName"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.managednetworkfabric.ExternalNetwork;
import com.pulumi.azurenative.managednetworkfabric.ExternalNetworkArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.ExternalNetworkPropertiesOptionAPropertiesArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.OptionBPropertiesArgs;
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 externalNetwork = new ExternalNetwork("externalNetwork", ExternalNetworkArgs.builder()
.exportRoutePolicyId("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName")
.externalNetworkName("example-externalnetwork")
.importRoutePolicyId("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName")
.l3IsolationDomainName("example-l3domain")
.optionAProperties(ExternalNetworkPropertiesOptionAPropertiesArgs.builder()
.mtu(1500)
.peerASN(65047)
.primaryIpv4Prefix("10.1.1.0/30")
.primaryIpv6Prefix("3FFE:FFFF:0:CD30::a0/126")
.secondaryIpv4Prefix("10.1.1.4/30")
.secondaryIpv6Prefix("3FFE:FFFF:0:CD30::a4/126")
.vlanId(1001)
.build())
.optionBProperties(OptionBPropertiesArgs.builder()
.exportRouteTargets("65046:10039")
.importRouteTargets("65046:10039")
.build())
.peeringOption("OptionA")
.resourceGroupName("resourceGroupName")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
external_network = azure_native.managednetworkfabric.ExternalNetwork("externalNetwork",
export_route_policy_id="/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName",
external_network_name="example-externalnetwork",
import_route_policy_id="/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName",
l3_isolation_domain_name="example-l3domain",
option_a_properties=azure_native.managednetworkfabric.ExternalNetworkPropertiesOptionAPropertiesArgs(
mtu=1500,
peer_asn=65047,
primary_ipv4_prefix="10.1.1.0/30",
primary_ipv6_prefix="3FFE:FFFF:0:CD30::a0/126",
secondary_ipv4_prefix="10.1.1.4/30",
secondary_ipv6_prefix="3FFE:FFFF:0:CD30::a4/126",
vlan_id=1001,
),
option_b_properties=azure_native.managednetworkfabric.OptionBPropertiesArgs(
export_route_targets=["65046:10039"],
import_route_targets=["65046:10039"],
),
peering_option=azure_native.managednetworkfabric.PeeringOption.OPTION_A,
resource_group_name="resourceGroupName")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const externalNetwork = new azure_native.managednetworkfabric.ExternalNetwork("externalNetwork", {
exportRoutePolicyId: "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName",
externalNetworkName: "example-externalnetwork",
importRoutePolicyId: "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName",
l3IsolationDomainName: "example-l3domain",
optionAProperties: {
mtu: 1500,
peerASN: 65047,
primaryIpv4Prefix: "10.1.1.0/30",
primaryIpv6Prefix: "3FFE:FFFF:0:CD30::a0/126",
secondaryIpv4Prefix: "10.1.1.4/30",
secondaryIpv6Prefix: "3FFE:FFFF:0:CD30::a4/126",
vlanId: 1001,
},
optionBProperties: {
exportRouteTargets: ["65046:10039"],
importRouteTargets: ["65046:10039"],
},
peeringOption: azure_native.managednetworkfabric.PeeringOption.OptionA,
resourceGroupName: "resourceGroupName",
});
resources:
externalNetwork:
type: azure-native:managednetworkfabric:ExternalNetwork
properties:
exportRoutePolicyId: /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName
externalNetworkName: example-externalnetwork
importRoutePolicyId: /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/routePolicies/routePolicyName
l3IsolationDomainName: example-l3domain
optionAProperties:
mtu: 1500
peerASN: 65047
primaryIpv4Prefix: 10.1.1.0/30
primaryIpv6Prefix: 3FFE:FFFF:0:CD30::a0/126
secondaryIpv4Prefix: 10.1.1.4/30
secondaryIpv6Prefix: 3FFE:FFFF:0:CD30::a4/126
vlanId: 1001
optionBProperties:
exportRouteTargets:
- 65046:10039
importRouteTargets:
- 65046:10039
peeringOption: OptionA
resourceGroupName: resourceGroupName
Create ExternalNetwork Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ExternalNetwork(name: string, args: ExternalNetworkArgs, opts?: CustomResourceOptions);
@overload
def ExternalNetwork(resource_name: str,
args: ExternalNetworkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ExternalNetwork(resource_name: str,
opts: Optional[ResourceOptions] = None,
l3_isolation_domain_name: Optional[str] = None,
peering_option: Optional[Union[str, PeeringOption]] = None,
resource_group_name: Optional[str] = None,
annotation: Optional[str] = None,
export_route_policy_id: Optional[str] = None,
external_network_name: Optional[str] = None,
import_route_policy_id: Optional[str] = None,
option_a_properties: Optional[ExternalNetworkPropertiesOptionAPropertiesArgs] = None,
option_b_properties: Optional[OptionBPropertiesArgs] = None)
func NewExternalNetwork(ctx *Context, name string, args ExternalNetworkArgs, opts ...ResourceOption) (*ExternalNetwork, error)
public ExternalNetwork(string name, ExternalNetworkArgs args, CustomResourceOptions? opts = null)
public ExternalNetwork(String name, ExternalNetworkArgs args)
public ExternalNetwork(String name, ExternalNetworkArgs args, CustomResourceOptions options)
type: azure-native:managednetworkfabric:ExternalNetwork
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 ExternalNetworkArgs
- 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 ExternalNetworkArgs
- 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 ExternalNetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExternalNetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExternalNetworkArgs
- 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 externalNetworkResource = new AzureNative.ManagedNetworkFabric.ExternalNetwork("externalNetworkResource", new()
{
L3IsolationDomainName = "string",
PeeringOption = "string",
ResourceGroupName = "string",
Annotation = "string",
ExportRoutePolicyId = "string",
ExternalNetworkName = "string",
ImportRoutePolicyId = "string",
OptionAProperties = new AzureNative.ManagedNetworkFabric.Inputs.ExternalNetworkPropertiesOptionAPropertiesArgs
{
PeerASN = 0,
VlanId = 0,
Mtu = 0,
PrimaryIpv4Prefix = "string",
PrimaryIpv6Prefix = "string",
SecondaryIpv4Prefix = "string",
SecondaryIpv6Prefix = "string",
},
OptionBProperties = new AzureNative.ManagedNetworkFabric.Inputs.OptionBPropertiesArgs
{
ExportRouteTargets = new[]
{
"string",
},
ImportRouteTargets = new[]
{
"string",
},
},
});
example, err := managednetworkfabric.NewExternalNetwork(ctx, "externalNetworkResource", &managednetworkfabric.ExternalNetworkArgs{
L3IsolationDomainName: pulumi.String("string"),
PeeringOption: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Annotation: pulumi.String("string"),
ExportRoutePolicyId: pulumi.String("string"),
ExternalNetworkName: pulumi.String("string"),
ImportRoutePolicyId: pulumi.String("string"),
OptionAProperties: &managednetworkfabric.ExternalNetworkPropertiesOptionAPropertiesArgs{
PeerASN: pulumi.Int(0),
VlanId: pulumi.Int(0),
Mtu: pulumi.Int(0),
PrimaryIpv4Prefix: pulumi.String("string"),
PrimaryIpv6Prefix: pulumi.String("string"),
SecondaryIpv4Prefix: pulumi.String("string"),
SecondaryIpv6Prefix: pulumi.String("string"),
},
OptionBProperties: &managednetworkfabric.OptionBPropertiesArgs{
ExportRouteTargets: pulumi.StringArray{
pulumi.String("string"),
},
ImportRouteTargets: pulumi.StringArray{
pulumi.String("string"),
},
},
})
var externalNetworkResource = new ExternalNetwork("externalNetworkResource", ExternalNetworkArgs.builder()
.l3IsolationDomainName("string")
.peeringOption("string")
.resourceGroupName("string")
.annotation("string")
.exportRoutePolicyId("string")
.externalNetworkName("string")
.importRoutePolicyId("string")
.optionAProperties(ExternalNetworkPropertiesOptionAPropertiesArgs.builder()
.peerASN(0)
.vlanId(0)
.mtu(0)
.primaryIpv4Prefix("string")
.primaryIpv6Prefix("string")
.secondaryIpv4Prefix("string")
.secondaryIpv6Prefix("string")
.build())
.optionBProperties(OptionBPropertiesArgs.builder()
.exportRouteTargets("string")
.importRouteTargets("string")
.build())
.build());
external_network_resource = azure_native.managednetworkfabric.ExternalNetwork("externalNetworkResource",
l3_isolation_domain_name="string",
peering_option="string",
resource_group_name="string",
annotation="string",
export_route_policy_id="string",
external_network_name="string",
import_route_policy_id="string",
option_a_properties=azure_native.managednetworkfabric.ExternalNetworkPropertiesOptionAPropertiesArgs(
peer_asn=0,
vlan_id=0,
mtu=0,
primary_ipv4_prefix="string",
primary_ipv6_prefix="string",
secondary_ipv4_prefix="string",
secondary_ipv6_prefix="string",
),
option_b_properties=azure_native.managednetworkfabric.OptionBPropertiesArgs(
export_route_targets=["string"],
import_route_targets=["string"],
))
const externalNetworkResource = new azure_native.managednetworkfabric.ExternalNetwork("externalNetworkResource", {
l3IsolationDomainName: "string",
peeringOption: "string",
resourceGroupName: "string",
annotation: "string",
exportRoutePolicyId: "string",
externalNetworkName: "string",
importRoutePolicyId: "string",
optionAProperties: {
peerASN: 0,
vlanId: 0,
mtu: 0,
primaryIpv4Prefix: "string",
primaryIpv6Prefix: "string",
secondaryIpv4Prefix: "string",
secondaryIpv6Prefix: "string",
},
optionBProperties: {
exportRouteTargets: ["string"],
importRouteTargets: ["string"],
},
});
type: azure-native:managednetworkfabric:ExternalNetwork
properties:
annotation: string
exportRoutePolicyId: string
externalNetworkName: string
importRoutePolicyId: string
l3IsolationDomainName: string
optionAProperties:
mtu: 0
peerASN: 0
primaryIpv4Prefix: string
primaryIpv6Prefix: string
secondaryIpv4Prefix: string
secondaryIpv6Prefix: string
vlanId: 0
optionBProperties:
exportRouteTargets:
- string
importRouteTargets:
- string
peeringOption: string
resourceGroupName: string
ExternalNetwork 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 ExternalNetwork resource accepts the following input properties:
- L3Isolation
Domain stringName - Name of the L3IsolationDomain
- Peering
Option string | Pulumi.Azure Native. Managed Network Fabric. Peering Option - Peering option list.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Annotation string
- Switch configuration description.
- Export
Route stringPolicy Id - ARM resource ID of exportRoutePolicy.
- External
Network stringName - Name of the ExternalNetwork
- Import
Route stringPolicy Id - ARM resource ID of importRoutePolicy.
- Option
AProperties Pulumi.Azure Native. Managed Network Fabric. Inputs. External Network Properties Option AProperties - option A properties object
- Option
BProperties Pulumi.Azure Native. Managed Network Fabric. Inputs. Option BProperties - option B properties object
- L3Isolation
Domain stringName - Name of the L3IsolationDomain
- Peering
Option string | PeeringOption - Peering option list.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Annotation string
- Switch configuration description.
- Export
Route stringPolicy Id - ARM resource ID of exportRoutePolicy.
- External
Network stringName - Name of the ExternalNetwork
- Import
Route stringPolicy Id - ARM resource ID of importRoutePolicy.
- Option
AProperties ExternalNetwork Properties Option AProperties Args - option A properties object
- Option
BProperties OptionBProperties Args - option B properties object
- l3Isolation
Domain StringName - Name of the L3IsolationDomain
- peering
Option String | PeeringOption - Peering option list.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- annotation String
- Switch configuration description.
- export
Route StringPolicy Id - ARM resource ID of exportRoutePolicy.
- external
Network StringName - Name of the ExternalNetwork
- import
Route StringPolicy Id - ARM resource ID of importRoutePolicy.
- option
AProperties ExternalNetwork Properties Option AProperties - option A properties object
- option
BProperties OptionBProperties - option B properties object
- l3Isolation
Domain stringName - Name of the L3IsolationDomain
- peering
Option string | PeeringOption - Peering option list.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- annotation string
- Switch configuration description.
- export
Route stringPolicy Id - ARM resource ID of exportRoutePolicy.
- external
Network stringName - Name of the ExternalNetwork
- import
Route stringPolicy Id - ARM resource ID of importRoutePolicy.
- option
AProperties ExternalNetwork Properties Option AProperties - option A properties object
- option
BProperties OptionBProperties - option B properties object
- l3_
isolation_ strdomain_ name - Name of the L3IsolationDomain
- peering_
option str | PeeringOption - Peering option list.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- annotation str
- Switch configuration description.
- export_
route_ strpolicy_ id - ARM resource ID of exportRoutePolicy.
- external_
network_ strname - Name of the ExternalNetwork
- import_
route_ strpolicy_ id - ARM resource ID of importRoutePolicy.
- option_
a_ Externalproperties Network Properties Option AProperties Args - option A properties object
- option_
b_ Optionproperties BProperties Args - option B properties object
- l3Isolation
Domain StringName - Name of the L3IsolationDomain
- peering
Option String | "OptionA" | "Option B" - Peering option list.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- annotation String
- Switch configuration description.
- export
Route StringPolicy Id - ARM resource ID of exportRoutePolicy.
- external
Network StringName - Name of the ExternalNetwork
- import
Route StringPolicy Id - ARM resource ID of importRoutePolicy.
- option
AProperties Property Map - option A properties object
- option
BProperties Property Map - option B properties object
Outputs
All input properties are implicitly available as output properties. Additionally, the ExternalNetwork resource produces the following output properties:
- Administrative
State string - AdministrativeState of the externalNetwork. Example: Enabled | Disabled.
- Disabled
On List<string>Resources - List of resources the externalNetwork is disabled on. Can be either entire NetworkFabric or NetworkRack.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Network
To stringNetwork Interconnect Id - Gets the networkToNetworkInterconnectId of the resource.
- Provisioning
State string - Gets the provisioning state of the resource.
- 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"
- Administrative
State string - AdministrativeState of the externalNetwork. Example: Enabled | Disabled.
- Disabled
On []stringResources - List of resources the externalNetwork is disabled on. Can be either entire NetworkFabric or NetworkRack.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Network
To stringNetwork Interconnect Id - Gets the networkToNetworkInterconnectId of the resource.
- Provisioning
State string - Gets the provisioning state of the resource.
- 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"
- administrative
State String - AdministrativeState of the externalNetwork. Example: Enabled | Disabled.
- disabled
On List<String>Resources - List of resources the externalNetwork is disabled on. Can be either entire NetworkFabric or NetworkRack.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- network
To StringNetwork Interconnect Id - Gets the networkToNetworkInterconnectId of the resource.
- provisioning
State String - Gets the provisioning state of the resource.
- 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"
- administrative
State string - AdministrativeState of the externalNetwork. Example: Enabled | Disabled.
- disabled
On string[]Resources - List of resources the externalNetwork is disabled on. Can be either entire NetworkFabric or NetworkRack.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- network
To stringNetwork Interconnect Id - Gets the networkToNetworkInterconnectId of the resource.
- provisioning
State string - Gets the provisioning state of the resource.
- 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"
- administrative_
state str - AdministrativeState of the externalNetwork. Example: Enabled | Disabled.
- disabled_
on_ Sequence[str]resources - List of resources the externalNetwork is disabled on. Can be either entire NetworkFabric or NetworkRack.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- network_
to_ strnetwork_ interconnect_ id - Gets the networkToNetworkInterconnectId of the resource.
- provisioning_
state str - Gets the provisioning state of the resource.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- administrative
State String - AdministrativeState of the externalNetwork. Example: Enabled | Disabled.
- disabled
On List<String>Resources - List of resources the externalNetwork is disabled on. Can be either entire NetworkFabric or NetworkRack.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- network
To StringNetwork Interconnect Id - Gets the networkToNetworkInterconnectId of the resource.
- provisioning
State String - Gets the provisioning state of the resource.
- 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
BfdConfigurationResponse, BfdConfigurationResponseArgs
- Administrative
State string - Administrative state of the BfdConfiguration. Example: Enabled | Disabled.
- Interval int
- interval in milliseconds. Example: 300.
- Multiplier int
- Multiplier for the Bfd Configuration. Example: 3.
- Administrative
State string - Administrative state of the BfdConfiguration. Example: Enabled | Disabled.
- Interval int
- interval in milliseconds. Example: 300.
- Multiplier int
- Multiplier for the Bfd Configuration. Example: 3.
- administrative
State String - Administrative state of the BfdConfiguration. Example: Enabled | Disabled.
- interval Integer
- interval in milliseconds. Example: 300.
- multiplier Integer
- Multiplier for the Bfd Configuration. Example: 3.
- administrative
State string - Administrative state of the BfdConfiguration. Example: Enabled | Disabled.
- interval number
- interval in milliseconds. Example: 300.
- multiplier number
- Multiplier for the Bfd Configuration. Example: 3.
- administrative_
state str - Administrative state of the BfdConfiguration. Example: Enabled | Disabled.
- interval int
- interval in milliseconds. Example: 300.
- multiplier int
- Multiplier for the Bfd Configuration. Example: 3.
- administrative
State String - Administrative state of the BfdConfiguration. Example: Enabled | Disabled.
- interval Number
- interval in milliseconds. Example: 300.
- multiplier Number
- Multiplier for the Bfd Configuration. Example: 3.
ExternalNetworkPropertiesOptionAProperties, ExternalNetworkPropertiesOptionAPropertiesArgs
- Peer
ASN int - Peer ASN number.Example : 28
- Vlan
Id int - Vlan identifier. Example : 501
- Mtu int
- MTU to use for option A peering.
- 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.
- Peer
ASN int - Peer ASN number.Example : 28
- Vlan
Id int - Vlan identifier. Example : 501
- Mtu int
- MTU to use for option A peering.
- 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.
- peer
ASN Integer - Peer ASN number.Example : 28
- vlan
Id Integer - Vlan identifier. Example : 501
- mtu Integer
- MTU to use for option A peering.
- 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.
- peer
ASN number - Peer ASN number.Example : 28
- vlan
Id number - Vlan identifier. Example : 501
- mtu number
- MTU to use for option A peering.
- 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.
- peer_
asn int - Peer ASN number.Example : 28
- vlan_
id int - Vlan identifier. Example : 501
- mtu int
- MTU to use for option A peering.
- 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.
- peer
ASN Number - Peer ASN number.Example : 28
- vlan
Id Number - Vlan identifier. Example : 501
- mtu Number
- MTU to use for option A peering.
- 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.
ExternalNetworkPropertiesResponseOptionAProperties, ExternalNetworkPropertiesResponseOptionAPropertiesArgs
- Fabric
ASN int - Fabric ASN number. Example 65001
- Peer
ASN int - Peer ASN number.Example : 28
- Vlan
Id int - Vlan identifier. Example : 501
- Bfd
Configuration Pulumi.Azure Native. Managed Network Fabric. Inputs. Bfd Configuration Response - BFD configuration properties
- Mtu int
- MTU to use for option A peering.
- 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.
- Fabric
ASN int - Fabric ASN number. Example 65001
- Peer
ASN int - Peer ASN number.Example : 28
- Vlan
Id int - Vlan identifier. Example : 501
- Bfd
Configuration BfdConfiguration Response - BFD configuration properties
- Mtu int
- MTU to use for option A peering.
- 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.
- fabric
ASN Integer - Fabric ASN number. Example 65001
- peer
ASN Integer - Peer ASN number.Example : 28
- vlan
Id Integer - Vlan identifier. Example : 501
- bfd
Configuration BfdConfiguration Response - BFD configuration properties
- mtu Integer
- MTU to use for option A peering.
- 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.
- fabric
ASN number - Fabric ASN number. Example 65001
- peer
ASN number - Peer ASN number.Example : 28
- vlan
Id number - Vlan identifier. Example : 501
- bfd
Configuration BfdConfiguration Response - BFD configuration properties
- mtu number
- MTU to use for option A peering.
- 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.
- fabric_
asn int - Fabric ASN number. Example 65001
- peer_
asn int - Peer ASN number.Example : 28
- vlan_
id int - Vlan identifier. Example : 501
- bfd_
configuration BfdConfiguration Response - BFD configuration properties
- mtu int
- MTU to use for option A peering.
- 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.
- fabric
ASN Number - Fabric ASN number. Example 65001
- peer
ASN Number - Peer ASN number.Example : 28
- vlan
Id Number - Vlan identifier. Example : 501
- bfd
Configuration Property Map - BFD configuration properties
- mtu Number
- MTU to use for option A peering.
- 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.
OptionBProperties, OptionBPropertiesArgs
- 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.
OptionBPropertiesResponse, OptionBPropertiesResponseArgs
- 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.
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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:managednetworkfabric:ExternalNetwork example-externalnetwork /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/{l3IsolationDomainName}/externalNetworks/{externalNetworkName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0