Skip to main content

p2s_vpn_gateways_p2s_vpn_connection_health

Creates, updates, deletes, gets or lists a p2s_vpn_gateways_p2s_vpn_connection_health resource.

Overview

Namep2s_vpn_gateways_p2s_vpn_connection_health
TypeResource
Idazure.network.p2s_vpn_gateways_p2s_vpn_connection_health

Fields

The following fields are returned by SELECT queries:

P2S Vpn Gateway with P2S connection health details.

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectProperties of the P2SVpnGateway.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, gatewayName, subscriptionIdGets the connection health 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 connection health of P2S clients of the virtual wan P2SVpnGateway in the specified resource group.

SELECT
id,
name,
etag,
properties,
systemData,
type
FROM azure.network.p2s_vpn_gateways_p2s_vpn_connection_health
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND gatewayName = '{{ gatewayName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;