-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Azure Search] Introduce 2019-05-06-Preview swagger (#7615)
* Add Microsoft.Azure.Search.Data 2019-05-06-Preview to track1 and 'track2' * Add Microsoft.Azure.Search.Service 2019-05-06-Preview to track1 and 'track2' * Add codegen tags * Fix 'track2' directory casing * Fix 'track1' directory casing * Fix API versions * Add encryption key to swagger * Update branding changes
- Loading branch information
1 parent
681ee1c
commit c7b0a6e
Showing
86 changed files
with
21,360 additions
and
3 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
....Search.Data/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsGet.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,39 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "myservice", | ||
"searchDnsSuffix": "search.windows.net", | ||
"indexName": "myindex", | ||
"api-version": "2019-05-06-Preview", | ||
"autocompleteMode": "oneTerm", | ||
"search": "washington medic", | ||
"suggesterName": "sg", | ||
"filter": "search.in(docId,'101,102,105')", | ||
"fuzzy": false, | ||
"highlightPostTag": "</em>", | ||
"highlightPreTag": "<em>", | ||
"minimumCoverage": 80, | ||
"searchFields": [ | ||
"title", | ||
"description" | ||
], | ||
"top": 10 | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": [ | ||
{ | ||
"text": "medicaid", | ||
"queryPlusText": "washington medicaid" | ||
}, | ||
{ | ||
"text": "medicare", | ||
"queryPlusText": "washington medicare" | ||
}, | ||
{ | ||
"text": "medicine", | ||
"queryPlusText": "washington medicine" | ||
} | ||
] | ||
} | ||
} | ||
} |
37 changes: 37 additions & 0 deletions
37
...Search.Data/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsPost.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,37 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "myservice", | ||
"searchDnsSuffix": "search.windows.net", | ||
"indexName": "myindex", | ||
"api-version": "2019-05-06-Preview", | ||
"autocompleteRequest": { | ||
"autocompleteMode": "oneTerm", | ||
"search": "washington medic", | ||
"suggesterName": "sg", | ||
"filter": "search.in(docId,'101,102,105')", | ||
"highlightPostTag": "</em>", | ||
"highlightPreTag": "<em>", | ||
"minimumCoverage": 80, | ||
"searchFields": "title,description", | ||
"top": 10 | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": [ | ||
{ | ||
"text": "medicaid", | ||
"queryPlusText": "washington medicaid" | ||
}, | ||
{ | ||
"text": "medicare", | ||
"queryPlusText": "washington medicare" | ||
}, | ||
{ | ||
"text": "medicine", | ||
"queryPlusText": "washington medicine" | ||
} | ||
] | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...soft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexCountDocuments.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,13 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "myservice", | ||
"searchDnsSuffix": "search.windows.net", | ||
"indexName": "myindex", | ||
"api-version": "2019-05-06-Preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": 427 | ||
} | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
...crosoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexGetDocument.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,23 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "myservice", | ||
"searchDnsSuffix": "search.windows.net", | ||
"indexName": "myindex", | ||
"api-version": "2019-05-06-Preview", | ||
"key": "1", | ||
"$select": [ | ||
"docId", | ||
"title", | ||
"description" | ||
] | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"description": "Cheapest hotel in town", | ||
"docId": "1", | ||
"title": "Nice Hotel" | ||
} | ||
} | ||
} | ||
} |
94 changes: 94 additions & 0 deletions
94
...soft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexIndexDocuments.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,94 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "myservice", | ||
"searchDnsSuffix": "search.windows.net", | ||
"indexName": "myindex", | ||
"api-version": "2019-05-06-Preview", | ||
"batch": { | ||
"value": [ | ||
{ | ||
"@search.action": "upload", | ||
"docId": "1", | ||
"title": "Fancy Stay", | ||
"description": "Best hotel in town" | ||
}, | ||
{ | ||
"@search.action": "merge", | ||
"docId": "2", | ||
"title": "Roach Motel" | ||
}, | ||
{ | ||
"@search.action": "mergeOrUpload", | ||
"docId": "3", | ||
"title": "Econo Motel" | ||
}, | ||
{ | ||
"@search.action": "delete", | ||
"docId": "4" | ||
} | ||
] | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"key": "1", | ||
"status": true, | ||
"errorMessage": null, | ||
"statusCode": 201 | ||
}, | ||
{ | ||
"key": "2", | ||
"status": true, | ||
"errorMessage": null, | ||
"statusCode": 200 | ||
}, | ||
{ | ||
"key": "3", | ||
"status": true, | ||
"errorMessage": null, | ||
"statusCode": 200 | ||
}, | ||
{ | ||
"key": "4", | ||
"status": true, | ||
"errorMessage": null, | ||
"statusCode": 200 | ||
} | ||
] | ||
} | ||
}, | ||
"207": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"key": "1", | ||
"status": true, | ||
"errorMessage": null, | ||
"statusCode": 200 | ||
}, | ||
{ | ||
"key": "2", | ||
"status": false, | ||
"errorMessage": "Document not found.", | ||
"statusCode": 404 | ||
}, | ||
{ | ||
"key": "3", | ||
"status": true, | ||
"errorMessage": null, | ||
"statusCode": 200 | ||
}, | ||
{ | ||
"key": "4", | ||
"status": true, | ||
"errorMessage": null, | ||
"statusCode": 200 | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
85 changes: 85 additions & 0 deletions
85
....Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsGet.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,85 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "myservice", | ||
"searchDnsSuffix": "search.windows.net", | ||
"indexName": "myindex", | ||
"api-version": "2019-05-06-Preview", | ||
"$count": true, | ||
"facet": [ | ||
"category,count:10,sort:count" | ||
], | ||
"$filter": "rating gt 10", | ||
"highlight": [ | ||
"title" | ||
], | ||
"highlightPostTag": "</em>", | ||
"highlightPreTag": "<em>", | ||
"minimumCoverage": 80, | ||
"$orderby": [ | ||
"search.score() desc", | ||
"rating desc" | ||
], | ||
"queryType": "simple", | ||
"scoringParameters": [ | ||
"currentLocation--122.123,44.77233" | ||
], | ||
"scoringProfile": "sp", | ||
"search": "nice hotels", | ||
"searchFields": [ | ||
"title", | ||
"description" | ||
], | ||
"searchMode": "any", | ||
"$select": [ | ||
"docId", | ||
"title", | ||
"description" | ||
], | ||
"$skip": 100, | ||
"$top": 10 | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"@odata.count": 25, | ||
"@search.coverage": 80, | ||
"@search.facets": { | ||
"category": [ | ||
{ | ||
"count": 1, | ||
"value": "Economy" | ||
}, | ||
{ | ||
"count": 1, | ||
"value": "Luxury" | ||
} | ||
] | ||
}, | ||
"value": [ | ||
{ | ||
"@search.score": 1.50, | ||
"@search.highlights": { | ||
"title": [ | ||
"<em>Nice</em> <em>Hotel</em>" | ||
] | ||
}, | ||
"description": "Cheapest hotel in town", | ||
"docId": "1", | ||
"title": "Nice Hotel" | ||
}, | ||
{ | ||
"@search.score": 0.70, | ||
"@search.highlights": { | ||
"title": [ | ||
"Fancy <em>Hotel</em>" | ||
] | ||
}, | ||
"description": "Best hotel in town", | ||
"docId": "2", | ||
"title": "Fancy Hotel" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
98 changes: 98 additions & 0 deletions
98
...Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsPost.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,98 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "myservice", | ||
"searchDnsSuffix": "search.windows.net", | ||
"indexName": "myindex", | ||
"api-version": "2019-05-06-Preview", | ||
"searchRequest": { | ||
"count": true, | ||
"facets": [ | ||
"category,count:10,sort:count" | ||
], | ||
"filter": "rating gt 4.0", | ||
"highlight": "title", | ||
"highlightPostTag": "</em>", | ||
"highlightPreTag": "<em>", | ||
"minimumCoverage": null, | ||
"orderby": "search.score() desc,rating desc", | ||
"queryType": "simple", | ||
"scoringParameters": [ | ||
"currentLocation--122.123,44.77233" | ||
], | ||
"scoringProfile": "sp", | ||
"search": "nice hotels", | ||
"searchFields": "title,description", | ||
"searchMode": "any", | ||
"select": "docId,title,description", | ||
"skip": 0, | ||
"top": 10 | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"@odata.count": 25, | ||
"@search.facets": { | ||
"category": [ | ||
{ | ||
"count": 1, | ||
"value": "Economy" | ||
}, | ||
{ | ||
"count": 1, | ||
"value": "Luxury" | ||
} | ||
] | ||
}, | ||
"@search.nextPageParameters": { | ||
"count": true, | ||
"facets": [ | ||
"category,count:10,sort:count" | ||
], | ||
"filter": "rating gt 4.0", | ||
"highlight": "title", | ||
"highlightPostTag": "</em>", | ||
"highlightPreTag": "<em>", | ||
"minimumCoverage": null, | ||
"orderby": "search.score() desc,rating desc", | ||
"queryType": "simple", | ||
"scoringParameters": [ | ||
"currentLocation--122.123,44.77233" | ||
], | ||
"scoringProfile": "sp", | ||
"search": "nice hotels", | ||
"searchFields": "title,description", | ||
"searchMode": "any", | ||
"select": "docId,title,description", | ||
"skip": 2, | ||
"top": 8 | ||
}, | ||
"value": [ | ||
{ | ||
"@search.score": 1.50, | ||
"@search.highlights": { | ||
"title": [ | ||
"<em>Nice</em> <em>Hotel</em>" | ||
] | ||
}, | ||
"description": "Cheapest hotel in town", | ||
"docId": "1", | ||
"title": "Nice Hotel" | ||
}, | ||
{ | ||
"@search.score": 0.70, | ||
"@search.highlights": { | ||
"title": [ | ||
"Fancy <em>Hotel</em>" | ||
] | ||
}, | ||
"description": "Best hotel in town", | ||
"docId": "2", | ||
"title": "Fancy Hotel" | ||
} | ||
], | ||
"@odata.nextLink": "https://myservice.search.windows.net/indexes('myindex')/docs/search.post.search?api-version=2019-05-06-Preview" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.