Skip to main content

service_members_connectors

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

Overview

Nameservice_members_connectors
TypeResource
Idazure.ad_hybrid_health_service.service_members_connectors

Fields

The following fields are returned by SELECT queries:

The list of connector details.

NameDatatypeDescription
idstringThe connector Id.
namestringThe connector name.
attributesIncludedarrayThe attribute inclusion list of the connector.
classesIncludedarrayThe class inclusion list of the connector.
connectorIdstringThe connector Id.
descriptionstringThe connector description.
partitionsarrayThe partitions of the connector.
passwordHashSyncConfigurationobjectThe password hash synchronization configuration of the connector.
passwordManagementSettingsobjectThe password management settings of the connector.
runProfilesarrayThe run profiles of the connector.
schemaXmlstringThe schema xml for the connector.
timeCreatedstring (date-time)The date and time when this connector was created.
timeLastModifiedstring (date-time)The date and time when this connector was last modified.
typestringThe connector type.
versionintegerThe connector version

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceName, serviceMemberIdGets the connector details for a 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 connector details for a service.

SELECT
id,
name,
attributesIncluded,
classesIncluded,
connectorId,
description,
partitions,
passwordHashSyncConfiguration,
passwordManagementSettings,
runProfiles,
schemaXml,
timeCreated,
timeLastModified,
type,
version
FROM azure.ad_hybrid_health_service.service_members_connectors
WHERE serviceName = '{{ serviceName }}' -- required
AND serviceMemberId = '{{ serviceMemberId }}' -- required
;