Skip to main content

vpn_server_configurations_associated_with_virtual_wans

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

Overview

Namevpn_server_configurations_associated_with_virtual_wans
TypeResource
Idazure.network.vpn_server_configurations_associated_with_virtual_wans

Fields

The following fields are returned by SELECT queries:

List of associated VpnServerConfigurations list.

NameDatatypeDescription
vpnServerConfigurationResourceIdsarrayList of VpnServerConfigurations associated with VirtualWan.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, virtualWANNameGives 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
resourceGroupNamestringThe resource group name.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
virtualWANNamestringThe name of the VirtualWAN whose associated VpnServerConfigurations is needed.

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_wans
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND virtualWANName = '{{ virtualWANName }}' -- required
;