Skip to main content

network_connections_health_details

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

Overview

Namenetwork_connections_health_details
TypeResource
Idazure.dev_center.network_connections_health_details

Fields

NameDatatypeDescription
idstringFully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectHealth Check properties.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
getSELECTnetworkConnectionName, resourceGroupName, subscriptionIdGets health check status details.
listSELECTnetworkConnectionName, resourceGroupName, subscriptionIdLists health check status details

SELECT examples

Gets health check status details.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.dev_center.network_connections_health_details
WHERE networkConnectionName = '{{ networkConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';