| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- namespace Elasticsearch\Endpoints\Indices\Alias;
- use Elasticsearch\Endpoints\AbstractEndpoint;
- use Elasticsearch\Common\Exceptions;
- /**
- * Class Put
- *
- * @category Elasticsearch
- * @package Elasticsearch\Endpoints\Indices\Alias
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class Put extends AbstractEndpoint
- {
- // The name of the alias to be created or updated
- private $name;
- /**
- * @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;
- }
- /**
- * @param $name
- *
- * @return $this
- */
- public function setName($name)
- {
- if (isset($name) !== true) {
- return $this;
- }
- $this->name = $name;
- return $this;
- }
- /**
- * @throws \Elasticsearch\Common\Exceptions\RuntimeException
- * @return string
- */
- public function getURI()
- {
- if (isset($this->name) !== true) {
- throw new Exceptions\RuntimeException(
- 'name is required for Put'
- );
- }
- if (isset($this->index) !== true) {
- throw new Exceptions\RuntimeException(
- 'index is required for Put'
- );
- }
- $index = $this->index;
- $name = $this->name;
- $uri = "/$index/_alias/$name";
- return $uri;
- }
- /**
- * @return string[]
- */
- public function getParamWhitelist()
- {
- return array(
- 'timeout',
- 'master_timeout',
- );
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return 'PUT';
- }
- }
|