services_feature_availibilities
Creates, updates, deletes, gets or lists a services_feature_availibilities
resource.
Overview
Name | services_feature_availibilities |
Type | Resource |
Id | azure.ad_hybrid_health_service.services_feature_availibilities |
Fields
The following fields are returned by SELECT
queries:
- get
Indicates if the feature is available or not.
Name | Datatype | Description |
---|---|---|
value | boolean | The value. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | serviceName , featureName | Checks if the service has all the pre-requisites met to use a feature. |
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 |
---|---|---|
featureName | string | The name of the feature. |
serviceName | string | The name of the service. |
SELECT
examples
- get
Checks if the service has all the pre-requisites met to use a feature.
SELECT
value
FROM azure.ad_hybrid_health_service.services_feature_availibilities
WHERE serviceName = '{{ serviceName }}' -- required
AND featureName = '{{ featureName }}' -- required
;