Skip to main content

adds_services_replication_status

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

Overview

Nameadds_services_replication_status
TypeResource
Idazure.ad_hybrid_health_service.adds_services_replication_status

Fields

The following fields are returned by SELECT queries:

The replication status for a service.

NameDatatypeDescription
errorDcCountintegerThe total number of domain controllers with error in a given forest.
forestNamestringThe forest name.
totalDcCountintegerThe total number of domain controllers for a given forest.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectserviceNameGets Replication status 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 Replication status for a given Active Directory Domain Service, that is onboarded to Azure Active Directory Connect Health.

SELECT
errorDcCount,
forestName,
totalDcCount
FROM azure.ad_hybrid_health_service.adds_services_replication_status
WHERE serviceName = '{{ serviceName }}' -- required
;