service_members_export_status
Creates, updates, deletes, gets or lists a service_members_export_status
resource.
Overview
Name | service_members_export_status |
Type | Resource |
Id | azure.ad_hybrid_health_service.service_members_export_status |
Fields
The following fields are returned by SELECT
queries:
- list
The list of export statuses.
Name | Datatype | Description |
---|---|---|
endTime | string (date-time) | The date and time when the export ended. |
runStepResultId | string | The run step result Id. |
serviceId | string (uuid) | The id of the service for whom the export status is being reported. |
serviceMemberId | string (uuid) | The server Id for whom the export status is being reported. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | serviceName , serviceMemberId | Gets 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.
Name | Datatype | Description |
---|---|---|
serviceMemberId | string (uuid) | The server Id. |
serviceName | string | The name of the service. |
SELECT
examples
- list
Gets the export status.
SELECT
endTime,
runStepResultId,
serviceId,
serviceMemberId
FROM azure.ad_hybrid_health_service.service_members_export_status
WHERE serviceName = '{{ serviceName }}' -- required
AND serviceMemberId = '{{ serviceMemberId }}' -- required
;