* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class Put extends AbstractEndpoint { /** * @param array $body * * @throws \Elasticsearch\Common\Exceptions\InvalidArgumentException * @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->type) !== true) { throw new Exceptions\RuntimeException( 'type is required for Put' ); } $index = $this->index; $type = $this->type; $uri = "/_mapping/$type"; if (isset($index) === true && isset($type) === true) { $uri = "/$index/$type/_mapping"; } elseif (isset($type) === true) { $uri = "/_mapping/$type"; } return $uri; } /** * @return string[] */ public function getParamWhitelist() { return array( 'ignore_conflicts', 'timeout', 'master_timeout', 'ignore_unavailable', 'allow_no_indices', 'expand_wildcards', 'update_all_types' ); } /** * @return array * @throws \Elasticsearch\Common\Exceptions\RuntimeException */ public function getBody() { if (isset($this->body) !== true) { throw new Exceptions\RuntimeException('Body is required for Put Mapping'); } return $this->body; } /** * @return string */ public function getMethod() { return 'PUT'; } }