exposure_control_feature_values
Creates, updates, deletes, gets or lists an exposure_control_feature_values resource.
Overview
| Name | exposure_control_feature_values |
| Type | Resource |
| Id | azure.data_factory.exposure_control_feature_values |
Fields
The following fields are returned by SELECT queries:
- get
OK.
| Name | Datatype | Description |
|---|---|---|
featureName | string | The feature name. |
value | string | The feature value. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, locationId | api-version | Get exposure control feature for specific location. |
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 |
|---|---|---|
locationId | string | The location identifier. |
subscriptionId | string | The subscription identifier. |
api-version | string | The API version. |
SELECT examples
- get
Get exposure control feature for specific location.
SELECT
featureName,
value
FROM azure.data_factory.exposure_control_feature_values
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locationId = '{{ locationId }}' -- required
AND api-version = '{{ api-version }}'
;