forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Datafactory] Add Support for Query EC List API (Azure#10316)
* webhook changes * remove timeout as required * combine and update web auth definitions * revert auth type enum change * Revert "revert auth type enum change" This reverts commit a4c799f. * Reset to master * whitespace * Add new EC API * lint * fix validation * fix defn
- Loading branch information
Showing
2 changed files
with
124 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
...t.DataFactory/stable/2018-06-01/examples/ExposureControl_QueryFeatureValuesByFactory.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-12345678abc", | ||
"resourceGroupName": "exampleResourceGroup", | ||
"factoryName": "exampleFactoryName", | ||
"exposureControlBatchRequest": { | ||
"exposureControlRequests": [ | ||
{ | ||
"featureName": "ADFIntegrationRuntimeSharingRbac", | ||
"featureType": "Feature" | ||
}, | ||
{ | ||
"featureName": "ADFSampleFeature", | ||
"featureType": "Feature" | ||
} | ||
] | ||
}, | ||
"api-version": "2018-06-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": { | ||
"Date": "Sat, 22 Dec 2018 09:46:07 GMT", | ||
"X-Content-Type-Options": "nosniff" | ||
}, | ||
"body": { | ||
"exposureControlResponses": [ | ||
{ | ||
"featureName": "ADFIntegrationRuntimeSharingRbac", | ||
"value": "False" | ||
}, | ||
{ | ||
"featureName": "ADFSampleFeature", | ||
"value": "True" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |