* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class Aliases 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() { $name = $this->name; $uri = "/_cat/aliases"; if (isset($name) === true) { $uri = "/_cat/aliases/$name"; } return $uri; } /** * @return string[] */ public function getParamWhitelist() { return array( 'local', 'master_timeout', 'h', 'help', 'v', 'format', 's', 'format', ); } /** * @return string */ public function getMethod() { return 'GET'; } }