Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release search azure.search preview/2024 09 01 preview #29734

Merged
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"parameters": {
"endpoint": "https://myservice.search.windows.net",
"indexName": "myindex",
"api-version": "2024-09-01-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"
}
]
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{

Check failure on line 1 in specification/search/data-plane/Azure.Search/preview/2024-09-01-preview/examples/SearchIndexAutocompleteDocumentsPost.json

View check run for this annotation

Azure Pipelines / Swagger PrettierCheck

specification/search/data-plane/Azure.Search/preview/2024-09-01-preview/examples/SearchIndexAutocompleteDocumentsPost.json#L1

specification/search/data-plane/Azure.Search/preview/2024-09-01-preview/examples/SearchIndexAutocompleteDocumentsPost.json(1,1): error : Code style issues found, please run prettier. > npm install > npx prettier --write specification/search/data-plane/Azure.Search/preview/2024-09-01-preview/examples/SearchIndexAutocompleteDocumentsPost.json
"operationId": "Documents_AutocompletePost",
"title": "SearchIndexAutocompleteDocumentsPost",
"parameters": {
"endpoint": "https://previewexampleservice.search.windows.net",
"indexName": "preview-test",
"api-version": "2024-09-01-preview",
"x-ms-client-request-id": "00000000-0000-0000-0000-000000000000",
"autocompleteRequest": {
"search": "p",
"autocompleteMode": "oneTerm",
"filter": "ownerId ne '1'",
"highlightPostTag": "</em>",
"highlightPreTag": "<em>",
"minimumCoverage": 80,
"searchFields": "category, ownerId",
"suggesterName": "sg",
"top": 10
}
},
"responses": {
"200": {
"body": {
"@search.coverage": 100.0,
"value": [
{
"text": "purple",
"queryPlusText": "<em>purple</em>"
},
{
"text": "pink",
"queryPlusText": "<em>pink</em>"
}
]
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{

Check failure on line 1 in specification/search/data-plane/Azure.Search/preview/2024-09-01-preview/examples/SearchIndexCountDocuments.json

View check run for this annotation

Azure Pipelines / Swagger PrettierCheck

specification/search/data-plane/Azure.Search/preview/2024-09-01-preview/examples/SearchIndexCountDocuments.json#L1

specification/search/data-plane/Azure.Search/preview/2024-09-01-preview/examples/SearchIndexCountDocuments.json(1,1): error : Code style issues found, please run prettier. > npm install > npx prettier --write specification/search/data-plane/Azure.Search/preview/2024-09-01-preview/examples/SearchIndexCountDocuments.json
"operationId": "Documents_Count",
"title": "SearchIndexCountDocuments",
"parameters": {
"endpoint": "https://previewexampleservice.search.windows.net",
"indexName": "preview-test",
"api-version": "2024-09-01-preview",
"x-ms-client-request-id": "00000000-0000-0000-0000-000000000000"
},
"responses": {
"200": {
"body": 50
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{

Check failure on line 1 in specification/search/data-plane/Azure.Search/preview/2024-09-01-preview/examples/SearchIndexGetDocument.json

View check run for this annotation

Azure Pipelines / Swagger PrettierCheck

specification/search/data-plane/Azure.Search/preview/2024-09-01-preview/examples/SearchIndexGetDocument.json#L1

specification/search/data-plane/Azure.Search/preview/2024-09-01-preview/examples/SearchIndexGetDocument.json(1,1): error : Code style issues found, please run prettier. > npm install > npx prettier --write specification/search/data-plane/Azure.Search/preview/2024-09-01-preview/examples/SearchIndexGetDocument.json
"operationId": "Documents_Get",
"title": "SearchIndexGetDocument",
"parameters": {
"endpoint": "https://previewexampleservice.search.windows.net",
"indexName": "preview-test",
"key": "1",
"$select": [
"id",
"description",
"name",
"category",
"ownerId"
],
"api-version": "2024-09-01-preview",
"x-ms-client-request-id": "00000000-0000-0000-0000-000000000000"
},
"responses": {
"200": {
"body": {
"id": "1",
"name": "test",
"description": "test1 hello",
"category": "purple",
"ownerId": "sam"
}
}
}
}
Loading
Loading