ExpressRoutePort

class ExpressRoutePort : KotlinCustomResource

Manages a Express Route Port.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.ExpressRoutePort;
import com.pulumi.azure.network.ExpressRoutePortArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West US")
.build());
var exampleExpressRoutePort = new ExpressRoutePort("exampleExpressRoutePort", ExpressRoutePortArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.peeringLocation("Airtel-Chennai-CLS")
.bandwidthInGbps(10)
.encapsulation("Dot1Q")
.build());
}
}

Import

Express Route Ports can be imported using the resource id, e.g.

$ pulumi import azure:network/expressRoutePort:ExpressRoutePort example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Network/expressRoutePorts/port1

Properties

Link copied to clipboard
val bandwidthInGbps: Output<Int>

Bandwidth of the Express Route Port in Gbps. Changing this forces a new Express Route Port to be created.

Link copied to clipboard
val billingType: Output<String>

The billing type of the Express Route Port. Possible values are MeteredData and UnlimitedData.

Link copied to clipboard
val encapsulation: Output<String>

The encapsulation method used for the Express Route Port. Changing this forces a new Express Route Port to be created. Possible values are: Dot1Q, QinQ.

Link copied to clipboard
val ethertype: Output<String>

The EtherType of the Express Route Port.

Link copied to clipboard
val guid: Output<String>

The resource GUID of the Express Route Port.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

An identity block as defined below.

Link copied to clipboard

A list of link blocks as defined below.

Link copied to clipboard

A list of link blocks as defined below.

Link copied to clipboard
val location: Output<String>

The Azure Region where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

Link copied to clipboard
val mtu: Output<String>

The maximum transmission unit of the Express Route Port.

Link copied to clipboard
val name: Output<String>

The name which should be used for this Express Route Port. Changing this forces a new Express Route Port to be created.

Link copied to clipboard
val peeringLocation: Output<String>

The name of the peering location that this Express Route Port is physically mapped to. Changing this forces a new Express Route Port to be created.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The name of the Resource Group where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

Link copied to clipboard
val tags: Output<Map<String, String>>?

A mapping of tags which should be assigned to the Express Route Port.

Link copied to clipboard
val urn: Output<String>