azure-native-v2.network.VpnSite
Explore with Pulumi AI
VpnSite Resource. Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-11-01.
Other available API versions: 2018-07-01, 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
VpnSiteCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var vpnSite = new AzureNative.Network.VpnSite("vpnSite", new()
    {
        AddressSpace = new AzureNative.Network.Inputs.AddressSpaceArgs
        {
            AddressPrefixes = new[]
            {
                "10.0.0.0/16",
            },
        },
        IsSecuritySite = false,
        Location = "West US",
        O365Policy = new AzureNative.Network.Inputs.O365PolicyPropertiesArgs
        {
            BreakOutCategories = new AzureNative.Network.Inputs.O365BreakOutCategoryPoliciesArgs
            {
                Allow = true,
                Default = false,
                Optimize = true,
            },
        },
        ResourceGroupName = "rg1",
        Tags = 
        {
            { "key1", "value1" },
        },
        VirtualWan = new AzureNative.Network.Inputs.SubResourceArgs
        {
            Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualWANs/wan1",
        },
        VpnSiteLinks = new[]
        {
            new AzureNative.Network.Inputs.VpnSiteLinkArgs
            {
                BgpProperties = new AzureNative.Network.Inputs.VpnLinkBgpSettingsArgs
                {
                    Asn = 1234,
                    BgpPeeringAddress = "192.168.0.0",
                },
                Fqdn = "link1.vpnsite1.contoso.com",
                IpAddress = "50.50.50.56",
                LinkProperties = new AzureNative.Network.Inputs.VpnLinkProviderPropertiesArgs
                {
                    LinkProviderName = "vendor1",
                    LinkSpeedInMbps = 0,
                },
                Name = "vpnSiteLink1",
            },
        },
        VpnSiteName = "vpnSite1",
    });
});
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.NewVpnSite(ctx, "vpnSite", &network.VpnSiteArgs{
			AddressSpace: &network.AddressSpaceArgs{
				AddressPrefixes: pulumi.StringArray{
					pulumi.String("10.0.0.0/16"),
				},
			},
			IsSecuritySite: pulumi.Bool(false),
			Location:       pulumi.String("West US"),
			O365Policy: &network.O365PolicyPropertiesArgs{
				BreakOutCategories: &network.O365BreakOutCategoryPoliciesArgs{
					Allow:    pulumi.Bool(true),
					Default:  pulumi.Bool(false),
					Optimize: pulumi.Bool(true),
				},
			},
			ResourceGroupName: pulumi.String("rg1"),
			Tags: pulumi.StringMap{
				"key1": pulumi.String("value1"),
			},
			VirtualWan: &network.SubResourceArgs{
				Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualWANs/wan1"),
			},
			VpnSiteLinks: network.VpnSiteLinkArray{
				&network.VpnSiteLinkArgs{
					BgpProperties: &network.VpnLinkBgpSettingsArgs{
						Asn:               pulumi.Float64(1234),
						BgpPeeringAddress: pulumi.String("192.168.0.0"),
					},
					Fqdn:      pulumi.String("link1.vpnsite1.contoso.com"),
					IpAddress: pulumi.String("50.50.50.56"),
					LinkProperties: &network.VpnLinkProviderPropertiesArgs{
						LinkProviderName: pulumi.String("vendor1"),
						LinkSpeedInMbps:  pulumi.Int(0),
					},
					Name: pulumi.String("vpnSiteLink1"),
				},
			},
			VpnSiteName: pulumi.String("vpnSite1"),
		})
		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.network.VpnSite;
import com.pulumi.azurenative.network.VpnSiteArgs;
import com.pulumi.azurenative.network.inputs.AddressSpaceArgs;
import com.pulumi.azurenative.network.inputs.O365PolicyPropertiesArgs;
import com.pulumi.azurenative.network.inputs.O365BreakOutCategoryPoliciesArgs;
import com.pulumi.azurenative.network.inputs.SubResourceArgs;
import com.pulumi.azurenative.network.inputs.VpnSiteLinkArgs;
import com.pulumi.azurenative.network.inputs.VpnLinkBgpSettingsArgs;
import com.pulumi.azurenative.network.inputs.VpnLinkProviderPropertiesArgs;
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 vpnSite = new VpnSite("vpnSite", VpnSiteArgs.builder()
            .addressSpace(AddressSpaceArgs.builder()
                .addressPrefixes("10.0.0.0/16")
                .build())
            .isSecuritySite(false)
            .location("West US")
            .o365Policy(O365PolicyPropertiesArgs.builder()
                .breakOutCategories(O365BreakOutCategoryPoliciesArgs.builder()
                    .allow(true)
                    .default_(false)
                    .optimize(true)
                    .build())
                .build())
            .resourceGroupName("rg1")
            .tags(Map.of("key1", "value1"))
            .virtualWan(SubResourceArgs.builder()
                .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualWANs/wan1")
                .build())
            .vpnSiteLinks(VpnSiteLinkArgs.builder()
                .bgpProperties(VpnLinkBgpSettingsArgs.builder()
                    .asn(1234)
                    .bgpPeeringAddress("192.168.0.0")
                    .build())
                .fqdn("link1.vpnsite1.contoso.com")
                .ipAddress("50.50.50.56")
                .linkProperties(VpnLinkProviderPropertiesArgs.builder()
                    .linkProviderName("vendor1")
                    .linkSpeedInMbps(0)
                    .build())
                .name("vpnSiteLink1")
                .build())
            .vpnSiteName("vpnSite1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const vpnSite = new azure_native.network.VpnSite("vpnSite", {
    addressSpace: {
        addressPrefixes: ["10.0.0.0/16"],
    },
    isSecuritySite: false,
    location: "West US",
    o365Policy: {
        breakOutCategories: {
            allow: true,
            "default": false,
            optimize: true,
        },
    },
    resourceGroupName: "rg1",
    tags: {
        key1: "value1",
    },
    virtualWan: {
        id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualWANs/wan1",
    },
    vpnSiteLinks: [{
        bgpProperties: {
            asn: 1234,
            bgpPeeringAddress: "192.168.0.0",
        },
        fqdn: "link1.vpnsite1.contoso.com",
        ipAddress: "50.50.50.56",
        linkProperties: {
            linkProviderName: "vendor1",
            linkSpeedInMbps: 0,
        },
        name: "vpnSiteLink1",
    }],
    vpnSiteName: "vpnSite1",
});
import pulumi
import pulumi_azure_native as azure_native
vpn_site = azure_native.network.VpnSite("vpnSite",
    address_space={
        "address_prefixes": ["10.0.0.0/16"],
    },
    is_security_site=False,
    location="West US",
    o365_policy={
        "break_out_categories": {
            "allow": True,
            "default": False,
            "optimize": True,
        },
    },
    resource_group_name="rg1",
    tags={
        "key1": "value1",
    },
    virtual_wan={
        "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualWANs/wan1",
    },
    vpn_site_links=[{
        "bgp_properties": {
            "asn": 1234,
            "bgp_peering_address": "192.168.0.0",
        },
        "fqdn": "link1.vpnsite1.contoso.com",
        "ip_address": "50.50.50.56",
        "link_properties": {
            "link_provider_name": "vendor1",
            "link_speed_in_mbps": 0,
        },
        "name": "vpnSiteLink1",
    }],
    vpn_site_name="vpnSite1")
