* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class Put extends AbstractEndpoint { /** * @param array $body * * @return $this */ public function setBody($body) { if (isset($body) !== true) { return $this; } $this->body = $body; return $this; } /** * @throws \Elasticsearch\Common\Exceptions\RuntimeException * @return string */ public function getURI() { if (isset($this->id) !== true) { throw new Exceptions\RuntimeException( 'id is required for Put' ); } $templateId = $this->id; $uri = "/_search/template/$templateId"; return $uri; } /** * @return string[] */ public function getParamWhitelist() { return array(); } /** * @return string */ public function getMethod() { return 'PUT'; } }