services_export_errors_v2
Creates, updates, deletes, gets or lists a services_export_errors_v2
resource.
Overview
Name | services_export_errors_v2 |
Type | Resource |
Id | azure.ad_hybrid_health_service.services_export_errors_v2 |
Fields
The following fields are returned by SELECT
queries:
- list
The list of merged export errors.
Name | Datatype | Description |
---|---|---|
id | string | The error Id. |
attributeName | string | The attribute name. |
attributeValue | string | The attribute value. |
createdDate | string (date-time) | The date and time, in UTC, when the error was created. |
csObjectId | string | the cs object Id. |
dn | string | the DN of the object. |
existingObject | object | The existing object |
exportErrorStatus | integer | The export error status. |
incomingObject | object | The incoming object details. |
incomingObjectDisplayName | string | The incoming object display name. |
incomingObjectType | string | The incoming object type. |
mergedEntityId | string (uuid) | The merged entity Id. |
modifiedOrRemovedAttributeValue | string | The modified or removed attribute value. |
runStepResultId | string (uuid) | The run step result Id. |
samAccountName | string | The sam account name. |
serverErrorDetail | string | The server error details. |
serviceId | string (uuid) | The service Id. |
serviceMemberId | string (uuid) | The server Id. |
timeFirstOccurred | string (date-time) | The time when the error first occurred. |
timeOccurred | string (date-time) | The date and time when the error occurred. |
type | string | The type of the error. |
userPrincipalName | string | The user principal name |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | serviceName , 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.
Name | Datatype | Description |
---|---|---|
errorBucket | string | The error category to query for. |
serviceName | string | The name of the service. |
SELECT
examples
- list
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
;