Home
last modified time | relevance | path

Searched refs:endpoint (Results 51 – 75 of 132) sorted by last modified time

123456

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DNodesNamespace.php49 $endpoint = $endpointBuilder('Nodes\ClearRepositoriesMeteringArchive');
50 $endpoint->setParams($params);
51 $endpoint->setNodeId($node_id);
52 $endpoint->setMaxArchiveVersion($max_archive_version);
54 return $this->performRequest($endpoint);
73 $endpoint = $endpointBuilder('Nodes\GetRepositoriesMeteringInfo');
74 $endpoint->setParams($params);
75 $endpoint->setNodeId($node_id);
77 return $this->performRequest($endpoint);
99 $endpoint
[all...]
H A DSlmNamespace.php44 $endpoint = $endpointBuilder('Slm\DeleteLifecycle');
45 $endpoint->setParams($params);
46 $endpoint->setPolicyId($policy_id);
48 return $this->performRequest($endpoint);
64 $endpoint = $endpointBuilder('Slm\ExecuteLifecycle');
65 $endpoint->setParams($params);
66 $endpoint->setPolicyId($policy_id);
68 return $this->performRequest($endpoint);
82 $endpoint = $endpointBuilder('Slm\ExecuteRetention');
83 $endpoint
[all...]
H A DTextStructureNamespace.php58 $endpoint = $endpointBuilder('TextStructure\FindStructure');
59 $endpoint->setParams($params);
60 $endpoint->setBody($body);
62 return $this->performRequest($endpoint);
H A DAsyncSearchNamespace.php44 $endpoint = $endpointBuilder('AsyncSearch\Delete');
45 $endpoint->setParams($params);
46 $endpoint->setId($id);
48 return $this->performRequest($endpoint);
67 $endpoint = $endpointBuilder('AsyncSearch\Get');
68 $endpoint->setParams($params);
69 $endpoint->setId($id);
71 return $this->performRequest($endpoint);
87 $endpoint = $endpointBuilder('AsyncSearch\Status');
88 $endpoint
[all...]
H A DAutoscalingNamespace.php44 $endpoint = $endpointBuilder('Autoscaling\DeleteAutoscalingPolicy');
45 $endpoint->setParams($params);
46 $endpoint->setName($name);
48 return $this->performRequest($endpoint);
62 $endpoint = $endpointBuilder('Autoscaling\GetAutoscalingCapacity');
63 $endpoint->setParams($params);
65 return $this->performRequest($endpoint);
81 $endpoint = $endpointBuilder('Autoscaling\GetAutoscalingPolicy');
82 $endpoint->setParams($params);
83 $endpoint
[all...]
H A DBooleanRequestWrapper.php35 public static function performRequest(AbstractEndpoint $endpoint, Transport $transport) argument
39 $endpoint->getMethod(),
40 $endpoint->getURI(),
41 $endpoint->getParams(),
42 $endpoint->getBody(),
43 $endpoint->getOptions()
46 $response = $transport->resultOrFuture($response, $endpoint->getOptions());
H A DIngestNamespace.php46 $endpoint = $endpointBuilder('Ingest\DeletePipeline');
47 $endpoint->setParams($params);
48 $endpoint->setId($id);
50 return $this->performRequest($endpoint);
64 $endpoint = $endpointBuilder('Ingest\GeoIpStats');
65 $endpoint->setParams($params);
67 return $this->performRequest($endpoint);
85 $endpoint = $endpointBuilder('Ingest\GetPipeline');
86 $endpoint->setParams($params);
87 $endpoint
[all...]
H A DTransformNamespace.php45 $endpoint = $endpointBuilder('Transform\DeleteTransform');
46 $endpoint->setParams($params);
47 $endpoint->setTransformId($transform_id);
49 return $this->performRequest($endpoint);
69 $endpoint = $endpointBuilder('Transform\GetTransform');
70 $endpoint->setParams($params);
71 $endpoint->setTransformId($transform_id);
73 return $this->performRequest($endpoint);
92 $endpoint = $endpointBuilder('Transform\GetTransformStats');
93 $endpoint
[all...]
H A DWatcherNamespace.php46 $endpoint = $endpointBuilder('Watcher\AckWatch');
47 $endpoint->setParams($params);
48 $endpoint->setWatchId($watch_id);
49 $endpoint->setActionId($action_id);
51 return $this->performRequest($endpoint);
67 $endpoint = $endpointBuilder('Watcher\ActivateWatch');
68 $endpoint->setParams($params);
69 $endpoint->setWatchId($watch_id);
71 return $this->performRequest($endpoint);
87 $endpoint
[all...]
H A DXpackNamespace.php44 $endpoint = $endpointBuilder('Xpack\Info');
45 $endpoint->setParams($params);
47 return $this->performRequest($endpoint);
62 $endpoint = $endpointBuilder('Xpack\Usage');
63 $endpoint->setParams($params);
65 return $this->performRequest($endpoint);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dserializers.asciidoc24 structure (such as the Analyze endpoint).
72 structure (such as the Analyze endpoint).
H A Drelease-notes.asciidoc71 * Added the API description in phpdoc section for each endpoint
127 * Fixed reset custom header after endpoint call
234 * Add missing leading slash in the URL of put mapping endpoint
236 * Fix pre 7.2 endpoint class name with aliases + reapply fix #947. This PR
H A Dconfiguration.asciidoc24 * <<endpoint-closure>>
52 include::endpoint-closure.asciidoc[]
H A Dconnecting.asciidoc238 REST endpoint, document and optional parameters - everything is an associative
H A Dendpoint-closure.asciidoc1 [[endpoint-closure]]
9 For example, we could add a new endpoint like so:
38 wiring the Transport and Serializer into each endpoint
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClient.php269 * @param callable $endpoint
272 public function __construct(Transport $transport, callable $endpoint, array $registeredNamespaces) argument
275 $this->endpoints = $endpoint;
276 $this->asyncSearch = new AsyncSearchNamespace($transport, $endpoint);
277 $this->autoscaling = new AutoscalingNamespace($transport, $endpoint);
278 $this->cat = new CatNamespace($transport, $endpoint);
279 $this->ccr = new CcrNamespace($transport, $endpoint);
280 $this->cluster = new ClusterNamespace($transport, $endpoint);
281 $this->danglingIndices = new DanglingIndicesNamespace($transport, $endpoint);
282 $this->dataFrameTransformDeprecated = new DataFrameTransformDeprecatedNamespace($transport, $endpoint);
1939 performRequest(AbstractEndpoint $endpoint) global() argument
[all...]
H A DClientBuilder.php53 private $endpoint; variable in Elasticsearch\\ClientBuilder
168 return $this->endpoint;
307 * Set the endpoint
309 * @param callable $endpoint
311 public function setEndpoint(callable $endpoint): ClientBuilder argument
313 $this->endpoint = $endpoint;
669 if (is_null($this->endpoint)) {
672 $this->endpoint = function ($class) use ($serializer) {
694 return $this->instantiate($this->transport, $this->endpoint,
697 instantiate(Transport $transport, callable $endpoint, array $registeredNamespaces) global() argument
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md13 - Added the API description in phpdoc section for each endpoint
56 - Fixed reset custom header after endpoint call
137 - Add missing leading slash in the URL of put mapping endpoint
139 - Fix pre 7.2 endpoint class name with aliases + reapply fix #947.
266 - Added `track_total_hits` in `search` endpoint [0c9ff47](https://github.com/elastic/elasticsearch-php/commit/9f4f0dfa331c4f50d2c88c0068afd3062e6ea353)
271 - Added `seq_no_primary_term` parameter in `bulk` endpoint [#884](https://github.com/elastic/elasticsearch-php/pull/884)
272 - Added `include_type_name`, `if_primary_term`, `if_seq_no` in `delete` endpoint [#884](https://github.com/elastic/elasticsearch-php/pull/884)
274 - Added `seq_no_primary_term` in `search` endpoint [#884](https://github.com/elastic/elasticsearch-php/pull/884)
275 - Added `if_primary_term', 'if_seq_no`in `update` endpoint [#884](https://github.com/elastic/elasticsearch-php/pull/884)
287 - Remove `_suggest` endpoint, whic
[all...]
H A DREADME.md167 In elasticsearch-php, almost everything is configured by associative arrays. The REST endpoint, document and optional parameters - everything is an associative array.
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md202 * Added endpoint options support to `Elastica\Index::create()` [#1859](https://github.com/ruflin/Elastica/pull/1859)
471 * Added updateByQuery endpoint. [#1499](https://github.com/ruflin/Elastica/pull/1499)
585 - Add support for Health parameters for Cluster\Health endpoint (new prop : delayed_unassigned_shards, number_of_pending_tasks, number_of_in_flight_fetch, task_max_waiting_in_queue_millis, active_shards_percent_as_number)
645 - repoint `\Elastica\Type::exists` from the deprecated /{index}/{type} endpoint to /{index}/_mapping/{type}
1760 - Added Elastica_Cluster_Health, Elastica_Cluster_Health_Index and Elastica_Cluster_Health_Shard which wrap the _cluster/health endpoint.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClientBuilder.asciidoc181 .`setEndpoint(callable $endpoint)`
186 Set the endpoint
454 .`instantiate(Elasticsearch\Transport $transport, callable $endpoint, array $registeredNamespaces)`
/plugin/elasticsearch/vendor/ruflin/elastica/src/Node/
H A DInfo.php221 $endpoint = \class_exists(NodesInfo::class) ? new NodesInfo() : new \Elasticsearch\Endpoints\Cluster\Nodes\Info();
222 $endpoint->setNodeId($this->getNode()->getId());
225 $endpoint->setMetric($params);
228 $this->_response = $this->getNode()->getClient()->requestEndpoint($endpoint);
H A DStats.php118 $endpoint = \class_exists(NodesStats::class) ? new NodesStats() : new \Elasticsearch\Endpoints\Cluster\Nodes\Stats();
119 $endpoint->setNodeId($this->getNode()->getName());
121 $this->_response = $this->getNode()->getClient()->requestEndpoint($endpoint);
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DStatus.php105 $endpoint = \class_exists(GetAlias::class) ? new GetAlias() : new Get();
106 $endpoint->setName($alias);
111 $response = $this->_client->requestEndpoint($endpoint);
H A DTask.php96 $endpoint = (new Tasks\Get())
101 $this->_response = $this->_client->requestEndpoint($endpoint);
121 $endpoint = (new Tasks\Cancel())
125 return $this->_client->requestEndpoint($endpoint);

123456