OpenSearch/rest-api-spec/test/delete/10_basic.yaml

21 lines
298 B
YAML

---
"Basic":
- do:
index:
index: test_1
type: test
id: 1
body: { foo: bar }
- is_true: ok
- match: { _version: 1 }
- do:
delete:
index: test_1
type: test
id: 1
- match: { _version: 2 }