VirtualWanArgs

data class VirtualWanArgs(val allowBranchToBranchTraffic: Output<Boolean>? = null, val disableVpnEncryption: Output<Boolean>? = null, val location: Output<String>? = null, val name: Output<String>? = null, val office365LocalBreakoutCategory: Output<String>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val type: Output<String>? = null) : ConvertibleToJava<VirtualWanArgs>

Manages a Virtual WAN.

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.VirtualWan;
import com.pulumi.azure.network.VirtualWanArgs;
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 Europe")
.build());
var exampleVirtualWan = new VirtualWan("exampleVirtualWan", VirtualWanArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.build());
}
}

Import

Virtual WAN can be imported using the resource id, e.g.

$ pulumi import azure:network/virtualWan:VirtualWan example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Network/virtualWans/testvwan

Constructors

Link copied to clipboard
fun VirtualWanArgs(allowBranchToBranchTraffic: Output<Boolean>? = null, disableVpnEncryption: Output<Boolean>? = null, location: Output<String>? = null, name: Output<String>? = null, office365LocalBreakoutCategory: Output<String>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null, type: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): VirtualWanArgs

Properties

Link copied to clipboard
val allowBranchToBranchTraffic: Output<Boolean>? = null

Boolean flag to specify whether branch to branch traffic is allowed. Defaults to true.

Link copied to clipboard
val disableVpnEncryption: Output<Boolean>? = null

Boolean flag to specify whether VPN encryption is disabled. Defaults to false.

Link copied to clipboard
val location: Output<String>? = null

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

Link copied to clipboard
val name: Output<String>? = null

Specifies the name of the Virtual WAN. Changing this forces a new resource to be created.

Link copied to clipboard

Specifies the Office365 local breakout category. Possible values include: Optimize, OptimizeAndAllow, All, None. Defaults to None.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the resource group in which to create the Virtual WAN. Changing this forces a new resource to be created.

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

A mapping of tags to assign to the Virtual WAN.

Link copied to clipboard
val type: Output<String>? = null

Specifies the Virtual WAN type. Possible Values include: Basic and Standard. Defaults to Standard.