Relative to #4892
@@ -32,10 +32,6 @@
"type" : "boolean",
"description" : "Refresh the shard containing the document before performing the operation"
},
- "source": {
- "type" : "string",
- "description" : "The URL-encoded request definition using the Query DSL (instead of using request body)"
- },
"_source": {
"type" : "list",
"description" : "True or false to return the _source field or not, or a list of fields to return"
@@ -1,27 +0,0 @@
----
-"Source":
-
- - do:
- indices.create:
- index: test_1
- cluster.health:
- wait_for_status: yellow
- index:
- type: test
- id: 1
- body: { foo: bar }
- mget:
- source: "{\"ids\":[\"1\"]}"
- - is_true: docs.0.found
- - match: { docs.0._index: test_1 }
- - match: { docs.0._type: test }
- - match: { docs.0._id: "1" }