mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-02 08:59:09 +00:00
21 lines
332 B
YAML
21 lines
332 B
YAML
---
|
|
"Default values":
|
|
|
|
- do:
|
|
index:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
body: { "foo": "bar" }
|
|
|
|
- do:
|
|
get:
|
|
index: test_1
|
|
id: 1
|
|
|
|
- match: { _index: test_1 }
|
|
- match: { _type: test }
|
|
- match: { _id: '1' }
|
|
- match: { _source: { foo: "bar" } }
|
|
|