vpn_server_configurations_associated_with_virtual_wans
Creates, updates, deletes, gets or lists a vpn_server_configurations_associated_with_virtual_wans resource.
Overview
| Name | vpn_server_configurations_associated_with_virtual_wans |
| Type | Resource |
| Id | azure.network.vpn_server_configurations_associated_with_virtual_wans |
Fields
The following fields are returned by SELECT queries:
- list
List of associated VpnServerConfigurations list.
| Name | Datatype | Description |
|---|---|---|
vpnServerConfigurationResourceIds | array | List of VpnServerConfigurations associated with VirtualWan. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, virtualWANName | Gives 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.
| Name | Datatype | Description |
|---|---|---|
resourceGroupName | string | The resource group name. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
virtualWANName | string | The name of the VirtualWAN whose associated VpnServerConfigurations is needed. |
SELECT examples
- list
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
;