Skip to main content

adds_services_replication_details

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

Overview

Nameadds_services_replication_details
TypeResource
Idazure.ad_hybrid_health_service.adds_services_replication_details

Fields

The following fields are returned by SELECT queries:

The list of replication details for a service.

NameDatatypeDescription
domainstringThe domain name for a given domain controller.
inboundNeighborCollectionarrayList of individual domain controller neighbor's inbound replication status.
lastAttemptedSyncstring (date-time)The last time when a sync was attempted for a given domain controller.
lastSuccessfulSyncstring (date-time)The 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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceName$filter, withDetailsGets complete domain controller list along with replication details 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.
$filterstringThe server property filter to apply.
withDetailsbooleanIndicates if InboundReplicationNeighbor details are required or not.

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_details
WHERE serviceName = '{{ serviceName }}' -- required
AND $filter = '{{ $filter }}'
AND withDetails = '{{ withDetails }}'
;