���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/rickpfrv/drive.rickard.co/systemMYs/classes/vendor/Elasticsearch/Endpoints/Cluster/State.php
���ѧ٧ѧ�
<?php namespace Elasticsearch\Endpoints\Cluster; use Elasticsearch\Endpoints\AbstractEndpoint; /** * Class State * * @category Elasticsearch * @package Elasticsearch\Endpoints\Cluster * @author Zachary Tong <zach@elastic.co> * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class State extends AbstractEndpoint { // Limit the information returned to the specified metrics private $metric; /** * @param $metric * * @return $this */ public function setMetric($metric) { if (isset($metric) !== true) { return $this; } if (is_array($metric) === true) { $metric = implode(",", $metric); } $this->metric = $metric; return $this; } /** * @return string */ public function getURI() { $index = $this->index; $metric = $this->metric; $uri = "/_cluster/state"; if (isset($metric) === true && isset($index) === true) { $uri = "/_cluster/state/$metric/$index"; } elseif (isset($metric) === true) { $uri = "/_cluster/state/$metric"; } return $uri; } /** * @return string[] */ public function getParamWhitelist() { return array( 'local', 'master_timeout', 'flat_settings', 'index_templates', 'expand_wildcards', 'ignore_unavailable', 'allow_no_indices' ); } /** * @return string */ public function getMethod() { return 'GET'; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