File tree 2 files changed +15
-1
lines changed
docs/reference/snapshot-restore/apis
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ include::restore-snapshot-api.asciidoc[tag=cluster-state-contents]
115
115
Comma-separated list of data streams and indices to include in the snapshot.
116
116
Supports <<api-multi-index,multi-index syntax>>. Defaults to an empty array
117
117
(`[]`), which includes all regular data streams and regular indices. To exclude
118
- all data streams and indices, use `-*` or `none` .
118
+ all data streams and indices, use `-*`.
119
119
+
120
120
You can't use this parameter to include or exclude <<system-indices,system
121
121
indices or system data streams>> from a snapshot. Use
Original file line number Diff line number Diff line change @@ -18,10 +18,24 @@ PUT /_snapshot/my_repository
18
18
}
19
19
20
20
PUT /_snapshot/my_repository/my_snapshot?wait_for_completion=true
21
+ {
22
+ "indices":"-*"
23
+ }
21
24
22
25
PUT /_snapshot/my_repository/snapshot_1?wait_for_completion=true
26
+ {
27
+ "indices":"-*"
28
+ }
29
+
23
30
PUT /_snapshot/my_repository/snapshot_2?wait_for_completion=true
31
+ {
32
+ "indices":"-*"
33
+ }
34
+
24
35
PUT /_snapshot/my_repository/snapshot_3?wait_for_completion=true
36
+ {
37
+ "indices":"-*"
38
+ }
25
39
----
26
40
// TESTSETUP
27
41
////
You can’t perform that action at this time.
0 commit comments