services_export_errors
Creates, updates, deletes, gets or lists a services_export_errors resource.
Overview
| Name | services_export_errors |
| Type | Resource |
| Id | azure.ad_hybrid_health_service.services_export_errors |
Fields
The following fields are returned by SELECT queries:
- list
The list of export errors.
| Name | Datatype | Description |
|---|---|---|
count | integer | The error count. |
errorBucket | string | The error bucket. |
truncated | boolean | Indicates if the error count is truncated or not. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | serviceName | Gets the count of latest AAD export errors. |
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
- list
Gets the count of latest AAD export errors.
SELECT
count,
errorBucket,
truncated
FROM azure.ad_hybrid_health_service.services_export_errors
WHERE serviceName = '{{ serviceName }}' -- required
;