1. Packages
  2. Azure Native
  3. API Docs
  4. orbital
  5. L2Connection
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.orbital.L2Connection

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

Connects an edge site to an orbital gateway and describes what layer 2 traffic to forward between them.

Uses Azure REST API version 2024-03-01-preview. In version 2.x of the Azure Native provider, it used API version 2024-03-01-preview.

Other available API versions: 2024-03-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native orbital [ApiVersion]. See the version guide for details.

Example Usage

Create L2 Connection

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

return await Deployment.RunAsync(() => 
{
    var l2Connection = new AzureNative.Orbital.L2Connection("l2Connection", new()
    {
        EdgeSite = new AzureNative.Orbital.Inputs.L2ConnectionsPropertiesEdgeSiteArgs
        {
            Id = "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/edgeSites/es1",
        },
        GroundStation = new AzureNative.Orbital.Inputs.L2ConnectionsPropertiesGroundStationArgs
        {
            Id = "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/groundStations/gs1",
        },
        GroundStationPartnerRouter = new AzureNative.Orbital.Inputs.L2ConnectionsPropertiesGroundStationPartnerRouterArgs
        {
            Name = "customerName-SiteName-01",
        },
        L2ConnectionName = "connection1",
        Location = "westus",
        Name = "customerName-SiteName-01",
        ResourceGroupName = "rg1",
        Tags = 
        {
            { "tag1", "value1" },
            { "tag2", "value2" },
        },
        VlanId = 200,
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := orbital.NewL2Connection(ctx, "l2Connection", &orbital.L2ConnectionArgs{
			EdgeSite: &orbital.L2ConnectionsPropertiesEdgeSiteArgs{
				Id: pulumi.String("/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/edgeSites/es1"),
			},
			GroundStation: &orbital.L2ConnectionsPropertiesGroundStationArgs{
				Id: pulumi.String("/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/groundStations/gs1"),
			},
			GroundStationPartnerRouter: &orbital.L2ConnectionsPropertiesGroundStationPartnerRouterArgs{
				Name: pulumi.String("customerName-SiteName-01"),
			},
			L2ConnectionName:  pulumi.String("connection1"),
			Location:          pulumi.String("westus"),
			Name:              pulumi.String("customerName-SiteName-01"),
			ResourceGroupName: pulumi.String("rg1"),
			Tags: pulumi.StringMap{
				"tag1": pulumi.String("value1"),
				"tag2": pulumi.String("value2"),
			},
			VlanId: pulumi.Int(200),
		})
		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.orbital.L2Connection;
import com.pulumi.azurenative.orbital.L2ConnectionArgs;
import com.pulumi.azurenative.orbital.inputs.L2ConnectionsPropertiesEdgeSiteArgs;
import com.pulumi.azurenative.orbital.inputs.L2ConnectionsPropertiesGroundStationArgs;
import com.pulumi.azurenative.orbital.inputs.L2ConnectionsPropertiesGroundStationPartnerRouterArgs;
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 l2Connection = new L2Connection("l2Connection", L2ConnectionArgs.builder()
            .edgeSite(L2ConnectionsPropertiesEdgeSiteArgs.builder()
                .id("/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/edgeSites/es1")
                .build())
            .groundStation(L2ConnectionsPropertiesGroundStationArgs.builder()
                .id("/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/groundStations/gs1")
                .build())
            .groundStationPartnerRouter(L2ConnectionsPropertiesGroundStationPartnerRouterArgs.builder()
                .name("customerName-SiteName-01")
                .build())
            .l2ConnectionName("connection1")
            .location("westus")
            .name("customerName-SiteName-01")
            .resourceGroupName("rg1")
            .tags(Map.ofEntries(
                Map.entry("tag1", "value1"),
                Map.entry("tag2", "value2")
            ))
            .vlanId(200)
            .build());

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

const l2Connection = new azure_native.orbital.L2Connection("l2Connection", {
    edgeSite: {
        id: "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/edgeSites/es1",
    },
    groundStation: {
        id: "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/groundStations/gs1",
    },
    groundStationPartnerRouter: {
        name: "customerName-SiteName-01",
    },
    l2ConnectionName: "connection1",
    location: "westus",
    name: "customerName-SiteName-01",
    resourceGroupName: "rg1",
    tags: {
        tag1: "value1",
        tag2: "value2",
    },
    vlanId: 200,
});
Copy
import pulumi
import pulumi_azure_native as azure_native

l2_connection = azure_native.orbital.L2Connection("l2Connection",
    edge_site={
        "id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/edgeSites/es1",
    },
    ground_station={
        "id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/groundStations/gs1",
    },
    ground_station_partner_router={
        "name": "customerName-SiteName-01",
    },
    l2_connection_name="connection1",
    location="westus",
    name="customerName-SiteName-01",
    resource_group_name="rg1",
    tags={
        "tag1": "value1",
        "tag2": "value2",
    },
    vlan_id=200)
Copy
resources:
  l2Connection:
    type: azure-native:orbital:L2Connection
    properties:
      edgeSite:
        id: /subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/edgeSites/es1
      groundStation:
        id: /subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/groundStations/gs1
      groundStationPartnerRouter:
        name: customerName-SiteName-01
      l2ConnectionName: connection1
      location: westus
      name: customerName-SiteName-01
      resourceGroupName: rg1
      tags:
        tag1: value1
        tag2: value2
      vlanId: 200
Copy

Create L2Connection Resource

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

Constructor syntax

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

@overload
def L2Connection(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 edge_site: Optional[L2ConnectionsPropertiesEdgeSiteArgs] = None,
                 ground_station: Optional[L2ConnectionsPropertiesGroundStationArgs] = None,
                 ground_station_partner_router: Optional[L2ConnectionsPropertiesGroundStationPartnerRouterArgs] = None,
                 name: Optional[str] = None,
                 resource_group_name: Optional[str] = None,
                 vlan_id: Optional[int] = None,
                 l2_connection_name: Optional[str] = None,
                 location: Optional[str] = None,
                 tags: Optional[Mapping[str, str]] = None)
func NewL2Connection(ctx *Context, name string, args L2ConnectionArgs, opts ...ResourceOption) (*L2Connection, error)
public L2Connection(string name, L2ConnectionArgs args, CustomResourceOptions? opts = null)
public L2Connection(String name, L2ConnectionArgs args)
public L2Connection(String name, L2ConnectionArgs args, CustomResourceOptions options)
type: azure-native:orbital:L2Connection
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. L2ConnectionArgs
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. L2ConnectionArgs
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. L2ConnectionArgs
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. L2ConnectionArgs
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. L2ConnectionArgs
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 l2connectionResource = new AzureNative.Orbital.L2Connection("l2connectionResource", new()
{
    EdgeSite = new AzureNative.Orbital.Inputs.L2ConnectionsPropertiesEdgeSiteArgs
    {
        Id = "string",
    },
    GroundStation = new AzureNative.Orbital.Inputs.L2ConnectionsPropertiesGroundStationArgs
    {
        Id = "string",
    },
    GroundStationPartnerRouter = new AzureNative.Orbital.Inputs.L2ConnectionsPropertiesGroundStationPartnerRouterArgs
    {
        Name = "string",
    },
    Name = "string",
    ResourceGroupName = "string",
    VlanId = 0,
    L2ConnectionName = "string",
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := orbital.NewL2Connection(ctx, "l2connectionResource", &orbital.L2ConnectionArgs{
	EdgeSite: &orbital.L2ConnectionsPropertiesEdgeSiteArgs{
		Id: pulumi.String("string"),
	},
	GroundStation: &orbital.L2ConnectionsPropertiesGroundStationArgs{
		Id: pulumi.String("string"),
	},
	GroundStationPartnerRouter: &orbital.L2ConnectionsPropertiesGroundStationPartnerRouterArgs{
		Name: pulumi.String("string"),
	},
	Name:              pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	VlanId:            pulumi.Int(0),
	L2ConnectionName:  pulumi.String("string"),
	Location:          pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var l2connectionResource = new L2Connection("l2connectionResource", L2ConnectionArgs.builder()
    .edgeSite(L2ConnectionsPropertiesEdgeSiteArgs.builder()
        .id("string")
        .build())
    .groundStation(L2ConnectionsPropertiesGroundStationArgs.builder()
        .id("string")
        .build())
    .groundStationPartnerRouter(L2ConnectionsPropertiesGroundStationPartnerRouterArgs.builder()
        .name("string")
        .build())
    .name("string")
    .resourceGroupName("string")
    .vlanId(0)
    .l2ConnectionName("string")
    .location("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
l2connection_resource = azure_native.orbital.L2Connection("l2connectionResource",
    edge_site={
        "id": "string",
    },
    ground_station={
        "id": "string",
    },
    ground_station_partner_router={
        "name": "string",
    },
    name="string",
    resource_group_name="string",
    vlan_id=0,
    l2_connection_name="string",
    location="string",
    tags={
        "string": "string",
    })
Copy
const l2connectionResource = new azure_native.orbital.L2Connection("l2connectionResource", {
    edgeSite: {
        id: "string",
    },
    groundStation: {
        id: "string",
    },
    groundStationPartnerRouter: {
        name: "string",
    },
    name: "string",
    resourceGroupName: "string",
    vlanId: 0,
    l2ConnectionName: "string",
    location: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:orbital:L2Connection
properties:
    edgeSite:
        id: string
    groundStation:
        id: string
    groundStationPartnerRouter:
        name: string
    l2ConnectionName: string
    location: string
    name: string
    resourceGroupName: string
    tags:
        string: string
    vlanId: 0
Copy

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

EdgeSite This property is required. Pulumi.AzureNative.Orbital.Inputs.L2ConnectionsPropertiesEdgeSite
A reference to an Microsoft.Orbital/edgeSites resource to route traffic for.
GroundStation This property is required. Pulumi.AzureNative.Orbital.Inputs.L2ConnectionsPropertiesGroundStation
A reference to an Microsoft.Orbital/groundStations resource to route traffic for.
GroundStationPartnerRouter
This property is required.
Changes to this property will trigger replacement.
Pulumi.AzureNative.Orbital.Inputs.L2ConnectionsPropertiesGroundStationPartnerRouter
The name of the partner router to establish a connection to within the ground station.
Name This property is required. string
The unique name of the partner router that cross-connects with the Orbital Edge Router at the edge site.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
VlanId This property is required. int
The VLAN ID for the L2 connection.
L2ConnectionName Changes to this property will trigger replacement. string
L2 Connection name.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Tags Dictionary<string, string>
Resource tags.
EdgeSite This property is required. L2ConnectionsPropertiesEdgeSiteArgs
A reference to an Microsoft.Orbital/edgeSites resource to route traffic for.
GroundStation This property is required. L2ConnectionsPropertiesGroundStationArgs
A reference to an Microsoft.Orbital/groundStations resource to route traffic for.
GroundStationPartnerRouter
This property is required.
Changes to this property will trigger replacement.
L2ConnectionsPropertiesGroundStationPartnerRouterArgs
The name of the partner router to establish a connection to within the ground station.
Name This property is required. string
The unique name of the partner router that cross-connects with the Orbital Edge Router at the edge site.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
VlanId This property is required. int
The VLAN ID for the L2 connection.
L2ConnectionName Changes to this property will trigger replacement. string
L2 Connection name.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Tags map[string]string
Resource tags.
edgeSite This property is required. L2ConnectionsPropertiesEdgeSite
A reference to an Microsoft.Orbital/edgeSites resource to route traffic for.
groundStation This property is required. L2ConnectionsPropertiesGroundStation
A reference to an Microsoft.Orbital/groundStations resource to route traffic for.
groundStationPartnerRouter
This property is required.
Changes to this property will trigger replacement.
L2ConnectionsPropertiesGroundStationPartnerRouter
The name of the partner router to establish a connection to within the ground station.
name This property is required. String
The unique name of the partner router that cross-connects with the Orbital Edge Router at the edge site.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
vlanId This property is required. Integer
The VLAN ID for the L2 connection.
l2ConnectionName Changes to this property will trigger replacement. String
L2 Connection name.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
tags Map<String,String>
Resource tags.
edgeSite This property is required. L2ConnectionsPropertiesEdgeSite
A reference to an Microsoft.Orbital/edgeSites resource to route traffic for.
groundStation This property is required. L2ConnectionsPropertiesGroundStation
A reference to an Microsoft.Orbital/groundStations resource to route traffic for.
groundStationPartnerRouter
This property is required.
Changes to this property will trigger replacement.
L2ConnectionsPropertiesGroundStationPartnerRouter
The name of the partner router to establish a connection to within the ground station.
name This property is required. string
The unique name of the partner router that cross-connects with the Orbital Edge Router at the edge site.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
vlanId This property is required. number
The VLAN ID for the L2 connection.
l2ConnectionName Changes to this property will trigger replacement. string
L2 Connection name.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
tags {[key: string]: string}
Resource tags.
edge_site This property is required. L2ConnectionsPropertiesEdgeSiteArgs
A reference to an Microsoft.Orbital/edgeSites resource to route traffic for.
ground_station This property is required. L2ConnectionsPropertiesGroundStationArgs
A reference to an Microsoft.Orbital/groundStations resource to route traffic for.
ground_station_partner_router
This property is required.
Changes to this property will trigger replacement.
L2ConnectionsPropertiesGroundStationPartnerRouterArgs
The name of the partner router to establish a connection to within the ground station.
name This property is required. str
The unique name of the partner router that cross-connects with the Orbital Edge Router at the edge site.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
vlan_id This property is required. int
The VLAN ID for the L2 connection.
l2_connection_name Changes to this property will trigger replacement. str
L2 Connection name.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
tags Mapping[str, str]
Resource tags.
edgeSite This property is required. Property Map
A reference to an Microsoft.Orbital/edgeSites resource to route traffic for.
groundStation This property is required. Property Map
A reference to an Microsoft.Orbital/groundStations resource to route traffic for.
groundStationPartnerRouter
This property is required.
Changes to this property will trigger replacement.
Property Map
The name of the partner router to establish a connection to within the ground station.
name This property is required. String
The unique name of the partner router that cross-connects with the Orbital Edge Router at the edge site.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
vlanId This property is required. Number
The VLAN ID for the L2 connection.
l2ConnectionName Changes to this property will trigger replacement. String
L2 Connection name.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
tags Map<String>
Resource tags.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
CircuitId string
Globally-unique identifier for this connection that is to be used as a circuit ID.
Id string
The provider-assigned unique ID for this managed resource.
SystemData Pulumi.AzureNative.Orbital.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AzureApiVersion string
The Azure API version of the resource.
CircuitId string
Globally-unique identifier for this connection that is to be used as a circuit ID.
Id string
The provider-assigned unique ID for this managed resource.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
circuitId String
Globally-unique identifier for this connection that is to be used as a circuit ID.
id String
The provider-assigned unique ID for this managed resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion string
The Azure API version of the resource.
circuitId string
Globally-unique identifier for this connection that is to be used as a circuit ID.
id string
The provider-assigned unique ID for this managed resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azure_api_version str
The Azure API version of the resource.
circuit_id str
Globally-unique identifier for this connection that is to be used as a circuit ID.
id str
The provider-assigned unique ID for this managed resource.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
circuitId String
Globally-unique identifier for this connection that is to be used as a circuit ID.
id String
The provider-assigned unique ID for this managed resource.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

L2ConnectionsPropertiesEdgeSite
, L2ConnectionsPropertiesEdgeSiteArgs

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.

L2ConnectionsPropertiesGroundStation
, L2ConnectionsPropertiesGroundStationArgs

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.

L2ConnectionsPropertiesGroundStationPartnerRouter
, L2ConnectionsPropertiesGroundStationPartnerRouterArgs

Name This property is required. string
The unique name of the partner router that cross-connects with the Orbital Edge Router at the ground station site.
Name This property is required. string
The unique name of the partner router that cross-connects with the Orbital Edge Router at the ground station site.
name This property is required. String
The unique name of the partner router that cross-connects with the Orbital Edge Router at the ground station site.
name This property is required. string
The unique name of the partner router that cross-connects with the Orbital Edge Router at the ground station site.
name This property is required. str
The unique name of the partner router that cross-connects with the Orbital Edge Router at the ground station site.
name This property is required. String
The unique name of the partner router that cross-connects with the Orbital Edge Router at the ground station site.

L2ConnectionsPropertiesResponseEdgeSite
, L2ConnectionsPropertiesResponseEdgeSiteArgs

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.

L2ConnectionsPropertiesResponseGroundStation
, L2ConnectionsPropertiesResponseGroundStationArgs

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.

L2ConnectionsPropertiesResponseGroundStationPartnerRouter
, L2ConnectionsPropertiesResponseGroundStationPartnerRouterArgs

Name This property is required. string
The unique name of the partner router that cross-connects with the Orbital Edge Router at the ground station site.
Name This property is required. string
The unique name of the partner router that cross-connects with the Orbital Edge Router at the ground station site.
name This property is required. String
The unique name of the partner router that cross-connects with the Orbital Edge Router at the ground station site.
name This property is required. string
The unique name of the partner router that cross-connects with the Orbital Edge Router at the ground station site.
name This property is required. str
The unique name of the partner router that cross-connects with the Orbital Edge Router at the ground station site.
name This property is required. String
The unique name of the partner router that cross-connects with the Orbital Edge Router at the ground station site.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

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

$ pulumi import azure-native:orbital:L2Connection connection1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Orbital/l2Connections/{l2ConnectionName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi