services_tenant_whitelistings
Creates, updates, deletes, gets or lists a services_tenant_whitelistings resource.
Overview
| Name | services_tenant_whitelistings |
| Type | Resource |
| Id | azure.ad_hybrid_health_service.services_tenant_whitelistings |
Fields
The following fields are returned by SELECT queries:
- get
Indicates if a tenant is listed as allowed for a feature 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 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.
| Name | Datatype | Description |
|---|---|---|
featureName | string | The name of the feature. |
serviceName | string | The name of the service. |
SELECT examples
- get
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
;