| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace Elasticsearch\Endpoints\Indices;
- use Elasticsearch\Endpoints\AbstractEndpoint;
- /**
- * Class Refresh
- *
- * @category Elasticsearch
- * @package Elasticsearch\Endpoints\Indices
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class Refresh extends AbstractEndpoint
- {
- /**
- * @return string
- */
- public function getURI()
- {
- $index = $this->index;
- $uri = "/_refresh";
- if (isset($index) === true) {
- $uri = "/$index/_refresh";
- }
- return $uri;
- }
- /**
- * @return string[]
- */
- public function getParamWhitelist()
- {
- return array(
- 'ignore_unavailable',
- 'allow_no_indices',
- 'expand_wildcards',
- 'force',
- 'operation_threading',
- );
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return 'GET';
- }
- }
|