Skip to main content

service_members_service_configurations

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

Overview

Nameservice_members_service_configurations
TypeResource
Idazure.ad_hybrid_health_service.service_members_service_configurations

Fields

NameDatatypeDescription
serviceAccountstringThe service account.
serviceTypeintegerThe service type of the server.
sqlDatabaseNamestringThe SQL database.
sqlDatabaseSizeintegerThe SQL database size.
sqlEditionstringThe SQL edition
sqlInstancestringThe SQL instance details.
sqlServerstringThe SQL server information.
sqlVersionstringThe SQL version.
versionstringThe version of the sync service.

Methods

NameAccessible byRequired ParamsDescription
getSELECTserviceMemberId, serviceNameGets the service configuration.

SELECT examples

Gets the service configuration.

SELECT
serviceAccount,
serviceType,
sqlDatabaseName,
sqlDatabaseSize,
sqlEdition,
sqlInstance,
sqlServer,
sqlVersion,
version
FROM azure.ad_hybrid_health_service.service_members_service_configurations
WHERE serviceMemberId = '{{ serviceMemberId }}'
AND serviceName = '{{ serviceName }}';