resources:
  vpnSite:
    type: azure-native:network:VpnSite
    properties:
      addressSpace:
        addressPrefixes:
          - 10.0.0.0/16
      isSecuritySite: false
      location: West US
      o365Policy:
        breakOutCategories:
          allow: true
          default: false
          optimize: true
      resourceGroupName: rg1
      tags:
        key1: value1
      virtualWan:
        id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualWANs/wan1
      vpnSiteLinks:
        - bgpProperties:
            asn: 1234
            bgpPeeringAddress: 192.168.0.0
          fqdn: link1.vpnsite1.contoso.com
          ipAddress: 50.50.50.56
          linkProperties:
            linkProviderName: vendor1
            linkSpeedInMbps: 0
          name: vpnSiteLink1
      vpnSiteName: vpnSite1
Create VpnSite Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VpnSite(name: string, args: VpnSiteArgs, opts?: CustomResourceOptions);@overload
def VpnSite(resource_name: str,
            args: VpnSiteArgs,
            opts: Optional[ResourceOptions] = None)
@overload
def VpnSite(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            resource_group_name: Optional[str] = None,
            location: Optional[str] = None,
            device_properties: Optional[DevicePropertiesArgs] = None,
            id: Optional[str] = None,
            ip_address: Optional[str] = None,
            is_security_site: Optional[bool] = None,
            address_space: Optional[AddressSpaceArgs] = None,
            o365_policy: Optional[O365PolicyPropertiesArgs] = None,
            bgp_properties: Optional[BgpSettingsArgs] = None,
            site_key: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            virtual_wan: Optional[SubResourceArgs] = None,
            vpn_site_links: Optional[Sequence[VpnSiteLinkArgs]] = None,
            vpn_site_name: Optional[str] = None)func NewVpnSite(ctx *Context, name string, args VpnSiteArgs, opts ...ResourceOption) (*VpnSite, error)public VpnSite(string name, VpnSiteArgs args, CustomResourceOptions? opts = null)
