Skip to content

Commit

Permalink
fix defn
Browse files Browse the repository at this point in the history
  • Loading branch information
arsunda committed Aug 1, 2020
1 parent 04695a9 commit b630fbb
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5512,12 +5512,12 @@
},
"ExposureControlBatchRequest": {
"description": "A list of exposure control features.",
"type": "array",
"type": "object",
"required": [
"value"
"exposureControlRequests"
],
"properties": {
"value": {
"exposureControlRequests": {
"type": "array",
"description": "List of exposure control features.",
"items": {
Expand All @@ -5542,12 +5542,12 @@
},
"ExposureControlBatchResponse": {
"description": "A list of exposure control feature values.",
"type": "array",
"type": "object",
"required": [
"value"
"exposureControlResponses"
],
"properties": {
"value": {
"exposureControlResponses": {
"type": "array",
"description": "List of exposure control feature values.",
"items": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@
"subscriptionId": "12345678-1234-1234-1234-12345678abc",
"resourceGroupName": "exampleResourceGroup",
"factoryName": "exampleFactoryName",
"exposureControlBatchRequest": [
{
"featureName": "ADFIntegrationRuntimeSharingRbac",
"featureType": "Feature"
},
{
"featureName": "ADFSampleFeature",
"featureType": "Feature"
}
],
"exposureControlBatchRequest": {
"exposureControlRequests": [
{
"featureName": "ADFIntegrationRuntimeSharingRbac",
"featureType": "Feature"
},
{
"featureName": "ADFSampleFeature",
"featureType": "Feature"
}
]
},
"api-version": "2018-06-01"
},
"responses": {
Expand All @@ -21,16 +23,18 @@
"Date": "Sat, 22 Dec 2018 09:46:07 GMT",
"X-Content-Type-Options": "nosniff"
},
"body": [
{
"featureName": "ADFIntegrationRuntimeSharingRbac",
"value": "False"
},
{
"featureName": "ADFSampleFeature",
"value": "True"
}
]
"body": {
"exposureControlResponses": [
{
"featureName": "ADFIntegrationRuntimeSharingRbac",
"value": "False"
},
{
"featureName": "ADFSampleFeature",
"value": "True"
}
]
}
}
}
}

0 comments on commit b630fbb

Please sign in to comment.