| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace Elasticsearch\Endpoints\Indices;
- use Elasticsearch\Endpoints\AbstractEndpoint;
- use Elasticsearch\Common\Exceptions;
- /**
- * Class Seal
- *
- * @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 Seal extends AbstractEndpoint
- {
- /**
- * @throws \Elasticsearch\Common\Exceptions\RuntimeException
- * @return string
- */
- public function getURI()
- {
- $index = $this->index;
- $uri = "/_seal";
- if (isset($index) === true) {
- $uri = "/$index/_seal";
- }
- return $uri;
- }
- /**
- * @return string[]
- */
- public function getParamWhitelist()
- {
- return array();
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return 'POST';
- }
- }
|