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

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

NameAccessible byRequired ParamsDescription
listSELECTserviceMemberId, serviceNameGets the global configuration.

SELECT examples

Gets the global configuration.

SELECT
featureSet,
numSavedPwdEvent,
passwordSyncEnabled,
schemaXml,
version
FROM azure.ad_hybrid_health_service.service_members_global_configurations
WHERE serviceMemberId = '{{ serviceMemberId }}'
AND serviceName = '{{ serviceName }}';