adds_services_replication_status
Creates, updates, deletes, gets or lists an adds_services_replication_status resource.
Overview
| Name | adds_services_replication_status |
| Type | Resource |
| Id | azure.ad_hybrid_health_service.adds_services_replication_status |
Fields
The following fields are returned by SELECT queries:
- get
The replication status for a service.
| Name | Datatype | Description |
|---|---|---|
errorDcCount | integer | The total number of domain controllers with error in a given forest. |
forestName | string | The forest name. |
totalDcCount | integer | The total number of domain controllers for a given forest. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | serviceName | Gets 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.
| Name | Datatype | Description |
|---|---|---|
serviceName | string | The name of the service. |
SELECT examples
- get
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
;