Skip to main content

adds_services_replication_summaries

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

Overview

Nameadds_services_replication_summaries
TypeResource
Idazure.ad_hybrid_health_service.adds_services_replication_summaries

Fields

NameDatatypeDescription
domainstringThe domain name for a given domain controller.
inboundNeighborCollectionarrayList of individual domain controller neighbor's inbound replication status.
lastAttemptedSyncstringThe last time when a sync was attempted for a given domain controller.
lastSuccessfulSyncstringThe time when the last successful sync happened for a given domain controller.
sitestringThe site name for a given domain controller.
statusintegerThe health status for a domain controller.
targetServerstringThe domain controller name.

Methods

NameAccessible byRequired ParamsDescription
listSELECTisGroupbySite, nextPartitionKey, nextRowKey, query, serviceNameGets complete domain controller list along with replication details for a given Active Directory Domain Service, that is onboarded to Azure Active Directory Connect Health.

SELECT examples

Gets complete domain controller list along with replication details for a given Active Directory Domain Service, that is onboarded to Azure Active Directory Connect Health.

SELECT
domain,
inboundNeighborCollection,
lastAttemptedSync,
lastSuccessfulSync,
site,
status,
targetServer
FROM azure.ad_hybrid_health_service.adds_services_replication_summaries
WHERE isGroupbySite = '{{ isGroupbySite }}'
AND nextPartitionKey = '{{ nextPartitionKey }}'
AND nextRowKey = '{{ nextRowKey }}'
AND query = '{{ query }}'
AND serviceName = '{{ serviceName }}';