azure-native.network.VpnSite
Explore with Pulumi AI
VpnSite Resource. API Version: 2020-11-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"
"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.O365PolicyPropertiesResponse{
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.VpnSiteLinkArgs{
{
BgpProperties: {
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: {
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 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(Map.of("addressPrefixes", "10.0.0.0/16"))
.isSecuritySite(false)
.location("West US")
.o365Policy(Map.of("breakOutCategories", Map.ofEntries(
Map.entry("allow", true),
Map.entry("default", false),
Map.entry("optimize", true)
)))
.resourceGroupName("rg1")
.tags(Map.of("key1", "value1"))
.virtualWan(Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualWANs/wan1"))
.vpnSiteLinks(Map.ofEntries(
Map.entry("bgpProperties", Map.ofEntries(
Map.entry("asn", 1234),
Map.entry("bgpPeeringAddress", "192.168.0.0")
)),
Map.entry("fqdn", "link1.vpnsite1.contoso.com"),
Map.entry("ipAddress", "50.50.50.56"),
Map.entry("linkProperties", Map.ofEntries(
Map.entry("linkProviderName", "vendor1"),
Map.entry("linkSpeedInMbps", 0)
)),
Map.entry("name", "vpnSiteLink1")
))
.vpnSiteName("vpnSite1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
vpn_site = azure_native.network.VpnSite("vpnSite",
address_space=azure_native.network.AddressSpaceArgs(
address_prefixes=["10.0.0.0/16"],
),
is_security_site=False,
location="West US",
o365_policy=azure_native.network.O365PolicyPropertiesResponseArgs(
break_out_categories=azure_native.network.O365BreakOutCategoryPoliciesArgs(
allow=True,
default=False,
optimize=True,
),
),
resource_group_name="rg1",
tags={
"key1": "value1",
},
virtual_wan=azure_native.network.SubResourceArgs(
id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualWANs/wan1",
),
vpn_site_links=[{
"bgpProperties": azure_native.network.VpnLinkBgpSettingsArgs(
asn=1234,
bgp_peering_address="192.168.0.0",
),
"fqdn": "link1.vpnsite1.contoso.com",
"ipAddress": "50.50.50.56",
"linkProperties": azure_native.network.VpnLinkProviderPropertiesArgs(
link_provider_name="vendor1",
link_speed_in_mbps=0,
),
"name": "vpnSiteLink1",
}],
vpn_site_name="vpnSite1")
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",
});
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(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.id("string")
.ipAddress("string")
.isSecuritySite(false)
.addressSpace(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.o365Policy(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.bgpProperties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.siteKey("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.virtualWan(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.vpnSiteLinks(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.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
The VpnSite resource accepts the following input properties:
- Resource
Group stringName - The resource group name of the VpnSite.
- Address
Space Pulumi.Azure Native. Network. Inputs. Address Space - The AddressSpace that contains an array of IP address ranges.
- Bgp
Properties Pulumi.Azure Native. Network. Inputs. Bgp Settings - The set of bgp properties.
- Device
Properties Pulumi.Azure Native. Network. Inputs. Device Properties - The device properties.
- Id string
- Resource ID.
- Ip
Address string - The ip-address for the vpn-site.
- Is
Security boolSite - IsSecuritySite flag.
- Location string
- Resource location.
- O365Policy
Pulumi.
Azure Native. Network. Inputs. O365Policy Properties - Office365 Policy.
- Site
Key string - The key for vpn-site that can be used for connections.
- Dictionary<string, string>
- Resource tags.
- Virtual
Wan Pulumi.Azure Native. Network. Inputs. Sub Resource - The VirtualWAN to which the vpnSite belongs.
- Vpn
Site List<Pulumi.Links Azure Native. Network. Inputs. Vpn Site Link> - List of all vpn site links.
- Vpn
Site stringName - The name of the VpnSite being created or updated.
- Resource
Group stringName - 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 string
- Resource ID.
- Ip
Address string - The ip-address for the vpn-site.
- Is
Security boolSite - IsSecuritySite flag.
- Location string
- Resource location.
- O365Policy
O365Policy
Properties Args - Office365 Policy.
- Site
Key string - The key for vpn-site that can be used for connections.
- map[string]string
- Resource tags.
- Virtual
Wan SubResource Args - The VirtualWAN to which the vpnSite belongs.
- Vpn
Site []VpnLinks Site Link Args - List of all vpn site links.
- Vpn
Site stringName - The name of the VpnSite being created or updated.
- resource
Group StringName - The resource group name of the VpnSite.
- address
Space AddressSpace - The AddressSpace that contains an array of IP address ranges.
- bgp
Properties BgpSettings - The set of bgp properties.
- device
Properties DeviceProperties - The device properties.
- id String
- Resource ID.
- ip
Address String - The ip-address for the vpn-site.
- is
Security BooleanSite - IsSecuritySite flag.
- location String
- Resource location.
- o365Policy
O365Policy
Properties - Office365 Policy.
- site
Key String - The key for vpn-site that can be used for connections.
- Map<String,String>
- Resource tags.
- virtual
Wan SubResource - The VirtualWAN to which the vpnSite belongs.
- vpn
Site List<VpnLinks Site Link> - List of all vpn site links.
- vpn
Site StringName - The name of the VpnSite being created or updated.
- resource
Group stringName - The resource group name of the VpnSite.
- address
Space AddressSpace - The AddressSpace that contains an array of IP address ranges.
- bgp
Properties BgpSettings - The set of bgp properties.
- device
Properties DeviceProperties - The device properties.
- id string
- Resource ID.
- ip
Address string - The ip-address for the vpn-site.
- is
Security booleanSite - IsSecuritySite flag.
- location string
- Resource location.
- o365Policy
O365Policy
Properties - Office365 Policy.
- site
Key string - The key for vpn-site that can be used for connections.
- {[key: string]: string}
- Resource tags.
- virtual
Wan SubResource - The VirtualWAN to which the vpnSite belongs.
- vpn
Site VpnLinks Site Link[] - List of all vpn site links.
- vpn
Site 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.
- resource
Group StringName - The resource group name of the VpnSite.
- address
Space Property Map - The AddressSpace that contains an array of IP address ranges.
- bgp
Properties Property Map - The set of bgp properties.
- device
Properties Property Map - The device properties.
- id String
- Resource ID.
- ip
Address String - The ip-address for the vpn-site.
- is
Security BooleanSite - IsSecuritySite flag.
- location String
- Resource location.
- o365Policy Property Map
- Office365 Policy.
- site
Key String - The key for vpn-site that can be used for connections.
- Map<String>
- Resource tags.
- virtual
Wan Property Map - The VirtualWAN to which the vpnSite belongs.
- vpn
Site List<Property Map>Links - List of all vpn site links.
- vpn
Site 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.
- Provisioning
State 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.
- Provisioning
State 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.
- provisioning
State 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.
- provisioning
State 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.
- provisioning
State String - The provisioning state of the VPN site resource.
- type String
- Resource type.
Supporting Types
AddressSpace, AddressSpaceArgs
- Address
Prefixes List<string> - A list of address blocks reserved for this virtual network in CIDR notation.
- Address
Prefixes []string - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes List<String> - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes 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.
- address
Prefixes List<String> - A list of address blocks reserved for this virtual network in CIDR notation.
AddressSpaceResponse, AddressSpaceResponseArgs
- Address
Prefixes List<string> - A list of address blocks reserved for this virtual network in CIDR notation.
- Address
Prefixes []string - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes List<String> - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes 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.
- address
Prefixes List<String> - A list of address blocks reserved for this virtual network in CIDR notation.
BgpSettings, BgpSettingsArgs
- Asn double
- The BGP speaker's ASN.
- Bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- Bgp
Peering List<Pulumi.Addresses Azure Native. Network. Inputs. IPConfiguration 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 float64
- The BGP speaker's ASN.
- Bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- Bgp
Peering []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 Double
- The BGP speaker's ASN.
- bgp
Peering StringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp
Peering List<IPConfigurationAddresses Bgp Peering Address> - BGP peering address with IP configuration ID for virtual network gateway.
- peer
Weight Integer - The weight added to routes learned from this BGP speaker.
- asn number
- The BGP speaker's ASN.
- bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp
Peering IPConfigurationAddresses Bgp Peering Address[] - BGP peering address with IP configuration ID for virtual network gateway.
- peer
Weight 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.
- bgp
Peering StringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp
Peering List<Property Map>Addresses - BGP peering address with IP configuration ID for virtual network gateway.
- peer
Weight Number - The weight added to routes learned from this BGP speaker.
BgpSettingsResponse, BgpSettingsResponseArgs
- Asn double
- The BGP speaker's ASN.
- Bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- Bgp
Peering List<Pulumi.Addresses Azure Native. Network. Inputs. IPConfiguration 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 float64
- The BGP speaker's ASN.
- Bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- Bgp
Peering []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 Double
- The BGP speaker's ASN.
- bgp
Peering StringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp
Peering List<IPConfigurationAddresses Bgp Peering Address Response> - BGP peering address with IP configuration ID for virtual network gateway.
- peer
Weight Integer - The weight added to routes learned from this BGP speaker.
- asn number
- The BGP speaker's ASN.
- bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp
Peering IPConfigurationAddresses Bgp Peering Address Response[] - BGP peering address with IP configuration ID for virtual network gateway.
- peer
Weight 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.
- bgp
Peering StringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp
Peering List<Property Map>Addresses - BGP peering address with IP configuration ID for virtual network gateway.
- peer
Weight Number - The weight added to routes learned from this BGP speaker.
DeviceProperties, DevicePropertiesArgs
- Device
Model string - Model of the device.
- Device
Vendor string - Name of the device Vendor.
- Link
Speed intIn Mbps - Link speed.
- Device
Model string - Model of the device.
- Device
Vendor string - Name of the device Vendor.
- Link
Speed intIn Mbps - Link speed.
- device
Model String - Model of the device.
- device
Vendor String - Name of the device Vendor.
- link
Speed IntegerIn Mbps - Link speed.
- device
Model string - Model of the device.
- device
Vendor string - Name of the device Vendor.
- link
Speed 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.
- device
Model String - Model of the device.
- device
Vendor String - Name of the device Vendor.
- link
Speed NumberIn Mbps - Link speed.
DevicePropertiesResponse, DevicePropertiesResponseArgs
- Device
Model string - Model of the device.
- Device
Vendor string - Name of the device Vendor.
- Link
Speed intIn Mbps - Link speed.
- Device
Model string - Model of the device.
- Device
Vendor string - Name of the device Vendor.
- Link
Speed intIn Mbps - Link speed.
- device
Model String - Model of the device.
- device
Vendor String - Name of the device Vendor.
- link
Speed IntegerIn Mbps - Link speed.
- device
Model string - Model of the device.
- device
Vendor string - Name of the device Vendor.
- link
Speed 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.
- device
Model String - Model of the device.
- device
Vendor String - Name of the device Vendor.
- link
Speed NumberIn Mbps - Link speed.
IPConfigurationBgpPeeringAddress, IPConfigurationBgpPeeringAddressArgs
- Custom
Bgp List<string>Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- Ipconfiguration
Id string - The ID of IP configuration which belongs to gateway.
- Custom
Bgp []stringIp Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- Ipconfiguration
Id string - The ID of IP configuration which belongs to gateway.
- custom
Bgp List<String>Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration
Id String - The ID of IP configuration which belongs to gateway.
- custom
Bgp string[]Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration
Id 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.
- custom
Bgp List<String>Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration
Id String - The ID of IP configuration which belongs to gateway.
IPConfigurationBgpPeeringAddressResponse, IPConfigurationBgpPeeringAddressResponseArgs
- Default
Bgp List<string>Ip Addresses - The list of default BGP peering addresses which belong to IP configuration.
- Tunnel
Ip List<string>Addresses - The list of tunnel public IP addresses which belong to IP configuration.
- Custom
Bgp List<string>Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- Ipconfiguration
Id string - The ID of IP configuration which belongs to gateway.
- Default
Bgp []stringIp Addresses - The list of default BGP peering addresses which belong to IP configuration.
- Tunnel
Ip []stringAddresses - The list of tunnel public IP addresses which belong to IP configuration.
- Custom
Bgp []stringIp Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- Ipconfiguration
Id string - The ID of IP configuration which belongs to gateway.
- default
Bgp List<String>Ip Addresses - The list of default BGP peering addresses which belong to IP configuration.
- tunnel
Ip List<String>Addresses - The list of tunnel public IP addresses which belong to IP configuration.
- custom
Bgp List<String>Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration
Id String - The ID of IP configuration which belongs to gateway.
- default
Bgp string[]Ip Addresses - The list of default BGP peering addresses which belong to IP configuration.
- tunnel
Ip string[]Addresses - The list of tunnel public IP addresses which belong to IP configuration.
- custom
Bgp string[]Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration
Id 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.
- default
Bgp List<String>Ip Addresses - The list of default BGP peering addresses which belong to IP configuration.
- tunnel
Ip List<String>Addresses - The list of tunnel public IP addresses which belong to IP configuration.
- custom
Bgp List<String>Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration
Id String - The ID of IP configuration which belongs to gateway.
O365BreakOutCategoryPolicies, O365BreakOutCategoryPoliciesArgs
O365BreakOutCategoryPoliciesResponse, O365BreakOutCategoryPoliciesResponseArgs
O365PolicyProperties, O365PolicyPropertiesArgs
- Break
Out Pulumi.Categories Azure Native. Network. Inputs. O365Break Out Category Policies - Office365 breakout categories.
- Break
Out O365BreakCategories Out Category Policies - Office365 breakout categories.
- break
Out O365BreakCategories Out Category Policies - Office365 breakout categories.
- break
Out O365BreakCategories Out Category Policies - Office365 breakout categories.
- break_
out_ O365Breakcategories Out Category Policies - Office365 breakout categories.
- break
Out Property MapCategories - Office365 breakout categories.
O365PolicyPropertiesResponse, O365PolicyPropertiesResponseArgs
- Break
Out Pulumi.Categories Azure Native. Network. Inputs. O365Break Out Category Policies Response - Office365 breakout categories.
- Break
Out O365BreakCategories Out Category Policies Response - Office365 breakout categories.
- break
Out O365BreakCategories Out Category Policies Response - Office365 breakout categories.
- break
Out O365BreakCategories Out Category Policies Response - Office365 breakout categories.
- break_
out_ O365Breakcategories Out Category Policies Response - Office365 breakout categories.
- break
Out 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.
- Bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- Asn float64
- The BGP speaker's ASN.
- Bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- asn Double
- The BGP speaker's ASN.
- bgp
Peering StringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- asn number
- The BGP speaker's ASN.
- bgp
Peering 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.
- bgp
Peering StringAddress - The BGP peering address and BGP identifier of this BGP speaker.
VpnLinkBgpSettingsResponse, VpnLinkBgpSettingsResponseArgs
- Asn double
- The BGP speaker's ASN.
- Bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- Asn float64
- The BGP speaker's ASN.
- Bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- asn Double
- The BGP speaker's ASN.
- bgp
Peering StringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- asn number
- The BGP speaker's ASN.
- bgp
Peering 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.
- bgp
Peering StringAddress - The BGP peering address and BGP identifier of this BGP speaker.
VpnLinkProviderProperties, VpnLinkProviderPropertiesArgs
- Link
Provider stringName - Name of the link provider.
- Link
Speed intIn Mbps - Link speed.
- Link
Provider stringName - Name of the link provider.
- Link
Speed intIn Mbps - Link speed.
- link
Provider StringName - Name of the link provider.
- link
Speed IntegerIn Mbps - Link speed.
- link
Provider stringName - Name of the link provider.
- link
Speed numberIn Mbps - Link speed.
- link_
provider_ strname - Name of the link provider.
- link_
speed_ intin_ mbps - Link speed.
- link
Provider StringName - Name of the link provider.
- link
Speed NumberIn Mbps - Link speed.
VpnLinkProviderPropertiesResponse, VpnLinkProviderPropertiesResponseArgs
- Link
Provider stringName - Name of the link provider.
- Link
Speed intIn Mbps - Link speed.
- Link
Provider stringName - Name of the link provider.
- Link
Speed intIn Mbps - Link speed.
- link
Provider StringName - Name of the link provider.
- link
Speed IntegerIn Mbps - Link speed.
- link
Provider stringName - Name of the link provider.
- link
Speed numberIn Mbps - Link speed.
- link_
provider_ strname - Name of the link provider.
- link_
speed_ intin_ mbps - Link speed.
- link
Provider StringName - Name of the link provider.
- link
Speed NumberIn Mbps - Link speed.
VpnSiteLink, VpnSiteLinkArgs
- Bgp
Properties 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.
- Ip
Address string - The ip-address for the vpn-site-link.
- Link
Properties 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.
- Bgp
Properties VpnLink Bgp Settings - The set of bgp properties.
- Fqdn string
- FQDN of vpn-site-link.
- Id string
- Resource ID.
- Ip
Address string - The ip-address for the vpn-site-link.
- Link
Properties 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 String
- FQDN of vpn-site-link.
- id String
- Resource ID.
- ip
Address String - The ip-address for the vpn-site-link.
- link
Properties 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 string
- FQDN of vpn-site-link.
- id string
- Resource ID.
- ip
Address string - The ip-address for the vpn-site-link.
- link
Properties 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.
- bgp
Properties Property Map - The set of bgp properties.
- fqdn String
- FQDN of vpn-site-link.
- id String
- Resource ID.
- ip
Address String - The ip-address for the vpn-site-link.
- link
Properties 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.
- Provisioning
State string - The provisioning state of the VPN site link resource.
- Type string
- Resource type.
- Bgp
Properties 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.
- Ip
Address string - The ip-address for the vpn-site-link.
- Link
Properties 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.
- Provisioning
State string - The provisioning state of the VPN site link resource.
- Type string
- Resource type.
- Bgp
Properties VpnLink Bgp Settings Response - The set of bgp properties.
- Fqdn string
- FQDN of vpn-site-link.
- Id string
- Resource ID.
- Ip
Address string - The ip-address for the vpn-site-link.
- Link
Properties 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.
- provisioning
State String - The provisioning state of the VPN site link resource.
- type String
- Resource type.
- bgp
Properties VpnLink Bgp Settings Response - The set of bgp properties.
- fqdn String
- FQDN of vpn-site-link.
- id String
- Resource ID.
- ip
Address String - The ip-address for the vpn-site-link.
- link
Properties 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.
- provisioning
State string - The provisioning state of the VPN site link resource.
- type string
- Resource type.
- bgp
Properties VpnLink Bgp Settings Response - The set of bgp properties.
- fqdn string
- FQDN of vpn-site-link.
- id string
- Resource ID.
- ip
Address string - The ip-address for the vpn-site-link.
- link
Properties 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.
- provisioning
State String - The provisioning state of the VPN site link resource.
- type String
- Resource type.
- bgp
Properties Property Map - The set of bgp properties.
- fqdn String
- FQDN of vpn-site-link.
- id String
- Resource ID.
- ip
Address String - The ip-address for the vpn-site-link.
- link
Properties 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/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnSites/vpnSite1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0