Skip to main content

services_feature_availibilities

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

Overview

Nameservices_feature_availibilities
TypeResource
Idazure.ad_hybrid_health_service.services_feature_availibilities

Fields

The following fields are returned by SELECT queries:

Indicates if the feature is available or not.

NameDatatypeDescription
valuebooleanThe value.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectserviceName, featureNameChecks 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.

NameDatatypeDescription
featureNamestringThe name of the feature.
serviceNamestringThe name of the service.

SELECT examples

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
;