���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/rickpfrv/drive.rickard.co/systemMYs/classes/vendor/Elasticsearch/Endpoints/Indices/Alias/Delete.php
���ѧ٧ѧ�
<?php namespace Elasticsearch\Endpoints\Indices\Alias; use Elasticsearch\Endpoints\AbstractEndpoint; use Elasticsearch\Common\Exceptions; /** * Class Delete * * @category Elasticsearch * @package Elasticsearch\Endpoints\Indices\Alias * @author Zachary Tong <zach@elastic.co> * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class Delete extends AbstractEndpoint { // A comma-separated list of aliases to delete (supports wildcards); use `_all` to delete all aliases for the specified indices. private $name; /** * @param $name * * @return $this */ public function setName($name) { if (isset($name) !== true) { return $this; } $this->name = $name; return $this; } /** * @throws \Elasticsearch\Common\Exceptions\RuntimeException * @return string */ public function getURI() { if (isset($this->index) !== true) { throw new Exceptions\RuntimeException( 'index is required for Delete' ); } if (isset($this->name) !== true) { throw new Exceptions\RuntimeException( 'name is required for Delete' ); } $index = $this->index; $name = $this->name; $uri = "/$index/_alias/$name"; if (isset($index) === true && isset($name) === true) { $uri = "/$index/_alias/$name"; } return $uri; } /** * @return string[] */ public function getParamWhitelist() { return array( 'timeout', 'master_timeout', ); } /** * @return string */ public function getMethod() { return 'DELETE'; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0.19 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