service_members_global_configurations
Creates, updates, deletes, gets or lists a service_members_global_configurations resource.
Overview
| Name | service_members_global_configurations |
| Type | Resource |
| Id | azure.ad_hybrid_health_service.service_members_global_configurations |
Fields
The following fields are returned by SELECT queries:
- list
The list of global configurations.
| Name | Datatype | Description |
|---|---|---|
featureSet | array | The list of additional feature sets. |
numSavedPwdEvent | integer | The number of saved password events. |
passwordSyncEnabled | boolean | Indicates if password sync is enabled or not. |
schemaXml | string | The schema for the configuration. |
version | integer | The version for the global configuration. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | serviceName, serviceMemberId | Gets the global configuration. |
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 | The server id. |
serviceName | string | The name of the service. |
SELECT examples
- list
Gets the global configuration.
SELECT
featureSet,
numSavedPwdEvent,
passwordSyncEnabled,
schemaXml,
version
FROM azure.ad_hybrid_health_service.service_members_global_configurations
WHERE serviceName = '{{ serviceName }}' -- required
AND serviceMemberId = '{{ serviceMemberId }}' -- required
;