elasticsearch/docs/reference/snapshot-restore/apis/verify-repo-api.asciidoc
Lisa Cawley d9c6b679da
[8.17] [DOCS] More links to new API site (#119380) (#119419)
* [DOCS] More links to new API site (#119380)

* Fix example test failure
2025-01-01 10:06:07 +11:00

84 lines
1.7 KiB
Text

[[verify-snapshot-repo-api]]
=== Verify snapshot repository API
++++
<titleabbrev>Verify snapshot repository</titleabbrev>
++++
.New API reference
[sidebar]
--
For the most up-to-date API details, refer to {api-es}/group/endpoint-snapshot[Snapshot and restore APIs].
--
Checks for common misconfigurations in a snapshot repository. See
<<snapshots-repository-verification>>.
////
[source,console]
----
PUT /_snapshot/my_repository
{
"type": "fs",
"settings": {
"location": "my_backup_location"
}
}
----
// TESTSETUP
////
[source,console]
----
POST /_snapshot/my_repository/_verify
----
[[verify-snapshot-repo-api-request]]
==== {api-request-title}
`POST /_snapshot/<repository>/_verify`
[[verify-snapshot-repo-api-prereqs]]
==== {api-prereq-title}
* If the {es} {security-features} are enabled, you must have the `manage`
<<privileges-list-cluster,cluster privilege>> to use this API.
[[verify-snapshot-repo-api-path-params]]
==== {api-path-parms-title}
`<repository>`::
(Required, string)
Name of the snapshot repository to verify.
[[verify-snapshot-repo-api-query-params]]
==== {api-query-parms-title}
include::{es-ref-dir}/rest-api/common-parms.asciidoc[tag=timeoutparms]
[role="child_attributes"]
[[verify-snapshot-repo-api-response-body]]
==== {api-response-body-title}
`nodes`::
(object)
+
.Properties of `nodes` objects
[%collapsible%open]
====
`<node_id>`::
(object)
Contains information about a node connected to the snapshot repository.
+
The key is the ID of the node.
+
.Properties of `<node_id>`
[%collapsible%open]
=====
`name`::
(string)
Human-readable name for the node.
+
You can set this name using the <<node-name,`node.name`>> property in
`elasticsearch.yml`. Defaults to the machine's hostname.
=====
====