Skip to main content

services_export_errors

Creates, updates, deletes, gets or lists a services_export_errors resource.

Overview

Nameservices_export_errors
TypeResource
Idazure.ad_hybrid_health_service.services_export_errors

Fields

The following fields are returned by SELECT queries:

The list of export errors.

NameDatatypeDescription
countintegerThe error count.
errorBucketstringThe error bucket.
truncatedbooleanIndicates if the error count is truncated or not.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceNameGets 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.

NameDatatypeDescription
serviceNamestringThe name of the service.

SELECT examples

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
;