Skip to main content

services_monitoring_configurations

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

Overview

Nameservices_monitoring_configurations
TypeResource
Idazure.ad_hybrid_health_service.services_monitoring_configurations

Fields

The following fields are returned by SELECT queries:

The list of monitoring configurations.

NameDatatypeDescription
keystringThe key for the property.
valuestringThe value for the key.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceNameGets the service level monitoring configurations.

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
serviceNamestringThe name of the service.

SELECT examples

Gets the service level monitoring configurations.

SELECT
key,
value
FROM azure.ad_hybrid_health_service.services_monitoring_configurations
WHERE serviceName = '{{ serviceName }}' -- required
;