Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
42 changes: 40 additions & 2 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions specification/_global/search/SearchRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -604,5 +604,17 @@ export interface Request extends RequestBase {
* You can retrieve these stats using the indices stats API.
*/
stats?: string[]
/**
* Specifies a subset of projects to target for the search using project
* metadata tags in a subset of Lucene query syntax.
* Allowed Lucene queries: the _alias tag and a single value (possibly wildcarded).
* Examples:
* _alias:my-project
* _alias:_origin
* _alias:*pr*
* Supported in serverless only.
* @availability serverless stability=stable visibility=feature_flag feature_flag=serverless.cross_project.enabled
*/
project_routing?: ProjectRouting
}
}
12 changes: 12 additions & 0 deletions specification/async_search/submit/AsyncSearchSubmitRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,5 +321,17 @@ export interface Request extends RequestBase {
* the indices stats API.
*/
stats?: string[]
/**
* Specifies a subset of projects to target for the search using project
* metadata tags in a subset of Lucene query syntax.
* Allowed Lucene queries: the _alias tag and a single value (possibly wildcarded).
* Examples:
* _alias:my-project
* _alias:_origin
* _alias:*pr*
* Supported in serverless only.
* @availability serverless stability=stable visibility=feature_flag feature_flag=serverless.cross_project.enabled
*/
project_routing?: ProjectRouting
}
}