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

azure-native-v2.network.ExpressRouteCircuitConnection

Explore with Pulumi AI

Express Route Circuit Connection in an ExpressRouteCircuitPeering resource. Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-11-01.

Other available API versions: 2023-04-01, 2023-05-01, 2023-06-01, 2023-09-01, 2023-11-01, 2024-01-01, 2024-03-01, 2024-05-01.

Example Usage

ExpressRouteCircuitConnectionCreate

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

return await Deployment.RunAsync(() => 
{
    var expressRouteCircuitConnection = new AzureNative.Network.ExpressRouteCircuitConnection("expressRouteCircuitConnection", new()
    {
        AddressPrefix = "10.0.0.0/29",
        AuthorizationKey = "946a1918-b7a2-4917-b43c-8c4cdaee006a",
        CircuitName = "ExpressRouteARMCircuitA",
        ConnectionName = "circuitConnectionUSAUS",
        ExpressRouteCircuitPeering = new AzureNative.Network.Inputs.SubResourceArgs
        {
            Id = "/subscriptions/subid1/resourceGroups/dedharcktinit/providers/Microsoft.Network/expressRouteCircuits/dedharcktlocal/peerings/AzurePrivatePeering",
        },
        Ipv6CircuitConnectionConfig = new AzureNative.Network.Inputs.Ipv6CircuitConnectionConfigArgs
        {
            AddressPrefix = "aa:bb::/125",
        },
        PeerExpressRouteCircuitPeering = new AzureNative.Network.Inputs.SubResourceArgs
        {
            Id = "/subscriptions/subid2/resourceGroups/dedharcktpeer/providers/Microsoft.Network/expressRouteCircuits/dedharcktremote/peerings/AzurePrivatePeering",
        },
        PeeringName = "AzurePrivatePeering",
        ResourceGroupName = "rg1",
    });

});
Copy
package main

