p2s_vpn_gateways_p2s_vpn_connection_health
Creates, updates, deletes, gets or lists a p2s_vpn_gateways_p2s_vpn_connection_health
resource.
Overview
Name | p2s_vpn_gateways_p2s_vpn_connection_health |
Type | Resource |
Id | azure.network.p2s_vpn_gateways_p2s_vpn_connection_health |
Fields
The following fields are returned by SELECT
queries:
- get
P2S Vpn Gateway with P2S connection health details.
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Properties of the P2SVpnGateway. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , gatewayName , subscriptionId | Gets 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.
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 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
;