summaryrefslogtreecommitdiff
path: root/rest-api-spec/src/main/resources/rest-api-spec/test/indices.delete/10_basic.yml
blob: 40486da9e7e76b0c1a31e106a72758488fe6bee6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
setup:
  - do:
      indices.create:
        index: index
        body:
          aliases:
            alias: {}
  - do:
      indices.create:
        index: index2
---
"Delete index against alias":
  - skip:
      version: " - 5.99.0"
      reason: delete index doesn't support aliases only from 6.0.0 on
  - do:
      catch: request
      indices.delete:
        index: alias
  - do:
      indices.get:
        index: index,index2
  - is_true: index
  - is_true: index2
---
"Delete index against alias - ignore unavailable":
  - skip:
      version: " - 5.99.0"
      reason: delete index doesn't support aliases only from 6.0.0 on
  - do:
      indices.delete:
        index: alias
        ignore_unavailable: true
  - do:
      indices.get:
        index: index,index2
  - is_true: index
  - is_true: index2
---
"Delete index against alias -  multiple indices":
  - skip:
      version: " - 5.99.0"
      reason: delete index doesn't support aliases only from 6.0.0 on
  - do:
      catch: request
      indices.delete:
        index: alias,index2
  - do:
      indices.get:
        index: index,index2
  - is_true: index
  - is_true: index2
---
"Delete index against alias -  ignore unavailable - multiple indices":
  - skip:
      version: " - 5.99.0"
      reason: delete index doesn't support aliases only from 6.0.0 on
  - do:
      indices.delete:
        index: alias,index2
        ignore_unavailable: true
  - do:
      indices.get:
        index: index,index2
        ignore_unavailable: true
  - is_true: index
  - is_false: index2
---
"Delete index against wildcard matching alias":
  - skip:
      version: " - 5.99.0"
      reason: delete index doesn't support aliases only from 6.0.0 on
  - do:
      indices.delete:
        index: alia*
  - do:
      indices.get:
        index: index,index2
  - is_true: index
  - is_true: index2
---
"Delete index against wildcard matching alias - disallow no indices":
  - skip:
      version: " - 5.99.0"
      reason: delete index doesn't support aliases only from 6.0.0 on
  - do:
      catch: missing
      indices.delete:
        index: alia*
        allow_no_indices: false
  - do:
      indices.get:
        index: index,index2
  - is_true: index
  - is_true: index2
---
"Delete index against wildcard matching alias - multiple indices":
  - skip:
      version: " - 5.99.0"
      reason: delete index doesn't support aliases only from 6.0.0 on
  - do:
      indices.delete:
        index: alia*,index2
  - do:
      indices.get:
        index: index,index2
        ignore_unavailable: true
  - is_true: index
  - is_false: index2
---
"Delete index against wildcard matching alias - disallow no indices - multiple indices":
  - skip:
      version: " - 5.99.0"
      reason: delete index doesn't support aliases only from 6.0.0 on
  - do:
      catch: missing
      indices.delete:
        index: index2,alia*
        allow_no_indices: false
  - do:
      indices.get:
        index: index,index2
  - is_true: index
  - is_true: index2