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

The following fields are returned by SELECT queries:

The service configuration.

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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectserviceName, serviceMemberIdGets the service 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 service configuration.

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