Skip to main content

service_members_global_configurations

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

Overview

Nameservice_members_global_configurations
TypeResource
Idazure.ad_hybrid_health_service.service_members_global_configurations

Fields

The following fields are returned by SELECT queries:

The list of global configurations.

NameDatatypeDescription
featureSetarrayThe list of additional feature sets.
numSavedPwdEventintegerThe number of saved password events.
passwordSyncEnabledbooleanIndicates if password sync is enabled or not.
schemaXmlstringThe schema for the configuration.
versionintegerThe version for the global configuration.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceName, serviceMemberIdGets 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.

NameDatatypeDescription
serviceMemberIdstringThe server id.
serviceNamestringThe name of the service.

SELECT examples

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
;