Skip to main content

vpn_server_configurations_associated_with_virtual_wan

Creates, updates, deletes, gets or lists a vpn_server_configurations_associated_with_virtual_wan resource.

Overview

Namevpn_server_configurations_associated_with_virtual_wan
TypeResource
Idazure.network.vpn_server_configurations_associated_with_virtual_wan

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
vpnServerConfigurationResourceIdsarrayList of VpnServerConfigurations associated with VirtualWan.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, virtual_wan_name, subscription_idGives the list of VpnServerConfigurations associated with Virtual Wan in a resource group.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
virtual_wan_namestringThe name of the VirtualWAN. Required.

SELECT examples

Gives the list of VpnServerConfigurations associated with Virtual Wan in a resource group.

SELECT
vpnServerConfigurationResourceIds
FROM azure.network.vpn_server_configurations_associated_with_virtual_wan
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND virtual_wan_name = '{{ virtual_wan_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;