Skip to content

Commit 27be3c8

Browse files
pquentingithub-actions[bot]
authored andcommitted
Update rest-api-spec
1 parent 0b8119a commit 27be3c8

File tree

7 files changed

+102
-10
lines changed

7 files changed

+102
-10
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 4 additions & 4 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: 28 additions & 3 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: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_json_spec/ingest.delete_geoip_database.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"ingest.delete_geoip_database": {
33
"documentation": {
4-
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/TODO.html",
4+
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/delete-geoip-database-api.html",
55
"description": "Deletes a geoip database configuration"
66
},
77
"stability": "stable",

specification/_json_spec/ingest.get_geoip_database.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"ingest.get_geoip_database": {
33
"documentation": {
4-
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/TODO.html",
4+
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/get-geoip-database-api.html",
55
"description": "Returns geoip database configuration."
66
},
77
"stability": "stable",

specification/_json_spec/ingest.put_geoip_database.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"ingest.put_geoip_database": {
33
"documentation": {
4-
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/TODO.html",
4+
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/put-geoip-database-api.html",
55
"description": "Puts the configuration for a geoip database to be downloaded"
66
},
77
"stability": "stable",
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"snapshot.repository_verify_integrity": {
3+
"documentation": {
4+
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html",
5+
"description": "Verifies the integrity of the contents of a snapshot repository"
6+
},
7+
"stability": "experimental",
8+
"visibility": "private",
9+
"headers": {
10+
"accept": ["application/json"]
11+
},
12+
"url": {
13+
"paths": [
14+
{
15+
"path": "/_snapshot/{repository}/_verify_integrity",
16+
"methods": ["POST"],
17+
"parts": {
18+
"repository": {
19+
"type": "string",
20+
"description": "A repository name"
21+
}
22+
}
23+
}
24+
]
25+
},
26+
"params": {
27+
"meta_thread_pool_concurrency": {
28+
"type": "number",
29+
"description": "Number of threads to use for reading metadata"
30+
},
31+
"blob_thread_pool_concurrency": {
32+
"type": "number",
33+
"description": "Number of threads to use for reading blob contents"
34+
},
35+
"snapshot_verification_concurrency": {
36+
"type": "number",
37+
"description": "Number of snapshots to verify concurrently"
38+
},
39+
"index_verification_concurrency": {
40+
"type": "number",
41+
"description": "Number of indices to verify concurrently"
42+
},
43+
"index_snapshot_verification_concurrency": {
44+
"type": "number",
45+
"description": "Number of snapshots to verify concurrently within each index"
46+
},
47+
"max_failed_shard_snapshots": {
48+
"type": "number",
49+
"description": "Maximum permitted number of failed shard snapshots"
50+
},
51+
"verify_blob_contents": {
52+
"type": "boolean",
53+
"description": "Whether to verify the contents of individual blobs"
54+
},
55+
"max_bytes_per_sec": {
56+
"type": "string",
57+
"description": "Rate limit for individual blob verification"
58+
}
59+
}
60+
}
61+
}

0 commit comments

Comments
 (0)