| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace Elasticsearch\Endpoints\Ingest\Pipeline;
- use Elasticsearch\Common\Exceptions;
- use Elasticsearch\Endpoints\AbstractEndpoint;
- /**
- * Class ProcessorGrok
- *
- * @category Elasticsearch
- * @package Elasticsearch\Endpoints\Ingest
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class ProcessorGrok extends AbstractEndpoint
- {
- /**
- * @throws \Elasticsearch\Common\Exceptions\RuntimeException
- * @return string
- */
- public function getURI()
- {
- return "/_ingest/processor/grok";
- }
- /**
- * @return string[]
- */
- public function getParamWhitelist()
- {
- return [];
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return 'GET';
- }
- }
|