public VpnSite(String name, VpnSiteArgs args)
public VpnSite(String name, VpnSiteArgs args, CustomResourceOptions options)
type: azure-native:network:VpnSite
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 VpnSiteArgs
- 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 VpnSiteArgs
- 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 VpnSiteArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VpnSiteArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VpnSiteArgs
- 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 vpnSiteResource = new AzureNative.Network.VpnSite("vpnSiteResource", new()
{
    ResourceGroupName = "string",
    Location = "string",
    DeviceProperties = 
    {
        { "deviceModel", "string" },
        { "deviceVendor", "string" },
        { "linkSpeedInMbps", 0 },
    },
    Id = "string",
    IpAddress = "string",
    IsSecuritySite = false,
    AddressSpace = 
    {
        { "addressPrefixes", new[]
        {
            "string",
        } },
    },
    O365Policy = 
    {
        { "breakOutCategories", 
        {
            { "allow", false },
            { "default", false },
            { "optimize", false },
        } },
    },
    BgpProperties = 
    {
        { "asn", 0 },
        { "bgpPeeringAddress", "string" },
        { "bgpPeeringAddresses", new[]
        {
            
            {
                { "customBgpIpAddresses", new[]
                {
                    "string",
                } },
                { "ipconfigurationId", "string" },
            },
        } },
        { "peerWeight", 0 },
    },
    SiteKey = "string",
    Tags = 
    {
        { "string", "string" },
    },
    VirtualWan = 
    {
        { "id", "string" },
    },
    VpnSiteLinks = new[]
    {
        
        {
            { "bgpProperties", 
            {
                { "asn", 0 },
                { "bgpPeeringAddress", "string" },
            } },
            { "fqdn", "string" },
            { "id", "string" },
            { "ipAddress", "string" },
            { "linkProperties", 
            {
                { "linkProviderName", "string" },
                { "linkSpeedInMbps", 0 },
            } },
            { "name", "string" },
        },
    },
    VpnSiteName = "string",
});
example, err := network.NewVpnSite(ctx, "vpnSiteResource", &network.VpnSiteArgs{
	ResourceGroupName: "string",
	Location:          "string",
	DeviceProperties: map[string]interface{}{
		"deviceModel":     "string",
		"deviceVendor":    "string",
		"linkSpeedInMbps": 0,
	},
	Id:             "string",
	IpAddress:      "string",
	IsSecuritySite: false,
	AddressSpace: map[string]interface{}{
		"addressPrefixes": []string{
			"string",
		},
	},
	O365Policy: map[string]interface{}{
		"breakOutCategories": map[string]interface{}{
			"allow":    false,
			"default":  false,
			"optimize": false,
		},
	},
	BgpProperties: map[string]interface{}{
		"asn":               0,
		"bgpPeeringAddress": "string",
		"bgpPeeringAddresses": []map[string]interface{}{
			map[string]interface{}{
				"customBgpIpAddresses": []string{
					"string",
				},
				"ipconfigurationId": "string",
			},
		},
		"peerWeight": 0,
	},
	SiteKey: "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
	VirtualWan: map[string]interface{}{
		"id": "string",
	},
	VpnSiteLinks: []map[string]interface{}{
		map[string]interface{}{
			"bgpProperties": map[string]interface{}{
				"asn":               0,
				"bgpPeeringAddress": "string",
			},
			"fqdn":      "string",
			"id":        "string",
			"ipAddress": "string",
			"linkProperties": map[string]interface{}{
				"linkProviderName": "string",
				"linkSpeedInMbps":  0,
			},
			"name": "string",
		},
	},
	VpnSiteName: "string",
})
var vpnSiteResource = new VpnSite("vpnSiteResource", VpnSiteArgs.builder()
    .resourceGroupName("string")
    .location("string")
    .deviceProperties(Map.ofEntries(
        Map.entry("deviceModel", "string"),
        Map.entry("deviceVendor", "string"),
        Map.entry("linkSpeedInMbps", 0)
    ))
    .id("string")
    .ipAddress("string")
    .isSecuritySite(false)
    .addressSpace(Map.of("addressPrefixes", List.of("string")))
    .o365Policy(Map.of("breakOutCategories", Map.ofEntries(
        Map.entry("allow", false),
        Map.entry("default", false),
        Map.entry("optimize", false)
    )))
    .bgpProperties(Map.ofEntries(
        Map.entry("asn", 0),
        Map.entry("bgpPeeringAddress", "string"),
        Map.entry("bgpPeeringAddresses", List.of(Map.ofEntries(
            Map.entry("customBgpIpAddresses", List.of("string")),
            Map.entry("ipconfigurationId", "string")
        ))),
        Map.entry("peerWeight", 0)
    ))
    .siteKey("string")
    .tags(Map.of("string", "string"))
    .virtualWan(Map.of("id", "string"))
    .vpnSiteLinks(List.of(Map.ofEntries(
        Map.entry("bgpProperties", Map.ofEntries(
            Map.entry("asn", 0),
            Map.entry("bgpPeeringAddress", "string")
        )),
        Map.entry("fqdn", "string"),
        Map.entry("id", "string"),
        Map.entry("ipAddress", "string"),
        Map.entry("linkProperties", Map.ofEntries(
            Map.entry("linkProviderName", "string"),
            Map.entry("linkSpeedInMbps", 0)
        )),
        Map.entry("name", "string")
    )))
    .vpnSiteName("string")
    .build());
vpn_site_resource = azure_native.network.VpnSite("vpnSiteResource",
    resource_group_name=string,
    location=string,
    device_properties={
        deviceModel: string,
        deviceVendor: string,
        linkSpeedInMbps: 0,
    },
    id=string,
    ip_address=string,
    is_security_site=False,
    address_space={
        addressPrefixes: [string],
    },
    o365_policy={
        breakOutCategories: {
            allow: False,
            default: False,
            optimize: False,
        },
    },
    bgp_properties={
        asn: 0,
        bgpPeeringAddress: string,
        bgpPeeringAddresses: [{
            customBgpIpAddresses: [string],
            ipconfigurationId: string,
        }],
        peerWeight: 0,
    },
    site_key=string,
    tags={
        string: string,
    },
    virtual_wan={
        id: string,
    },
    vpn_site_links=[{
        bgpProperties: {
            asn: 0,
            bgpPeeringAddress: string,
        },
        fqdn: string,
        id: string,
        ipAddress: string,
        linkProperties: {
            linkProviderName: string,
            linkSpeedInMbps: 0,
        },
        name: string,
    }],
    vpn_site_name=string)
