Skip to main content

service_members_data_freshness

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

Overview

Nameservice_members_data_freshness
TypeResource
Idazure.ad_hybrid_health_service.service_members_data_freshness

Fields

The following fields are returned by SELECT queries:

The list of datafreshness details for a server.

NameDatatypeDescription
keystringThe key for the property.
valuestringThe value for the key.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceName, serviceMemberIdGets the last time when the server uploaded data to Azure Active Directory Connect Health Service.

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
serviceMemberIdstring (uuid)The server Id.
serviceNamestringThe name of the service.

SELECT examples

Gets the last time when the server uploaded data to Azure Active Directory Connect Health Service.

SELECT
key,
value
FROM azure.ad_hybrid_health_service.service_members_data_freshness
WHERE serviceName = '{{ serviceName }}' -- required
AND serviceMemberId = '{{ serviceMemberId }}' -- required
;