vpn_server_configurations_associated_with_virtual_wan
Creates, updates, deletes, gets or lists a vpn_server_configurations_associated_with_virtual_wan resource.
Overview
| Name | vpn_server_configurations_associated_with_virtual_wan |
| Type | Resource |
| Id | azure.network.vpn_server_configurations_associated_with_virtual_wan |
Fields
The following fields are returned by SELECT queries:
- 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 | resource_group_name, virtual_wan_name, subscription_id | 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 |
|---|---|---|
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
virtual_wan_name | string | The name of the VirtualWAN. Required. |
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_wan
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND virtual_wan_name = '{{ virtual_wan_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;