Skip to main content

adds_services_forest_summaries

Creates, updates, deletes, gets or lists an adds_services_forest_summaries resource.

Overview

Nameadds_services_forest_summaries
TypeResource
Idazure.ad_hybrid_health_service.adds_services_forest_summaries

Fields

The following fields are returned by SELECT queries:

The list of forest summary for the service.

NameDatatypeDescription
domainCountintegerThe domain count.
domainsarrayThe list of domain controller names.
forestNamestringThe forest name.
monitoredDcCountintegerThe number of domain controllers that are monitored by Azure Active Directory Connect Health.
siteCountintegerThe site count.
sitesarrayThe list of site names.
totalDcCountintegerThe total domain controllers.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectserviceNameGets the forest summary for a given Active Directory Domain Service, that is onboarded to Azure Active Directory Connect Health.

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 forest summary for a given Active Directory Domain Service, that is onboarded to Azure Active Directory Connect Health.

SELECT
domainCount,
domains,
forestName,
monitoredDcCount,
siteCount,
sites,
totalDcCount
FROM azure.ad_hybrid_health_service.adds_services_forest_summaries
WHERE serviceName = '{{ serviceName }}' -- required
;