configuration_adds_configurations
Creates, updates, deletes, gets or lists a configuration_adds_configurations
resource.
Overview
Name | configuration_adds_configurations |
Type | Resource |
Id | azure.ad_hybrid_health_service.configuration_adds_configurations |
Fields
The following fields are returned by SELECT
queries:
- list
The Active Directory Domain Controller service configuration.
Name | Datatype | Description |
---|---|---|
key | string | The key for the property. |
value | string | The value for the key. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | serviceName | grouping | Gets 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.
Name | Datatype | Description |
---|---|---|
serviceName | string | The name of the service. |
grouping | string | The grouping for configurations. |
SELECT
examples
- list
Gets the service configurations.
SELECT
key,
value
FROM azure.ad_hybrid_health_service.configuration_adds_configurations
WHERE serviceName = '{{ serviceName }}' -- required
AND grouping = '{{ grouping }}'
;