* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class Delete extends AbstractEndpoint { /** * @throws \Elasticsearch\Common\Exceptions\RuntimeException * @return string */ public function getURI() { if (isset($this->id) !== true) { throw new Exceptions\RuntimeException( 'id is required for DeletePipeline' ); } $id = $this->id; $uri = "/_ingest/pipeline/$id"; return $uri; } /** * @return string[] */ public function getParamWhitelist() { return array( 'master_timeout', 'timeout' ); } /** * @return string */ public function getMethod() { return 'DELETE'; } }