const vpnSiteResource = new azure_native.network.VpnSite("vpnSiteResource", {
    resourceGroupName: "string",
    location: "string",
    deviceProperties: {
        deviceModel: "string",
        deviceVendor: "string",
        linkSpeedInMbps: 0,
    },
    id: "string",
    ipAddress: "string",
    isSecuritySite: false,
    addressSpace: {
        addressPrefixes: ["string"],
    },
    o365Policy: {
        breakOutCategories: {
            allow: false,
            "default": false,
            optimize: false,
        },
    },
    bgpProperties: {
        asn: 0,
        bgpPeeringAddress: "string",
        bgpPeeringAddresses: [{
            customBgpIpAddresses: ["string"],
            ipconfigurationId: "string",
        }],
        peerWeight: 0,
    },
    siteKey: "string",
    tags: {
        string: "string",
    },
    virtualWan: {
        id: "string",
    },
    vpnSiteLinks: [{
        bgpProperties: {
            asn: 0,
            bgpPeeringAddress: "string",
        },
        fqdn: "string",
        id: "string",
        ipAddress: "string",
        linkProperties: {
            linkProviderName: "string",
            linkSpeedInMbps: 0,
        },
        name: "string",
    }],
    vpnSiteName: "string",
});
type: azure-native:network:VpnSite
properties:
    addressSpace:
        addressPrefixes:
            - string
    bgpProperties:
        asn: 0
        bgpPeeringAddress: string
        bgpPeeringAddresses:
            - customBgpIpAddresses:
                - string
              ipconfigurationId: string
        peerWeight: 0
    deviceProperties:
        deviceModel: string
        deviceVendor: string
        linkSpeedInMbps: 0
    id: string
    ipAddress: string
    isSecuritySite: false
    location: string
    o365Policy:
        breakOutCategories:
            allow: false
            default: false
            optimize: false
    resourceGroupName: string
    siteKey: string
    tags:
        string: string
    virtualWan:
        id: string
    vpnSiteLinks:
        - bgpProperties:
            asn: 0
            bgpPeeringAddress: string
          fqdn: string
          id: string
          ipAddress: string
          linkProperties:
            linkProviderName: string
            linkSpeedInMbps: 0
          name: string
    vpnSiteName: string
