Skip to main content

configuration_adds_configurations

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

Overview

Nameconfiguration_adds_configurations
TypeResource
Idazure.ad_hybrid_health_service.configuration_adds_configurations

Fields

The following fields are returned by SELECT queries:

The Active Directory Domain Controller service configuration.

NameDatatypeDescription
keystringThe key for the property.
valuestringThe value for the key.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceNamegroupingGets the service configurations.

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
serviceNamestringThe name of the service.
groupingstringThe grouping for configurations.

SELECT examples

Gets the service configurations.

SELECT
key,
value
FROM azure.ad_hybrid_health_service.configuration_adds_configurations
WHERE serviceName = '{{ serviceName }}' -- required
AND grouping = '{{ grouping }}'
;