name) !== true) { throw new RuntimeException( 'name is required for exists_alias' ); } $name = $this->name; $index = $this->index ?? null; if (isset($index)) { return "/$index/_alias/$name"; } return "/_alias/$name"; } public function getParamWhitelist(): array { return [ 'ignore_unavailable', 'allow_no_indices', 'expand_wildcards', 'local' ]; } public function getMethod(): string { return 'HEAD'; } public function setName($name): ExistsAlias { if (isset($name) !== true) { return $this; } if (is_array($name) === true) { $name = implode(",", $name); } $this->name = $name; return $this; } }