Skip to main content

services_export_status

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

Overview

Nameservices_export_status
TypeResource
Idazure.ad_hybrid_health_service.services_export_status

Fields

The following fields are returned by SELECT queries:

The list of export statuses.

NameDatatypeDescription
endTimestring (date-time)The date and time when the export ended.
runStepResultIdstringThe run step result Id.
serviceIdstring (uuid)The id of the service for whom the export status is being reported.
serviceMemberIdstring (uuid)The server Id for whom the export status is being reported.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceNameGets the export status.

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 export status.

SELECT
endTime,
runStepResultId,
serviceId,
serviceMemberId
FROM azure.ad_hybrid_health_service.services_export_status
WHERE serviceName = '{{ serviceName }}' -- required
;