Home
last modified time | relevance | path

Searched refs:endpoint (Results 76 – 100 of 132) sorted by path

123456

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DTextStructureNamespace.php58 $endpoint = $endpointBuilder('TextStructure\FindStructure');
59 $endpoint->setParams($params);
60 $endpoint->setBody($body);
62 return $this->performRequest($endpoint);
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/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/ruflin/elastica/src/
H A DClient.php283 $endpoint = new Update();
284 $endpoint->setId($id);
285 $endpoint->setIndex($index);
320 $endpoint->setBody($requestData);
321 $endpoint->setParams($options);
323 $response = $this->requestEndpoint($endpoint);
578 public function requestEndpoint(AbstractEndpoint $endpoint): Response
581 \ltrim($endpoint->getURI(), '/'),
582 $endpoint->getMethod(),
583 $endpoint
546 requestEndpoint(AbstractEndpoint $endpoint) global() argument
[all...]
H A DIndex.php124 $endpoint = \class_exists(GetMapping::class) ? new GetMapping() : new MappingGet();
126 $response = $this->requestEndpoint($endpoint);
195 $endpoint = new UpdateByQuery();
202 $endpoint->setBody($body);
203 $endpoint->setParams($options);
205 return $this->requestEndpoint($endpoint);
217 $endpoint = new IndexEndpoint();
220 $endpoint->setId($doc->getId());
238 $endpoint->setBody($doc->getData());
239 $endpoint
664 requestEndpoint(AbstractEndpoint $endpoint) global() argument
[all...]
H A DMapping.php168 $endpoint = \class_exists(PutMapping::class) ? new PutMapping() : new Put();
169 $endpoint->setBody($this->toArray());
170 $endpoint->setParams($query);
172 return $index->requestEndpoint($endpoint);
H A DPipeline.php70 $endpoint = \class_exists(PutPipeline::class) ? new PutPipeline() : new Put();
71 $endpoint->setId($this->id);
72 $endpoint->setBody($this->toArray());
74 return $this->requestEndpoint($endpoint);
85 $endpoint = \class_exists(GetPipeline::class) ? new GetPipeline() : new Get();
86 $endpoint->setId($id);
88 return $this->requestEndpoint($endpoint);
99 $endpoint = \class_exists(DeletePipeline::class) ? new DeletePipeline() : new Delete();
100 $endpoint->setId($id);
102 return $this->requestEndpoint($endpoint);
175 requestEndpoint(AbstractEndpoint $endpoint) global() argument
[all...]
H A DSnapshot.php188 $endpoint = (new Restore())
197 return $this->_client->requestEndpoint($endpoint);
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);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Cluster/
H A DHealth.php188 $endpoint = new \Elasticsearch\Endpoints\Cluster\Health();
189 $endpoint->setParams(['level' => 'shards']);
191 $response = $this->_client->requestEndpoint($endpoint);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Index/
H A DRecovery.php97 $endpoint = new RecoveryEndpoint();
99 $this->_response = $this->getIndex()->requestEndpoint($endpoint);
/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/evesso/classes/
H A DoAuthHTTPClient.php20 * @param UriInterface $endpoint
30 UriInterface $endpoint, argument
38 $ok = $http->sendRequest($endpoint->getAbsoluteUri(), $requestBody, $method);
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Client/
H A DClientInterface.php17 * @param UriInterface $endpoint
27 UriInterface $endpoint, argument
H A DCurlClient.php54 * @param UriInterface $endpoint
65 UriInterface $endpoint, argument
83 $extraHeaders['Host'] = 'Host: '.$endpoint->getHost();
88 curl_setopt($ch, CURLOPT_URL, $endpoint->getAbsoluteUri());
H A DStreamClient.php17 * @param UriInterface $endpoint
28 UriInterface $endpoint, argument
46 $host = 'Host: '.$endpoint->getHost();
48 if ($endpoint->hasExplicitPortSpecified()) {
49 $host .= ':'.$endpoint->getPort();
63 $response = file_get_contents($endpoint->getAbsoluteUri(), false, $context);
/plugin/fedauth/Auth/OpenID/
H A DConsumer.php349 if ($endpoint === null) {
426 $endpoint =
781 $endpoint = $result;
1029 if ($endpoint !== null) {
1043 return $endpoint;
1147 if (!$endpoint) {
1177 return $endpoint;
1758 $this->endpoint = $endpoint;
1979 $this->endpoint = $endpoint;
1980 if ($endpoint === null) {
[all …]
H A DSReg.php97 function Auth_OpenID_supportsSReg($endpoint) argument
99 return ($endpoint->usesExtension(Auth_OpenID_SREG_NS_URI_1_1) ||
100 $endpoint->usesExtension(Auth_OpenID_SREG_NS_URI_1_0));
H A DTrustRoot.php344 function filter_extractReturnURL($endpoint) argument
346 if ($endpoint->matchTypes(array(Auth_OpenID_RP_RETURN_TO_URL_TYPE))) {
347 return $endpoint;
357 foreach ($endpoint_list as $endpoint) {
358 if (filter_extractReturnURL($endpoint)) {
359 $result[] = $endpoint;
/plugin/findologicxmlexport/vendor/doctrine/annotations/
H A DCHANGELOG.md21 This release brings a new endpoint that make sure that you can't shoot yourself in the foot by call…
/plugin/googlesearch/
H A Dnusoap.php4024 if(false == $endpoint) {
4039 $this->wsdl->endpoint = $endpoint;
4057 'location'=>$endpoint,
4095 var $endpoint = ''; variable in wsdl
5741 'endpoint' => $this->endpoint,
6416 var $endpoint; variable in soapclient
6476 $this->endpoint = $endpoint;
6486 if (is_object($endpoint) && (get_class($endpoint) == 'wsdl')) {
6487 $this->wsdl = $endpoint;
6866 function setEndpoint($endpoint) { argument
[all …]

123456