service_members_connectors
Creates, updates, deletes, gets or lists a service_members_connectors
resource.
Overview
Name | service_members_connectors |
Type | Resource |
Id | azure.ad_hybrid_health_service.service_members_connectors |
Fields
The following fields are returned by SELECT
queries:
- list
The list of connector details.
Name | Datatype | Description |
---|---|---|
id | string | The connector Id. |
name | string | The connector name. |
attributesIncluded | array | The attribute inclusion list of the connector. |
classesIncluded | array | The class inclusion list of the connector. |
connectorId | string | The connector Id. |
description | string | The connector description. |
partitions | array | The partitions of the connector. |
passwordHashSyncConfiguration | object | The password hash synchronization configuration of the connector. |
passwordManagementSettings | object | The password management settings of the connector. |
runProfiles | array | The run profiles of the connector. |
schemaXml | string | The schema xml for the connector. |
timeCreated | string (date-time) | The date and time when this connector was created. |
timeLastModified | string (date-time) | The date and time when this connector was last modified. |
type | string | The connector type. |
version | integer | The connector version |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | serviceName , serviceMemberId | Gets 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.
Name | Datatype | Description |
---|---|---|
serviceMemberId | string (uuid) | The server Id. |
serviceName | string | The name of the service. |
SELECT
examples
- list
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
;