Skip to main content

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

Namep2s_vpn_gateways_p2s_vpn_connection_health_detailed
TypeResource
Idazure.network.p2s_vpn_gateways_p2s_vpn_connection_health_detailed

Fields

The following fields are returned by SELECT queries:

P2S connections detailed health report.

NameDatatypeDescription
sasUrlstringReturned 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:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, gatewayNameGets 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.

NameDatatypeDescription
gatewayNamestringThe name of the P2SVpnGateway.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

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
;