Skip to content

Commit 32d8ab5

Browse files
authored
Merge branch 'main' into eslint-validator
2 parents c385561 + e103049 commit 32d8ab5

File tree

6 files changed

+251
-3
lines changed

6 files changed

+251
-3
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 116 additions & 0 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: 53 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"indices.get_data_stream_settings": {
3+
"documentation": {
4+
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/data-streams.html",
5+
"description": "Gets a data stream's settings"
6+
},
7+
"stability": "stable",
8+
"visibility": "feature_flag",
9+
"feature_flag": "logs_stream",
10+
"headers": {
11+
"accept": ["application/json"]
12+
},
13+
"url": {
14+
"paths": [
15+
{
16+
"path": "/_data_stream/{name}/_settings",
17+
"methods": ["GET"],
18+
"parts": {
19+
"name": {
20+
"type": "string",
21+
"description": "The name of the data stream or data stream pattern"
22+
}
23+
}
24+
}
25+
]
26+
},
27+
"params": {
28+
"timeout": {
29+
"type": "time",
30+
"description": "Specify timeout for acknowledging the cluster state update"
31+
},
32+
"master_timeout": {
33+
"type": "time",
34+
"description": "Specify timeout for connection to master"
35+
}
36+
}
37+
}
38+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"indices.put_data_stream_settings": {
3+
"documentation": {
4+
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/data-streams.html",
5+
"description": "Updates a data stream's settings"
6+
},
7+
"stability": "stable",
8+
"visibility": "feature_flag",
9+
"feature_flag": "logs_stream",
10+
"headers": {
11+
"accept": ["application/json"]
12+
},
13+
"url": {
14+
"paths": [
15+
{
16+
"path": "/_data_stream/{name}/_settings",
17+
"methods": ["PUT"],
18+
"parts": {
19+
"name": {
20+
"type": "string",
21+
"description": "The name of the data stream or data stream pattern"
22+
}
23+
}
24+
}
25+
]
26+
},
27+
"params": {
28+
"timeout": {
29+
"type": "time",
30+
"description": "Specify timeout for acknowledging the cluster state update"
31+
},
32+
"master_timeout": {
33+
"type": "time",
34+
"description": "Specify timeout for connection to master"
35+
}
36+
},
37+
"body": {
38+
"description": "The data stream settings to be updated",
39+
"required": true
40+
}
41+
}
42+
}

specification/_json_spec/snapshot.repository_verify_integrity.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Verifies the integrity of the contents of a snapshot repository"
66
},
77
"stability": "experimental",
8-
"visibility": "private",
8+
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"]
1111
},

specification/snapshot/repository_verify_integrity/SnapshotRepositoryVerifyIntegrityRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ import { integer } from '@_types/Numeric'
5959
* The response exposes implementation details of the analysis which may change from version to version.
6060
* The response body format is therefore not considered stable and may be different in newer versions.
6161
* @rest_spec_name snapshot.repository_verify_integrity
62-
* @availability stack since=8.16.0 stability=experimental visibility=private
62+
* @availability stack since=8.16.0 stability=experimental visibility=public
6363
* @cluster_privileges manage
6464
* @doc_id snapshot-repo-verify-integrity
6565
*/

0 commit comments

Comments
 (0)