p2s_vpn_gateways_p2s_vpn_connection_health_detailed
Creates, updates, deletes, gets or lists a p2s_vpn_gateways_p2s_vpn_connection_health_detailed resource.
Overview
| Name | p2s_vpn_gateways_p2s_vpn_connection_health_detailed |
| Type | Resource |
| Id | azure.network.p2s_vpn_gateways_p2s_vpn_connection_health_detailed |
Fields
The following fields are returned by SELECT queries:
- get
P2S connections detailed health report.
| Name | Datatype | Description |
|---|---|---|
sasUrl | string | Returned sas url of the blob to which the p2s vpn connection detailed health will be written. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, gatewayName | Gets the sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the specified 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 |
|---|---|---|
gatewayName | string | The name of the P2SVpnGateway. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- get
Gets the sas url to get the connection health detail of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.
SELECT
sasUrl
FROM azure.network.p2s_vpn_gateways_p2s_vpn_connection_health_detailed
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND gatewayName = '{{ gatewayName }}' -- required
;