Skip to main content

services_export_errors_v2

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

Overview

Nameservices_export_errors_v2
TypeResource
Idazure.ad_hybrid_health_service.services_export_errors_v2

Fields

The following fields are returned by SELECT queries:

The list of merged export errors.

NameDatatypeDescription
idstringThe error Id.
attributeNamestringThe attribute name.
attributeValuestringThe attribute value.
createdDatestring (date-time)The date and time, in UTC, when the error was created.
csObjectIdstring the cs object Id.
dnstringthe DN of the object.
existingObjectobjectThe existing object
exportErrorStatusintegerThe export error status.
incomingObjectobjectThe incoming object details.
incomingObjectDisplayNamestringThe incoming object display name.
incomingObjectTypestringThe incoming object type.
mergedEntityIdstring (uuid)The merged entity Id.
modifiedOrRemovedAttributeValuestringThe modified or removed attribute value.
runStepResultIdstring (uuid)The run step result Id.
samAccountNamestringThe sam account name.
serverErrorDetailstringThe server error details.
serviceIdstring (uuid)The service Id.
serviceMemberIdstring (uuid)The server Id.
timeFirstOccurredstring (date-time)The time when the error first occurred.
timeOccurredstring (date-time)The date and time when the error occurred.
typestringThe type of the error.
userPrincipalNamestringThe user principal name

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceName, errorBucket Gets the categorized 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
errorBucketstringThe error category to query for.
serviceNamestringThe name of the service.

SELECT examples

Gets the categorized export errors.

SELECT
id,
attributeName,
attributeValue,
createdDate,
csObjectId,
dn,
existingObject,
exportErrorStatus,
incomingObject,
incomingObjectDisplayName,
incomingObjectType,
mergedEntityId,
modifiedOrRemovedAttributeValue,
runStepResultId,
samAccountName,
serverErrorDetail,
serviceId,
serviceMemberId,
timeFirstOccurred,
timeOccurred,
type,
userPrincipalName
FROM azure.ad_hybrid_health_service.services_export_errors_v2
WHERE serviceName = '{{ serviceName }}' -- required
AND errorBucket = '{{ errorBucket }}' -- required
;