VpnSite 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 VpnSite resource accepts the following input properties:
- ResourceGroup stringName 
- The resource group name of the VpnSite.
- AddressSpace Pulumi.Azure Native. Network. Inputs. Address Space 
- The AddressSpace that contains an array of IP address ranges.
- BgpProperties Pulumi.Azure Native. Network. Inputs. Bgp Settings 
- The set of bgp properties.
- DeviceProperties Pulumi.Azure Native. Network. Inputs. Device Properties 
- The device properties.
- Id string
- Resource ID.
- IpAddress string
- The ip-address for the vpn-site.
- IsSecurity boolSite 
- IsSecuritySite flag.
- Location string
- Resource location.
- O365Policy
Pulumi.Azure Native. Network. Inputs. O365Policy Properties 
- Office365 Policy.
- SiteKey string
- The key for vpn-site that can be used for connections.
- Dictionary<string, string>
- Resource tags.
- VirtualWan Pulumi.Azure Native. Network. Inputs. Sub Resource 
- The VirtualWAN to which the vpnSite belongs.
- VpnSite List<Pulumi.Links Azure Native. Network. Inputs. Vpn Site Link> 
- List of all vpn site links.
- VpnSite stringName 
- The name of the VpnSite being created or updated.
- ResourceGroup stringName 
- The resource group name of the VpnSite.
- AddressSpace AddressSpace Args 
- The AddressSpace that contains an array of IP address ranges.
- BgpProperties BgpSettings Args 
- The set of bgp properties.
- DeviceProperties DeviceProperties Args 
- The device properties.
- Id string
- Resource ID.
- IpAddress string
- The ip-address for the vpn-site.
- IsSecurity boolSite 
- IsSecuritySite flag.
- Location string
- Resource location.
- O365Policy
O365PolicyProperties Args 
- Office365 Policy.
- SiteKey string
- The key for vpn-site that can be used for connections.
- map[string]string
- Resource tags.
- VirtualWan SubResource Args 
- The VirtualWAN to which the vpnSite belongs.
- VpnSite []VpnLinks Site Link Args 
- List of all vpn site links.
- VpnSite stringName 
- The name of the VpnSite being created or updated.
- resourceGroup StringName 
- The resource group name of the VpnSite.
- addressSpace AddressSpace 
- The AddressSpace that contains an array of IP address ranges.
- bgpProperties BgpSettings 
- The set of bgp properties.
- deviceProperties DeviceProperties 
- The device properties.
- id String
- Resource ID.
- ipAddress String
- The ip-address for the vpn-site.
- isSecurity BooleanSite 
- IsSecuritySite flag.
- location String
- Resource location.
- o365Policy
O365PolicyProperties 
- Office365 Policy.
- siteKey String
- The key for vpn-site that can be used for connections.
- Map<String,String>
- Resource tags.
- virtualWan SubResource 
- The VirtualWAN to which the vpnSite belongs.
- vpnSite List<VpnLinks Site Link> 
- List of all vpn site links.
- vpnSite StringName 
- The name of the VpnSite being created or updated.
- resourceGroup stringName 
- The resource group name of the VpnSite.
- addressSpace AddressSpace 
- The AddressSpace that contains an array of IP address ranges.
- bgpProperties BgpSettings 
- The set of bgp properties.
- deviceProperties DeviceProperties 
- The device properties.
- id string
- Resource ID.
- ipAddress string
- The ip-address for the vpn-site.
- isSecurity booleanSite 
- IsSecuritySite flag.
- location string
- Resource location.
- o365Policy
O365PolicyProperties 
- Office365 Policy.
- siteKey string
- The key for vpn-site that can be used for connections.
- {[key: string]: string}
- Resource tags.
- virtualWan SubResource 
- The VirtualWAN to which the vpnSite belongs.
- vpnSite VpnLinks Site Link[] 
- List of all vpn site links.
- vpnSite stringName 
- The name of the VpnSite being created or updated.
- resource_group_ strname 
- The resource group name of the VpnSite.
- address_space AddressSpace Args 
- The AddressSpace that contains an array of IP address ranges.
- bgp_properties BgpSettings Args 
- The set of bgp properties.
- device_properties DeviceProperties Args 
- The device properties.
- id str
- Resource ID.
- ip_address str
- The ip-address for the vpn-site.
- is_security_ boolsite 
- IsSecuritySite flag.
- location str
- Resource location.
- o365_policy O365PolicyProperties Args 
- Office365 Policy.
- site_key str
- The key for vpn-site that can be used for connections.
- Mapping[str, str]
- Resource tags.
- virtual_wan SubResource Args 
- The VirtualWAN to which the vpnSite belongs.
- vpn_site_ Sequence[Vpnlinks Site Link Args] 
- List of all vpn site links.
- vpn_site_ strname 
- The name of the VpnSite being created or updated.
- resourceGroup StringName 
- The resource group name of the VpnSite.
- addressSpace Property Map
- The AddressSpace that contains an array of IP address ranges.
- bgpProperties Property Map
- The set of bgp properties.
- deviceProperties Property Map
- The device properties.
- id String
- Resource ID.
- ipAddress String
- The ip-address for the vpn-site.
- isSecurity BooleanSite 
- IsSecuritySite flag.
- location String
- Resource location.
- o365Policy Property Map
- Office365 Policy.
- siteKey String
- The key for vpn-site that can be used for connections.
- Map<String>
- Resource tags.
- virtualWan Property Map
- The VirtualWAN to which the vpnSite belongs.
- vpnSite List<Property Map>Links 
- List of all vpn site links.
- vpnSite StringName 
- The name of the VpnSite being created or updated.
Outputs
All input properties are implicitly available as output properties. Additionally, the VpnSite resource produces the following output properties:
- 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.
- Name string
- Resource name.
- ProvisioningState string
- The provisioning state of the VPN site resource.
- Type string
- Resource type.
- 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.
- Name string
- Resource name.
- ProvisioningState string
- The provisioning state of the VPN site resource.
- Type string
- Resource type.
- 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.
- name String
- Resource name.
- provisioningState String
- The provisioning state of the VPN site resource.
- type String
- Resource type.
- 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.
- name string
- Resource name.
- provisioningState string
- The provisioning state of the VPN site resource.
- type string
- Resource type.
- 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.
- name str
- Resource name.
- provisioning_state str
- The provisioning state of the VPN site resource.
- type str
- Resource type.
- 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.
- name String
- Resource name.
- provisioningState String
- The provisioning state of the VPN site resource.
- type String
- Resource type.
Supporting Types
AddressSpace, AddressSpaceArgs    
- AddressPrefixes List<string>
- A list of address blocks reserved for this virtual network in CIDR notation.
- AddressPrefixes []string
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes List<String>
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes string[]
- A list of address blocks reserved for this virtual network in CIDR notation.
- address_prefixes Sequence[str]
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes List<String>
- A list of address blocks reserved for this virtual network in CIDR notation.
AddressSpaceResponse, AddressSpaceResponseArgs      
- AddressPrefixes List<string>
- A list of address blocks reserved for this virtual network in CIDR notation.
- AddressPrefixes []string
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes List<String>
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes string[]
- A list of address blocks reserved for this virtual network in CIDR notation.
- address_prefixes Sequence[str]
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes List<String>
- A list of address blocks reserved for this virtual network in CIDR notation.
BgpSettings, BgpSettingsArgs    
- Asn double
- The BGP speaker's ASN.
- BgpPeering stringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- BgpPeering List<Pulumi.Addresses Azure Native. Network. Inputs. IPConfiguration Bgp Peering Address> 
- BGP peering address with IP configuration ID for virtual network gateway.
- PeerWeight int
- The weight added to routes learned from this BGP speaker.
- Asn float64
- The BGP speaker's ASN.
- BgpPeering stringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- BgpPeering []IPConfigurationAddresses Bgp Peering Address 
- BGP peering address with IP configuration ID for virtual network gateway.
- PeerWeight int
- The weight added to routes learned from this BGP speaker.
- asn Double
- The BGP speaker's ASN.
- bgpPeering StringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- bgpPeering List<IPConfigurationAddresses Bgp Peering Address> 
- BGP peering address with IP configuration ID for virtual network gateway.
- peerWeight Integer
- The weight added to routes learned from this BGP speaker.
- asn number
- The BGP speaker's ASN.
- bgpPeering stringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- bgpPeering IPConfigurationAddresses Bgp Peering Address[] 
- BGP peering address with IP configuration ID for virtual network gateway.
- peerWeight number
- The weight added to routes learned from this BGP speaker.
- asn float
- The BGP speaker's ASN.
- bgp_peering_ straddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- bgp_peering_ Sequence[IPConfigurationaddresses Bgp Peering Address] 
- BGP peering address with IP configuration ID for virtual network gateway.
- peer_weight int
- The weight added to routes learned from this BGP speaker.
- asn Number
- The BGP speaker's ASN.
- bgpPeering StringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- bgpPeering List<Property Map>Addresses 
- BGP peering address with IP configuration ID for virtual network gateway.
- peerWeight Number
- The weight added to routes learned from this BGP speaker.
BgpSettingsResponse, BgpSettingsResponseArgs      
- Asn double
- The BGP speaker's ASN.
- BgpPeering stringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- BgpPeering List<Pulumi.Addresses Azure Native. Network. Inputs. IPConfiguration Bgp Peering Address Response> 
- BGP peering address with IP configuration ID for virtual network gateway.
- PeerWeight int
- The weight added to routes learned from this BGP speaker.
- Asn float64
- The BGP speaker's ASN.
- BgpPeering stringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- BgpPeering []IPConfigurationAddresses Bgp Peering Address Response 
- BGP peering address with IP configuration ID for virtual network gateway.
- PeerWeight int
- The weight added to routes learned from this BGP speaker.
- asn Double
- The BGP speaker's ASN.
- bgpPeering StringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- bgpPeering List<IPConfigurationAddresses Bgp Peering Address Response> 
- BGP peering address with IP configuration ID for virtual network gateway.
- peerWeight Integer
- The weight added to routes learned from this BGP speaker.
- asn number
- The BGP speaker's ASN.
- bgpPeering stringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- bgpPeering IPConfigurationAddresses Bgp Peering Address Response[] 
- BGP peering address with IP configuration ID for virtual network gateway.
- peerWeight number
- The weight added to routes learned from this BGP speaker.
- asn float
- The BGP speaker's ASN.
- bgp_peering_ straddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- bgp_peering_ Sequence[IPConfigurationaddresses Bgp Peering Address Response] 
- BGP peering address with IP configuration ID for virtual network gateway.
- peer_weight int
- The weight added to routes learned from this BGP speaker.
- asn Number
- The BGP speaker's ASN.
- bgpPeering StringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- bgpPeering List<Property Map>Addresses 
- BGP peering address with IP configuration ID for virtual network gateway.
- peerWeight Number
- The weight added to routes learned from this BGP speaker.
DeviceProperties, DevicePropertiesArgs    
- DeviceModel string
- Model of the device.
- DeviceVendor string
- Name of the device Vendor.
- LinkSpeed intIn Mbps 
- Link speed.
- DeviceModel string
- Model of the device.
- DeviceVendor string
- Name of the device Vendor.
- LinkSpeed intIn Mbps 
- Link speed.
- deviceModel String
- Model of the device.
- deviceVendor String
- Name of the device Vendor.
- linkSpeed IntegerIn Mbps 
- Link speed.
- deviceModel string
- Model of the device.
- deviceVendor string
- Name of the device Vendor.
- linkSpeed numberIn Mbps 
- Link speed.
- device_model str
- Model of the device.
- device_vendor str
- Name of the device Vendor.
- link_speed_ intin_ mbps 
- Link speed.
- deviceModel String
- Model of the device.
- deviceVendor String
- Name of the device Vendor.
- linkSpeed NumberIn Mbps 
- Link speed.
DevicePropertiesResponse, DevicePropertiesResponseArgs      
- DeviceModel string
- Model of the device.
- DeviceVendor string
- Name of the device Vendor.
- LinkSpeed intIn Mbps 
- Link speed.
- DeviceModel string
- Model of the device.
- DeviceVendor string
- Name of the device Vendor.
- LinkSpeed intIn Mbps 
- Link speed.
- deviceModel String
- Model of the device.
- deviceVendor String
- Name of the device Vendor.
- linkSpeed IntegerIn Mbps 
- Link speed.
- deviceModel string
- Model of the device.
- deviceVendor string
- Name of the device Vendor.
- linkSpeed numberIn Mbps 
- Link speed.
- device_model str
- Model of the device.
- device_vendor str
- Name of the device Vendor.
- link_speed_ intin_ mbps 
- Link speed.
- deviceModel String
- Model of the device.
- deviceVendor String
- Name of the device Vendor.
- linkSpeed NumberIn Mbps 
- Link speed.
IPConfigurationBgpPeeringAddress, IPConfigurationBgpPeeringAddressArgs        
- CustomBgp List<string>Ip Addresses 
- The list of custom BGP peering addresses which belong to IP configuration.
- IpconfigurationId string
- The ID of IP configuration which belongs to gateway.
- CustomBgp []stringIp Addresses 
- The list of custom BGP peering addresses which belong to IP configuration.
- IpconfigurationId string
- The ID of IP configuration which belongs to gateway.
- customBgp List<String>Ip Addresses 
- The list of custom BGP peering addresses which belong to IP configuration.
- ipconfigurationId String
- The ID of IP configuration which belongs to gateway.
- customBgp string[]Ip Addresses 
- The list of custom BGP peering addresses which belong to IP configuration.
- ipconfigurationId string
- The ID of IP configuration which belongs to gateway.
- custom_bgp_ Sequence[str]ip_ addresses 
- The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration_id str
- The ID of IP configuration which belongs to gateway.
- customBgp List<String>Ip Addresses 
- The list of custom BGP peering addresses which belong to IP configuration.
- ipconfigurationId String
- The ID of IP configuration which belongs to gateway.
IPConfigurationBgpPeeringAddressResponse, IPConfigurationBgpPeeringAddressResponseArgs          
- DefaultBgp List<string>Ip Addresses 
- The list of default BGP peering addresses which belong to IP configuration.
- TunnelIp List<string>Addresses 
- The list of tunnel public IP addresses which belong to IP configuration.
- CustomBgp List<string>Ip Addresses 
- The list of custom BGP peering addresses which belong to IP configuration.
- IpconfigurationId string
- The ID of IP configuration which belongs to gateway.
- DefaultBgp []stringIp Addresses 
- The list of default BGP peering addresses which belong to IP configuration.
- TunnelIp []stringAddresses 
- The list of tunnel public IP addresses which belong to IP configuration.
- CustomBgp []stringIp Addresses 
- The list of custom BGP peering addresses which belong to IP configuration.
- IpconfigurationId string
- The ID of IP configuration which belongs to gateway.
- defaultBgp List<String>Ip Addresses 
- The list of default BGP peering addresses which belong to IP configuration.
- tunnelIp List<String>Addresses 
- The list of tunnel public IP addresses which belong to IP configuration.
- customBgp List<String>Ip Addresses 
- The list of custom BGP peering addresses which belong to IP configuration.
- ipconfigurationId String
- The ID of IP configuration which belongs to gateway.
- defaultBgp string[]Ip Addresses 
- The list of default BGP peering addresses which belong to IP configuration.
- tunnelIp string[]Addresses 
- The list of tunnel public IP addresses which belong to IP configuration.
- customBgp string[]Ip Addresses 
- The list of custom BGP peering addresses which belong to IP configuration.
- ipconfigurationId string
- The ID of IP configuration which belongs to gateway.
- default_bgp_ Sequence[str]ip_ addresses 
- The list of default BGP peering addresses which belong to IP configuration.
- tunnel_ip_ Sequence[str]addresses 
- The list of tunnel public IP addresses which belong to IP configuration.
- custom_bgp_ Sequence[str]ip_ addresses 
- The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration_id str
- The ID of IP configuration which belongs to gateway.
- defaultBgp List<String>Ip Addresses 
- The list of default BGP peering addresses which belong to IP configuration.
- tunnelIp List<String>Addresses 
- The list of tunnel public IP addresses which belong to IP configuration.
- customBgp List<String>Ip Addresses 
- The list of custom BGP peering addresses which belong to IP configuration.
- ipconfigurationId String
- The ID of IP configuration which belongs to gateway.
O365BreakOutCategoryPolicies, O365BreakOutCategoryPoliciesArgs        
O365BreakOutCategoryPoliciesResponse, O365BreakOutCategoryPoliciesResponseArgs          
O365PolicyProperties, O365PolicyPropertiesArgs    
- BreakOut Pulumi.Categories Azure Native. Network. Inputs. O365Break Out Category Policies 
- Office365 breakout categories.
- BreakOut O365BreakCategories Out Category Policies 
- Office365 breakout categories.
- breakOut O365BreakCategories Out Category Policies 
- Office365 breakout categories.
- breakOut O365BreakCategories Out Category Policies 
- Office365 breakout categories.
- break_out_ O365Breakcategories Out Category Policies 
- Office365 breakout categories.
- breakOut Property MapCategories 
- Office365 breakout categories.
O365PolicyPropertiesResponse, O365PolicyPropertiesResponseArgs      
- BreakOut Pulumi.Categories Azure Native. Network. Inputs. O365Break Out Category Policies Response 
- Office365 breakout categories.
- BreakOut O365BreakCategories Out Category Policies Response 
- Office365 breakout categories.
- breakOut O365BreakCategories Out Category Policies Response 
- Office365 breakout categories.
- breakOut O365BreakCategories Out Category Policies Response 
- Office365 breakout categories.
- break_out_ O365Breakcategories Out Category Policies Response 
- Office365 breakout categories.
- breakOut Property MapCategories 
- Office365 breakout categories.
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 string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
VpnLinkBgpSettings, VpnLinkBgpSettingsArgs        
- Asn double
- The BGP speaker's ASN.
- BgpPeering stringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- Asn float64
- The BGP speaker's ASN.
- BgpPeering stringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- asn Double
- The BGP speaker's ASN.
- bgpPeering StringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- asn number
- The BGP speaker's ASN.
- bgpPeering stringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- asn float
- The BGP speaker's ASN.
- bgp_peering_ straddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- asn Number
- The BGP speaker's ASN.
- bgpPeering StringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
VpnLinkBgpSettingsResponse, VpnLinkBgpSettingsResponseArgs          
- Asn double
- The BGP speaker's ASN.
- BgpPeering stringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- Asn float64
- The BGP speaker's ASN.
- BgpPeering stringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- asn Double
- The BGP speaker's ASN.
- bgpPeering StringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- asn number
- The BGP speaker's ASN.
- bgpPeering stringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- asn float
- The BGP speaker's ASN.
- bgp_peering_ straddress 
- The BGP peering address and BGP identifier of this BGP speaker.
- asn Number
- The BGP speaker's ASN.
- bgpPeering StringAddress 
- The BGP peering address and BGP identifier of this BGP speaker.
VpnLinkProviderProperties, VpnLinkProviderPropertiesArgs        
- LinkProvider stringName 
- Name of the link provider.
- LinkSpeed intIn Mbps 
- Link speed.
- LinkProvider stringName 
- Name of the link provider.
- LinkSpeed intIn Mbps 
- Link speed.
- linkProvider StringName 
- Name of the link provider.
- linkSpeed IntegerIn Mbps 
- Link speed.
- linkProvider stringName 
- Name of the link provider.
- linkSpeed numberIn Mbps 
- Link speed.
- link_provider_ strname 
- Name of the link provider.
- link_speed_ intin_ mbps 
- Link speed.
- linkProvider StringName 
- Name of the link provider.
- linkSpeed NumberIn Mbps 
- Link speed.
VpnLinkProviderPropertiesResponse, VpnLinkProviderPropertiesResponseArgs          
- LinkProvider stringName 
- Name of the link provider.
- LinkSpeed intIn Mbps 
- Link speed.
- LinkProvider stringName 
- Name of the link provider.
- LinkSpeed intIn Mbps 
- Link speed.
- linkProvider StringName 
- Name of the link provider.
- linkSpeed IntegerIn Mbps 
- Link speed.
- linkProvider stringName 
- Name of the link provider.
- linkSpeed numberIn Mbps 
- Link speed.
- link_provider_ strname 
- Name of the link provider.
- link_speed_ intin_ mbps 
- Link speed.
- linkProvider StringName 
- Name of the link provider.
- linkSpeed NumberIn Mbps 
- Link speed.
VpnSiteLink, VpnSiteLinkArgs      
- BgpProperties Pulumi.Azure Native. Network. Inputs. Vpn Link Bgp Settings 
- The set of bgp properties.
- Fqdn string
- FQDN of vpn-site-link.
- Id string
- Resource ID.
- IpAddress string
- The ip-address for the vpn-site-link.
- LinkProperties Pulumi.Azure Native. Network. Inputs. Vpn Link Provider Properties 
- The link provider properties.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- BgpProperties VpnLink Bgp Settings 
- The set of bgp properties.
- Fqdn string
- FQDN of vpn-site-link.
- Id string
- Resource ID.
- IpAddress string
- The ip-address for the vpn-site-link.
- LinkProperties VpnLink Provider Properties 
- The link provider properties.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- bgpProperties VpnLink Bgp Settings 
- The set of bgp properties.
- fqdn String
- FQDN of vpn-site-link.
- id String
- Resource ID.
- ipAddress String
- The ip-address for the vpn-site-link.
- linkProperties VpnLink Provider Properties 
- The link provider properties.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- bgpProperties VpnLink Bgp Settings 
- The set of bgp properties.
- fqdn string
- FQDN of vpn-site-link.
- id string
- Resource ID.
- ipAddress string
- The ip-address for the vpn-site-link.
- linkProperties VpnLink Provider Properties 
- The link provider properties.
- name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- bgp_properties VpnLink Bgp Settings 
- The set of bgp properties.
- fqdn str
- FQDN of vpn-site-link.
- id str
- Resource ID.
- ip_address str
- The ip-address for the vpn-site-link.
- link_properties VpnLink Provider Properties 
- The link provider properties.
- name str
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- bgpProperties Property Map
- The set of bgp properties.
- fqdn String
- FQDN of vpn-site-link.
- id String
- Resource ID.
- ipAddress String
- The ip-address for the vpn-site-link.
- linkProperties Property Map
- The link provider properties.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
VpnSiteLinkResponse, VpnSiteLinkResponseArgs        
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- ProvisioningState string
- The provisioning state of the VPN site link resource.
- Type string
- Resource type.
- BgpProperties Pulumi.Azure Native. Network. Inputs. Vpn Link Bgp Settings Response 
- The set of bgp properties.
- Fqdn string
- FQDN of vpn-site-link.
- Id string
- Resource ID.
- IpAddress string
- The ip-address for the vpn-site-link.
- LinkProperties Pulumi.Azure Native. Network. Inputs. Vpn Link Provider Properties Response 
- The link provider properties.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- ProvisioningState string
- The provisioning state of the VPN site link resource.
- Type string
- Resource type.
- BgpProperties VpnLink Bgp Settings Response 
- The set of bgp properties.
- Fqdn string
- FQDN of vpn-site-link.
- Id string
- Resource ID.
- IpAddress string
- The ip-address for the vpn-site-link.
- LinkProperties VpnLink Provider Properties Response 
- The link provider properties.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- provisioningState String
- The provisioning state of the VPN site link resource.
- type String
- Resource type.
- bgpProperties VpnLink Bgp Settings Response 
- The set of bgp properties.
- fqdn String
- FQDN of vpn-site-link.
- id String
- Resource ID.
- ipAddress String
- The ip-address for the vpn-site-link.
- linkProperties VpnLink Provider Properties Response 
- The link provider properties.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- provisioningState string
- The provisioning state of the VPN site link resource.
- type string
- Resource type.
- bgpProperties VpnLink Bgp Settings Response 
- The set of bgp properties.
- fqdn string
- FQDN of vpn-site-link.
- id string
- Resource ID.
- ipAddress string
- The ip-address for the vpn-site-link.
- linkProperties VpnLink Provider Properties Response 
- The link provider properties.
- name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- provisioning_state str
- The provisioning state of the VPN site link resource.
- type str
- Resource type.
- bgp_properties VpnLink Bgp Settings Response 
- The set of bgp properties.
- fqdn str
- FQDN of vpn-site-link.
- id str
- Resource ID.
- ip_address str
- The ip-address for the vpn-site-link.
- link_properties VpnLink Provider Properties Response 
- The link provider properties.
- name str
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- provisioningState String
- The provisioning state of the VPN site link resource.
- type String
- Resource type.
- bgpProperties Property Map
- The set of bgp properties.
- fqdn String
- FQDN of vpn-site-link.
- id String
- Resource ID.
- ipAddress String
- The ip-address for the vpn-site-link.
- linkProperties Property Map
- The link provider properties.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:network:VpnSite vpnSite1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName} 
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