network_connections_health_details
Creates, updates, deletes, gets or lists a network_connections_health_details
resource.
Overview
Name | network_connections_health_details |
Type | Resource |
Id | azure.dev_center.network_connections_health_details |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | Health Check properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | networkConnectionName, resourceGroupName, subscriptionId | Gets health check status details. |
list | SELECT | networkConnectionName, resourceGroupName, subscriptionId | Lists 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 }}';