adds_services_replication_summaries
Creates, updates, deletes, gets or lists an adds_services_replication_summaries
resource.
Overview
Name | adds_services_replication_summaries |
Type | Resource |
Id | azure.ad_hybrid_health_service.adds_services_replication_summaries |
Fields
The following fields are returned by SELECT
queries:
- list
The list of replication summary for a service.
Name | Datatype | Description |
---|---|---|
domain | string | The domain name for a given domain controller. |
inboundNeighborCollection | array | List of individual domain controller neighbor's inbound replication status. |
lastAttemptedSync | string (date-time) | The last time when a sync was attempted for a given domain controller. |
lastSuccessfulSync | string (date-time) | The time when the last successful sync happened for a given domain controller. |
site | string | The site name for a given domain controller. |
status | integer | The health status for a domain controller. |
targetServer | string | The domain controller name. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | serviceName , isGroupbySite , query , nextPartitionKey , nextRowKey | $filter , takeCount | 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. |
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 |
---|---|---|
isGroupbySite | boolean | Indicates if the result should be grouped by site or not. |
nextPartitionKey | string | The next partition key to query for. |
nextRowKey | string | The next row key to query for. |
query | string | The custom query. |
serviceName | string | The name of the service. |
$filter | string | The server property filter to apply. |
takeCount | integer | The take count , which specifies the number of elements that can be returned from a sequence. |
SELECT
examples
- list
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 serviceName = '{{ serviceName }}' -- required
AND isGroupbySite = '{{ isGroupbySite }}' -- required
AND query = '{{ query }}' -- required
AND nextPartitionKey = '{{ nextPartitionKey }}' -- required
AND nextRowKey = '{{ nextRowKey }}' -- required
AND $filter = '{{ $filter }}'
AND takeCount = '{{ takeCount }}'
;