From 90dfd78267e1a04a427ba51b75c44a5fb041c568 Mon Sep 17 00:00:00 2001 From: Ryan Ernst Date: Tue, 24 Mar 2015 10:13:19 -0700 Subject: [PATCH] Remove missed references to delete mapping API See #10231 --- docs/reference/migration/migrate_1_0.asciidoc | 1 - rest-api-spec/api/indices.delete_mapping.json | 29 ------------------- 2 files changed, 30 deletions(-) delete mode 100644 rest-api-spec/api/indices.delete_mapping.json diff --git a/docs/reference/migration/migrate_1_0.asciidoc b/docs/reference/migration/migrate_1_0.asciidoc index 91cee08e629..aca40b33efb 100644 --- a/docs/reference/migration/migrate_1_0.asciidoc +++ b/docs/reference/migration/migrate_1_0.asciidoc @@ -143,7 +143,6 @@ In the future we will also provide plural versions to allow putting multiple map See <>, <>, <>, -<>, <>, <>, <>, and <> for more details. diff --git a/rest-api-spec/api/indices.delete_mapping.json b/rest-api-spec/api/indices.delete_mapping.json deleted file mode 100644 index f936c4a5ffa..00000000000 --- a/rest-api-spec/api/indices.delete_mapping.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "indices.delete_mapping": { - "documentation": "http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-delete-mapping.html", - "methods": ["DELETE"], - "url": { - "path": "/{index}/{type}/_mapping", - "paths": ["/{index}/{type}/_mapping", "/{index}/{type}", "/{index}/_mapping/{type}", "/{index}/{type}/_mappings", "/{index}/_mappings/{type}"], - "parts": { - "index": { - "type" : "list", - "required" : true, - "description" : "A comma-separated list of index names (supports wildcards); use `_all` for all indices" - }, - "type": { - "type" : "list", - "required" : true, - "description" : "A comma-separated list of document types to delete (supports wildcards); use `_all` to delete all document types in the specified indices." - } - }, - "params": { - "master_timeout": { - "type" : "time", - "description" : "Specify timeout for connection to master" - } - } - }, - "body": null - } -}