Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ include::restore-snapshot-api.asciidoc[tag=cluster-state-contents]
Comma-separated list of data streams and indices to include in the snapshot.
Supports <<api-multi-index,multi-index syntax>>. Defaults to an empty array
(`[]`), which includes all regular data streams and regular indices. To exclude
all data streams and indices, use `-*` or `none`.
all data streams and indices, use `-*`.
+
You can't use this parameter to include or exclude <<system-indices,system
indices or system data streams>> from a snapshot. Use
Expand Down
14 changes: 14 additions & 0 deletions docs/reference/snapshot-restore/apis/get-snapshot-api.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,24 @@ PUT /_snapshot/my_repository
}

PUT /_snapshot/my_repository/my_snapshot?wait_for_completion=true
{
"indices":"-*"
}

PUT /_snapshot/my_repository/snapshot_1?wait_for_completion=true
{
"indices":"-*"
}

PUT /_snapshot/my_repository/snapshot_2?wait_for_completion=true
{
"indices":"-*"
}

PUT /_snapshot/my_repository/snapshot_3?wait_for_completion=true
{
"indices":"-*"
}
----
// TESTSETUP
////
Expand Down