vpn_site_links
Creates, updates, deletes, gets or lists a vpn_site_links
resource.
Overview
Name | vpn_site_links |
Type | Resource |
Id | azure.network.vpn_site_links |
Fields
- vw_vpn_site_links
- vpn_site_links
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | The name of the resource that is unique within a resource group. This name can be used to access the resource. |
bgp_properties | text | field from the properties object |
etag | text | A unique read-only string that changes whenever the resource is updated. |
fqdn | text | field from the properties object |
ip_address | text | field from the properties object |
link_properties | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type. |
vpnSiteLinkName | text | field from the properties object |
vpnSiteName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
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. |
properties | object | Parameters for VpnSite. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, subscriptionId, vpnSiteLinkName, vpnSiteName | Retrieves the details of a VPN site link. |
list_by_vpn_site | SELECT | resourceGroupName, subscriptionId, vpnSiteName | Lists all the vpnSiteLinks in a resource group for a vpn site. |
SELECT
examples
Lists all the vpnSiteLinks in a resource group for a vpn site.
- vw_vpn_site_links
- vpn_site_links
SELECT
id,
name,
bgp_properties,
etag,
fqdn,
ip_address,
link_properties,
provisioning_state,
resourceGroupName,
subscriptionId,
type,
vpnSiteLinkName,
vpnSiteName
FROM azure.network.vw_vpn_site_links
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vpnSiteName = '{{ vpnSiteName }}';
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.vpn_site_links
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vpnSiteName = '{{ vpnSiteName }}';