service_members_service_configurations
Creates, updates, deletes, gets or lists a service_members_service_configurations
resource.
Overview
Name | service_members_service_configurations |
Type | Resource |
Id | azure.ad_hybrid_health_service.service_members_service_configurations |
Fields
The following fields are returned by SELECT
queries:
- get
The service configuration.
Name | Datatype | Description |
---|---|---|
serviceAccount | string | The service account. |
serviceType | integer | The service type of the server. |
sqlDatabaseName | string | The SQL database. |
sqlDatabaseSize | integer | The SQL database size. |
sqlEdition | string | The SQL edition |
sqlInstance | string | The SQL instance details. |
sqlServer | string | The SQL server information. |
sqlVersion | string | The SQL version. |
version | string | The version of the sync service. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | serviceName , serviceMemberId | Gets 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.
Name | Datatype | Description |
---|---|---|
serviceMemberId | string | The server Id. |
serviceName | string | The name of the service. |
SELECT
examples
- get
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
;