| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace Elasticsearch\Endpoints\Indices\Alias;
- use Elasticsearch\Endpoints\AbstractEndpoint;
- /**
- * Class Exists
- *
- * @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 Exists extends AbstractEndpoint
- {
- // A comma-separated list of alias names to return
- private $name;
- /**
- * @param $name
- *
- * @return $this
- */
- public function setName($name)
- {
- if (isset($name) !== true) {
- return $this;
- }
- $this->name = $name;
- return $this;
- }
- /**
- * @return string
- */
- public function getURI()
- {
- $index = $this->index;
- $name = $this->name;
- $uri = "/_alias/$name";
- if (isset($index) === true && isset($name) === true) {
- $uri = "/$index/_alias/$name";
- } elseif (isset($index) === true) {
- $uri = "/$index/_alias";
- } elseif (isset($name) === true) {
- $uri = "/_alias/$name";
- }
- return $uri;
- }
- /**
- * @return string[]
- */
- public function getParamWhitelist()
- {
- return array(
- 'ignore_unavailable',
- 'allow_no_indices',
- 'expand_wildcards',
- 'local',
- );
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return 'HEAD';
- }
- }
|