Skip to main content

service_members_connector_metadata

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

Overview

Nameservice_members_connector_metadata
TypeResource
Idazure.ad_hybrid_health_service.service_members_connector_metadata

Fields

The following fields are returned by SELECT queries:

Gets the list of connectors and run profile names for the given service and service member.

NameDatatypeDescription
connectorsarrayThe list of connectors.
runProfileNamesarrayThe list of run profile names.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectserviceName, serviceMemberId, metricNameGets the list of connectors and run profile names.

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
metricNamestringThe name of the metric.
serviceMemberIdstring (uuid)The service member id.
serviceNamestringThe name of the service.

SELECT examples

Gets the list of connectors and run profile names.

SELECT
connectors,
runProfileNames
FROM azure.ad_hybrid_health_service.service_members_connector_metadata
WHERE serviceName = '{{ serviceName }}' -- required
AND serviceMemberId = '{{ serviceMemberId }}' -- required
AND metricName = '{{ metricName }}' -- required
;