Skip to main content

services_tenant_whitelistings

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

Overview

Nameservices_tenant_whitelistings
TypeResource
Idazure.ad_hybrid_health_service.services_tenant_whitelistings

Fields

The following fields are returned by SELECT queries:

Indicates if a tenant is listed as allowed for a feature or not.

NameDatatypeDescription
valuebooleanThe value.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectserviceName, featureNameChecks if the tenant, to which a service is registered, is listed as allowed 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 tenant, to which a service is registered, is listed as allowed to use a feature.

SELECT
value
FROM azure.ad_hybrid_health_service.services_tenant_whitelistings
WHERE serviceName = '{{ serviceName }}' -- required
AND featureName = '{{ featureName }}' -- required
;