Skip to content

Commit 30a4739

Browse files
Remove deprecated local parameter from alias APIs (#3059)
1 parent 67f118c commit 30a4739

File tree

11 files changed

+4
-157
lines changed

11 files changed

+4
-157
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 0 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 0 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema-serverless.json

Lines changed: 2 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 2 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/validation-errors.json

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_json_spec/cat.aliases.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@
3232
"type": "string",
3333
"description": "a short version of the Accept header, e.g. json, yaml"
3434
},
35-
"local": {
36-
"type": "boolean",
37-
"description": "Return local information, do not retrieve the state from master node (default: false)"
38-
},
3935
"h": {
4036
"type": "list",
4137
"description": "Comma-separated list of column names to display"

specification/_json_spec/indices.exists_alias.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,6 @@
5151
"options": ["open", "closed", "hidden", "none", "all"],
5252
"default": "all",
5353
"description": "Whether to expand wildcard expression to concrete indices that are open, closed or both."
54-
},
55-
"local": {
56-
"type": "boolean",
57-
"description": "Return local information, do not retrieve the state from master node (default: false)"
5854
}
5955
}
6056
}

specification/_json_spec/indices.get_alias.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@
6565
"options": ["open", "closed", "hidden", "none", "all"],
6666
"default": "all",
6767
"description": "Whether to expand wildcard expression to concrete indices that are open, closed or both."
68-
},
69-
"local": {
70-
"type": "boolean",
71-
"description": "Return local information, do not retrieve the state from master node (default: false)"
7268
}
7369
}
7470
}

specification/indices/exists_alias/IndicesExistsAliasRequest.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,5 @@ export interface Request extends RequestBase {
5959
* @server_default false
6060
*/
6161
ignore_unavailable?: boolean
62-
/**
63-
* If `true`, the request retrieves information from the local node only.
64-
* @server_default false
65-
*/
66-
local?: boolean
6762
}
6863
}

specification/indices/get_alias/IndicesGetAliasRequest.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,5 @@ export interface Request extends RequestBase {
6262
* @server_default false
6363
*/
6464
ignore_unavailable?: boolean
65-
/**
66-
* If `true`, the request retrieves information from the local node only.
67-
* @server_default false
68-
*/
69-
local?: boolean
7065
}
7166
}

0 commit comments

Comments
 (0)