Skip to content

Deprecate get.json removed parameters in 7.x #41439

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

Closed
Closed
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
12 changes: 10 additions & 2 deletions rest-api-spec/src/main/resources/rest-api-spec/api/get.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,19 @@
},
"_source_exclude": {
"type" : "list",
"description" : "A list of fields to exclude from the returned _source field"
"description" : "A list of fields to exclude from the returned _source field",
"deprecated" : {
"version" : "7.0.0",
"description" : "This option has been removed in Elasticsearch 7.0.0 and is no longer available, it was however documented as part of its 7.0.0 release."
}
},
"_source_include": {
"type" : "list",
"description" : "A list of fields to extract and return from the _source field"
"description" : "A list of fields to extract and return from the _source field",
"deprecated" : {
"version" : "7.0.0",
"description" : "This option has been removed in Elasticsearch 7.0.0 and is no longer available, it was however documented as part of its 7.0.0 release."
}
},
"version" : {
"type" : "number",
Expand Down