import (
	network "github.com/pulumi/pulumi-azure-native-sdk/network/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := network.NewExpressRouteCircuitConnection(ctx, "expressRouteCircuitConnection", &network.ExpressRouteCircuitConnectionArgs{
			AddressPrefix:    pulumi.String("10.0.0.0/29"),
			AuthorizationKey: pulumi.String("946a1918-b7a2-4917-b43c-8c4cdaee006a"),
			CircuitName:      pulumi.String("ExpressRouteARMCircuitA"),
			ConnectionName:   pulumi.String("circuitConnectionUSAUS"),
			ExpressRouteCircuitPeering: &network.SubResourceArgs{
				Id: pulumi.String("/subscriptions/subid1/resourceGroups/dedharcktinit/providers/Microsoft.Network/expressRouteCircuits/dedharcktlocal/peerings/AzurePrivatePeering"),
			},
			Ipv6CircuitConnectionConfig: &network.Ipv6CircuitConnectionConfigArgs{
				AddressPrefix: pulumi.String("aa:bb::/125"),
			},
			PeerExpressRouteCircuitPeering: &network.SubResourceArgs{
				Id: pulumi.String("/subscriptions/subid2/resourceGroups/dedharcktpeer/providers/Microsoft.Network/expressRouteCircuits/dedharcktremote/peerings/AzurePrivatePeering"),
			},
			PeeringName:       pulumi.String("AzurePrivatePeering"),
			ResourceGroupName: pulumi.String("rg1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.network.ExpressRouteCircuitConnection;
import com.pulumi.azurenative.network.ExpressRouteCircuitConnectionArgs;
import com.pulumi.azurenative.network.inputs.SubResourceArgs;
import com.pulumi.azurenative.network.inputs.Ipv6CircuitConnectionConfigArgs;
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 expressRouteCircuitConnection = new ExpressRouteCircuitConnection("expressRouteCircuitConnection", ExpressRouteCircuitConnectionArgs.builder()
            .addressPrefix("10.0.0.0/29")
            .authorizationKey("946a1918-b7a2-4917-b43c-8c4cdaee006a")
            .circuitName("ExpressRouteARMCircuitA")
            .connectionName("circuitConnectionUSAUS")
            .expressRouteCircuitPeering(SubResourceArgs.builder()
                .id("/subscriptions/subid1/resourceGroups/dedharcktinit/providers/Microsoft.Network/expressRouteCircuits/dedharcktlocal/peerings/AzurePrivatePeering")
                .build())
            .ipv6CircuitConnectionConfig(Ipv6CircuitConnectionConfigArgs.builder()
                .addressPrefix("aa:bb::/125")
                .build())
            .peerExpressRouteCircuitPeering(SubResourceArgs.builder()
                .id("/subscriptions/subid2/resourceGroups/dedharcktpeer/providers/Microsoft.Network/expressRouteCircuits/dedharcktremote/peerings/AzurePrivatePeering")
                .build())
            .peeringName("AzurePrivatePeering")
            .resourceGroupName("rg1")
            .build());

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

const expressRouteCircuitConnection = new azure_native.network.ExpressRouteCircuitConnection("expressRouteCircuitConnection", {
    addressPrefix: "10.0.0.0/29",
    authorizationKey: "946a1918-b7a2-4917-b43c-8c4cdaee006a",
    circuitName: "ExpressRouteARMCircuitA",
    connectionName: "circuitConnectionUSAUS",
    expressRouteCircuitPeering: {
        id: "/subscriptions/subid1/resourceGroups/dedharcktinit/providers/Microsoft.Network/expressRouteCircuits/dedharcktlocal/peerings/AzurePrivatePeering",
    },
    ipv6CircuitConnectionConfig: {
        addressPrefix: "aa:bb::/125",
    },
    peerExpressRouteCircuitPeering: {
        id: "/subscriptions/subid2/resourceGroups/dedharcktpeer/providers/Microsoft.Network/expressRouteCircuits/dedharcktremote/peerings/AzurePrivatePeering",
    },
    peeringName: "AzurePrivatePeering",
    resourceGroupName: "rg1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

express_route_circuit_connection = azure_native.network.ExpressRouteCircuitConnection("expressRouteCircuitConnection",
    address_prefix="10.0.0.0/29",
    authorization_key="946a1918-b7a2-4917-b43c-8c4cdaee006a",
    circuit_name="ExpressRouteARMCircuitA",
    connection_name="circuitConnectionUSAUS",
    express_route_circuit_peering={
        "id": "/subscriptions/subid1/resourceGroups/dedharcktinit/providers/Microsoft.Network/expressRouteCircuits/dedharcktlocal/peerings/AzurePrivatePeering",
    },
    ipv6_circuit_connection_config={
        "address_prefix": "aa:bb::/125",
    },
    peer_express_route_circuit_peering={
        "id": "/subscriptions/subid2/resourceGroups/dedharcktpeer/providers/Microsoft.Network/expressRouteCircuits/dedharcktremote/peerings/AzurePrivatePeering",
    },
    peering_name="AzurePrivatePeering",
    resource_group_name="rg1")
Copy
resources:
  expressRouteCircuitConnection:
    type: azure-native:network:ExpressRouteCircuitConnection
    properties:
      addressPrefix: 10.0.0.0/29
      authorizationKey: 946a1918-b7a2-4917-b43c-8c4cdaee006a
      circuitName: ExpressRouteARMCircuitA
      connectionName: circuitConnectionUSAUS
      expressRouteCircuitPeering:
        id: /subscriptions/subid1/resourceGroups/dedharcktinit/providers/Microsoft.Network/expressRouteCircuits/dedharcktlocal/peerings/AzurePrivatePeering
      ipv6CircuitConnectionConfig:
        addressPrefix: aa:bb::/125
      peerExpressRouteCircuitPeering:
        id: /subscriptions/subid2/resourceGroups/dedharcktpeer/providers/Microsoft.Network/expressRouteCircuits/dedharcktremote/peerings/AzurePrivatePeering
      peeringName: AzurePrivatePeering
      resourceGroupName: rg1
Copy

Create ExpressRouteCircuitConnection Resource

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

Constructor syntax

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

@overload
def ExpressRouteCircuitConnection(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  circuit_name: Optional[str] = None,
                                  peering_name: Optional[str] = None,
                                  resource_group_name: Optional[str] = None,
                                  address_prefix: Optional[str] = None,
                                  authorization_key: Optional[str] = None,
                                  connection_name: Optional[str] = None,
                                  express_route_circuit_peering: Optional[SubResourceArgs] = None,
                                  id: Optional[str] = None,
                                  ipv6_circuit_connection_config: Optional[Ipv6CircuitConnectionConfigArgs] = None,
                                  name: Optional[str] = None,
                                  peer_express_route_circuit_peering: Optional[SubResourceArgs] = None)
func NewExpressRouteCircuitConnection(ctx *Context, name string, args ExpressRouteCircuitConnectionArgs, opts ...ResourceOption) (*ExpressRouteCircuitConnection, error)
public ExpressRouteCircuitConnection(string name, ExpressRouteCircuitConnectionArgs args, CustomResourceOptions? opts = null)
public ExpressRouteCircuitConnection(String name, ExpressRouteCircuitConnectionArgs args)
public ExpressRouteCircuitConnection(String name, ExpressRouteCircuitConnectionArgs args, CustomResourceOptions options)
type: azure-native:network:ExpressRouteCircuitConnection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ExpressRouteCircuitConnectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ExpressRouteCircuitConnectionInitArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ExpressRouteCircuitConnectionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ExpressRouteCircuitConnectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ExpressRouteCircuitConnectionArgs
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 expressRouteCircuitConnectionResource = new AzureNative.Network.ExpressRouteCircuitConnection("expressRouteCircuitConnectionResource", new()
{
    CircuitName = "string",
    PeeringName = "string",
    ResourceGroupName = "string",
    AddressPrefix = "string",
    AuthorizationKey = "string",
    ConnectionName = "string",
    ExpressRouteCircuitPeering = 
    {
        { "id", "string" },
    },
    Id = "string",
    Ipv6CircuitConnectionConfig = 
    {
        { "addressPrefix", "string" },
    },
    Name = "string",
    PeerExpressRouteCircuitPeering = 
    {
        { "id", "string" },
    },
});
Copy
example, err := network.NewExpressRouteCircuitConnection(ctx, "expressRouteCircuitConnectionResource", &network.ExpressRouteCircuitConnectionArgs{
	CircuitName:       "string",
	PeeringName:       "string",
	ResourceGroupName: "string",
	AddressPrefix:     "string",
	AuthorizationKey:  "string",
	ConnectionName:    "string",
	ExpressRouteCircuitPeering: map[string]interface{}{
		"id": "string",
	},
	Id: "string",
	Ipv6CircuitConnectionConfig: map[string]interface{}{
		"addressPrefix": "string",
	},
	Name: "string",
	PeerExpressRouteCircuitPeering: map[string]interface{}{
		"id": "string",
	},
})
Copy
var expressRouteCircuitConnectionResource = new ExpressRouteCircuitConnection("expressRouteCircuitConnectionResource", ExpressRouteCircuitConnectionArgs.builder()
    .circuitName("string")
    .peeringName("string")
    .resourceGroupName("string")
    .addressPrefix("string")
    .authorizationKey("string")
    .connectionName("string")
    .expressRouteCircuitPeering(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .id("string")
    .ipv6CircuitConnectionConfig(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .name("string")
    .peerExpressRouteCircuitPeering(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
express_route_circuit_connection_resource = azure_native.network.ExpressRouteCircuitConnection("expressRouteCircuitConnectionResource",
    circuit_name=string,
    peering_name=string,
    resource_group_name=string,
    address_prefix=string,
    authorization_key=string,
    connection_name=string,
    express_route_circuit_peering={
        id: string,
    },
    id=string,
    ipv6_circuit_connection_config={
        addressPrefix: string,
    },
    name=string,
    peer_express_route_circuit_peering={
        id: string,
    })
Copy
const expressRouteCircuitConnectionResource = new azure_native.network.ExpressRouteCircuitConnection("expressRouteCircuitConnectionResource", {
    circuitName: "string",
    peeringName: "string",
    resourceGroupName: "string",
    addressPrefix: "string",
    authorizationKey: "string",
    connectionName: "string",
    expressRouteCircuitPeering: {
        id: "string",
    },
    id: "string",
    ipv6CircuitConnectionConfig: {
        addressPrefix: "string",
    },
    name: "string",
    peerExpressRouteCircuitPeering: {
        id: "string",
    },
});
Copy
type: azure-native:network:ExpressRouteCircuitConnection
properties:
    addressPrefix: string
    authorizationKey: string
    circuitName: string
    connectionName: string
    expressRouteCircuitPeering:
        id: string
    id: string
    ipv6CircuitConnectionConfig:
        addressPrefix: string
    name: string
    peerExpressRouteCircuitPeering:
        id: string
    peeringName: string
    resourceGroupName: string
Copy

ExpressRouteCircuitConnection Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ExpressRouteCircuitConnection resource accepts the following input properties:

CircuitName
This property is required.
Changes to this property will trigger replacement.
string
The name of the express route circuit.
PeeringName
This property is required.
Changes to this property will trigger replacement.
string
The name of the peering.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
AddressPrefix string
/29 IP address space to carve out Customer addresses for tunnels.
AuthorizationKey string
The authorization key.
ConnectionName Changes to this property will trigger replacement. string
The name of the express route circuit connection.
ExpressRouteCircuitPeering Pulumi.AzureNative.Network.Inputs.SubResource
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
Id string
Resource ID.
Ipv6CircuitConnectionConfig Pulumi.AzureNative.Network.Inputs.Ipv6CircuitConnectionConfig
IPv6 Address PrefixProperties of the express route circuit connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
PeerExpressRouteCircuitPeering Pulumi.AzureNative.Network.Inputs.SubResource
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
CircuitName
This property is required.
Changes to this property will trigger replacement.
string
The name of the express route circuit.
PeeringName
This property is required.
Changes to this property will trigger replacement.
string
The name of the peering.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
AddressPrefix string
/29 IP address space to carve out Customer addresses for tunnels.
AuthorizationKey string
The authorization key.
ConnectionName Changes to this property will trigger replacement. string
The name of the express route circuit connection.
ExpressRouteCircuitPeering SubResourceArgs
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
Id string
Resource ID.
Ipv6CircuitConnectionConfig Ipv6CircuitConnectionConfigArgs
IPv6 Address PrefixProperties of the express route circuit connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
PeerExpressRouteCircuitPeering SubResourceArgs
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
circuitName
This property is required.
Changes to this property will trigger replacement.
String
The name of the express route circuit.
peeringName
This property is required.
Changes to this property will trigger replacement.
String
The name of the peering.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
addressPrefix String
/29 IP address space to carve out Customer addresses for tunnels.
authorizationKey String
The authorization key.
connectionName Changes to this property will trigger replacement. String
The name of the express route circuit connection.
expressRouteCircuitPeering SubResource
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
id String
Resource ID.
ipv6CircuitConnectionConfig Ipv6CircuitConnectionConfig
IPv6 Address PrefixProperties of the express route circuit connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerExpressRouteCircuitPeering SubResource
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
circuitName
This property is required.
Changes to this property will trigger replacement.
string
The name of the express route circuit.
peeringName
This property is required.
Changes to this property will trigger replacement.
string
The name of the peering.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
addressPrefix string
/29 IP address space to carve out Customer addresses for tunnels.
authorizationKey string
The authorization key.
connectionName Changes to this property will trigger replacement. string
The name of the express route circuit connection.
expressRouteCircuitPeering SubResource
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
id string
Resource ID.
ipv6CircuitConnectionConfig Ipv6CircuitConnectionConfig
IPv6 Address PrefixProperties of the express route circuit connection.
name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerExpressRouteCircuitPeering SubResource
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
circuit_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the express route circuit.
peering_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the peering.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group.
address_prefix str
/29 IP address space to carve out Customer addresses for tunnels.
authorization_key str
The authorization key.
connection_name Changes to this property will trigger replacement. str
The name of the express route circuit connection.
express_route_circuit_peering SubResourceArgs
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
id str
Resource ID.
ipv6_circuit_connection_config Ipv6CircuitConnectionConfigArgs
IPv6 Address PrefixProperties of the express route circuit connection.
name str
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peer_express_route_circuit_peering SubResourceArgs
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
circuitName
This property is required.
Changes to this property will trigger replacement.
String
The name of the express route circuit.
peeringName
This property is required.
Changes to this property will trigger replacement.
String
The name of the peering.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
addressPrefix String
/29 IP address space to carve out Customer addresses for tunnels.
authorizationKey String
The authorization key.
connectionName Changes to this property will trigger replacement. String
The name of the express route circuit connection.
expressRouteCircuitPeering Property Map
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
id String
Resource ID.
ipv6CircuitConnectionConfig Property Map
IPv6 Address PrefixProperties of the express route circuit connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerExpressRouteCircuitPeering Property Map
Reference to Express Route Circuit Private Peering Resource of the peered circuit.

Outputs

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

CircuitConnectionStatus string
Express Route Circuit connection state.
Etag string
A unique read-only string that changes whenever the resource is updated.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
The provisioning state of the express route circuit connection resource.
Type string
Type of the resource.
CircuitConnectionStatus string
Express Route Circuit connection state.
Etag string
A unique read-only string that changes whenever the resource is updated.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
The provisioning state of the express route circuit connection resource.
Type string
Type of the resource.
circuitConnectionStatus String
Express Route Circuit connection state.
etag String
A unique read-only string that changes whenever the resource is updated.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
The provisioning state of the express route circuit connection resource.
type String
Type of the resource.
circuitConnectionStatus string
Express Route Circuit connection state.
etag string
A unique read-only string that changes whenever the resource is updated.
id string
The provider-assigned unique ID for this managed resource.
provisioningState string
The provisioning state of the express route circuit connection resource.
type string
Type of the resource.
circuit_connection_status str
Express Route Circuit connection state.
etag str
A unique read-only string that changes whenever the resource is updated.
id str
The provider-assigned unique ID for this managed resource.
provisioning_state str
The provisioning state of the express route circuit connection resource.
type str
Type of the resource.
circuitConnectionStatus String
Express Route Circuit connection state.
etag String
A unique read-only string that changes whenever the resource is updated.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
The provisioning state of the express route circuit connection resource.
type String
Type of the resource.

Supporting Types

Ipv6CircuitConnectionConfig
, Ipv6CircuitConnectionConfigArgs

AddressPrefix string
/125 IP address space to carve out customer addresses for global reach.
AddressPrefix string
/125 IP address space to carve out customer addresses for global reach.
addressPrefix String
/125 IP address space to carve out customer addresses for global reach.
addressPrefix string
/125 IP address space to carve out customer addresses for global reach.
address_prefix str
/125 IP address space to carve out customer addresses for global reach.
addressPrefix String
/125 IP address space to carve out customer addresses for global reach.

Ipv6CircuitConnectionConfigResponse
, Ipv6CircuitConnectionConfigResponseArgs

CircuitConnectionStatus This property is required. string
Express Route Circuit connection state.
AddressPrefix string
/125 IP address space to carve out customer addresses for global reach.
CircuitConnectionStatus This property is required. string
Express Route Circuit connection state.
AddressPrefix string
/125 IP address space to carve out customer addresses for global reach.
circuitConnectionStatus This property is required. String
Express Route Circuit connection state.
addressPrefix String
/125 IP address space to carve out customer addresses for global reach.
circuitConnectionStatus This property is required. string
Express Route Circuit connection state.
addressPrefix string
/125 IP address space to carve out customer addresses for global reach.
circuit_connection_status This property is required. str
Express Route Circuit connection state.
address_prefix str
/125 IP address space to carve out customer addresses for global reach.
circuitConnectionStatus This property is required. String
Express Route Circuit connection state.
addressPrefix String
/125 IP address space to carve out customer addresses for global reach.

SubResource
, SubResourceArgs

Id string
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
Id string
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id String
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id string
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id str
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id String
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.

SubResourceResponse
, SubResourceResponseArgs

Id This property is required. string
Resource ID.
Id This property is required. string
Resource ID.
id This property is required. String
Resource ID.
id This property is required. string
Resource ID.
id This property is required. str
Resource ID.
id This property is required. String
Resource ID.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:network:ExpressRouteCircuitConnection circuitConnectionUSAUS /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName} 
Copy

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

Package Details

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