Home
last modified time | relevance | path

Searched refs:params (Results 251 – 275 of 2939) sorted by last modified time

1...<<11121314151617181920>>...118

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DSnapshotNamespace.php33 * $params['repository'] = (string) A repository name
34 * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
35 * $params['timeout'] = (time) Explicit operation timeout
37 * @param array $params Associative array of parameters
41 public function cleanupRepository(array $params = []) argument
43 $repository = $this->extractArgument($params, 'repository');
47 $endpoint->setParams($params);
55 * $params['repository'] = (string) A repository name
56 * $params['snapshot'] = (string) The name of the snapshot to clone from
57 * $params['target_snapsho
65 clone(array $params = []) global() argument
95 create(array $params = []) global() argument
123 createRepository(array $params = []) global() argument
147 delete(array $params = []) global() argument
171 deleteRepository(array $params = []) global() argument
197 get(array $params = []) global() argument
221 getRepository(array $params = []) global() argument
252 repositoryAnalyze(array $params = []) global() argument
276 restore(array $params = []) global() argument
303 status(array $params = []) global() argument
327 verifyRepository(array $params = []) global() argument
[all...]
H A DSqlNamespace.php33 * $params['body'] = (array) Specify the cursor value in the `cursor` element to clean the cursor. (Required)
35 * @param array $params Associative array of parameters
39 public function clearCursor(array $params = []) argument
41 $body = $this->extractArgument($params, 'body');
45 $endpoint->setParams($params);
53 * $params['id'] = (string) The async search ID
55 * @param array $params Associative array of parameters
59 public function deleteAsync(array $params = []) argument
61 $id = $this->extractArgument($params, 'id');
65 $endpoint->setParams($params);
83 getAsync(array $params = []) global() argument
103 getAsyncStatus(array $params = []) global() argument
124 query(array $params = []) global() argument
144 translate(array $params = []) global() argument
[all...]
H A DSslNamespace.php34 * @param array $params Associative array of parameters
38 public function certificates(array $params = []) argument
43 $endpoint->setParams($params);
H A DTasksNamespace.php33 * $params['task_id'] = (string) Cancel the task with specified task id (node_id:task_number)
34 * $params['nodes'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
35 * $params['actions'] = (list) A comma-separated list of actions that should be cancelled. Leave empty to cancel all.
36 * $params['parent_task_id'] = (string) Cancel tasks with specified parent task id (node_id:task_number). Set to -1 to cancel all.
37 * $params['wait_for_completion'] = (boolean) Should the request block until the cancellation of the task and its descendant tasks is completed. Defaults to false
39 * @param array $params Associative array of parameters
46 public function cancel(array $params = []) argument
48 $task_id = $this->extractArgument($params, 'task_id');
52 $endpoint->setParams($params);
60 * $params['task_i
71 get(array $params = []) global() argument
100 list(array $params = []) global() argument
112 tasksList(array $params = []) global() argument
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D99a52be903945b17e734a1d02a57e958.asciidoc5 $params = [
9 $response = $client->indices()->getFieldMapping($params);
H A D9a4d5e41c52c20635d1fd9c6e13f6c7a.asciidoc5 $params = [
12 $response = $client->index($params);
13 $params = [
20 $response = $client->index($params);
H A D9a8995fd31351045d99c78e40444c8ea.asciidoc5 $params = [
16 $response = $client->search($params);
H A Dad0dcbc7fc619e952c8825b8f307b7b2.asciidoc5 $params = [
21 $response = $client->search($params);
H A Db1efa1c51a34dd5ab5511b71a399f5b1.asciidoc5 $params = [
16 $response = $client->reindex($params);
H A Db5f95bc097a201b29c7200fc8d3d31c1.asciidoc5 $params = [
22 $response = $client->indices()->putTemplate($params);
23 $params = [
40 $response = $client->indices()->putTemplate($params);
H A Db918d6b798da673a33e49b94f61dcdc0.asciidoc5 $params = [
14 $response = $client->index($params);
H A Db9c5d7ca6ca9c6f747201f45337a4abf.asciidoc5 $params = [
14 $response = $client->indices()->create($params);
H A Dbd5918ab903c0889bb1f09c8c2466e43.asciidoc5 $params = [
17 $response = $client->indices()->create($params);
H A Dcb01106bf524df5e0501d4c655c1aa7b.asciidoc5 $params = [
15 $response = $client->reindex($params);
H A Dcd247f267968aa0927bfdad56852f8f5.asciidoc5 $params = [
15 $response = $client->search($params);
H A Dcd5bc5bf7cd58d7b1492c9c298b345f6.asciidoc5 $params = [
26 $response = $client->search($params);
H A Dcdedd5f33f7e5f7acde561e97bff61de.asciidoc5 $params = [
15 $response = $client->search($params);
H A Dd50a3835bf5795ac73e58906a3413544.asciidoc5 $params = [
17 $response = $client->search($params);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Script/
H A DScriptId.php23 public function __construct(string $scriptId, ?array $params = null, ?string $lang = null, ?string $documentId = null) argument
25 parent::__construct($params, $lang, $documentId);
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DSearch.php342 $params = $this->getOptions();
346 $data = [self::OPTION_SCROLL_ID => $params[self::OPTION_SCROLL_ID]];
347 unset($params[self::OPTION_SCROLL_ID]);
352 $response = $this->getClient()->request($path, $method, $data, $params);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnectionInterface.php78 public function performRequest(string $method, string $uri, ?array $params = [], $body = null, array $options = [], Transport $transport = null); argument
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DAbstractEndpoint.php32 protected $params =[]; variable in Elasticsearch\\Endpoints\\AbstractEndpoint
88 * @param string[] $params Array of parameters
91 public function setParams(array $params) argument
93 $this->extractOptions($params);
94 $this->checkUserParams($params);
95 $params = $this->convertCustom($params);
96 $this->params = $this->convertArraysToStrings($params);
103 return $this->params;
225 checkUserParams(array $params) global() argument
253 extractOptions(& $params) global() argument
281 convertCustom(array $params) global() argument
293 convertArraysToStrings(array $params) global() argument
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Suggest/
H A DPhrase.php129 * @param array<string, mixed> $params
133 public function setSmoothingModel(string $model, array $params): self argument
136 $model => $params,
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DGuzzle.php50 public function exec(Request $request, array $params): Response argument
H A DNullTransport.php30 * @param array<string, mixed> $params Hostname, port, path, ...
32 public function getResponse(array $params = []): Response argument
34 return $this->_response ?? $this->generateDefaultResponse($params);
52 * @param array<string, mixed> $params Hostname, port, path, ...
56 public function generateDefaultResponse(array $params): Response argument
73 'params' => $params,
82 * @param array<string, mixed> $params Hostname, port, path, ...
86 public function exec(Request $request, array $params): Response argument
88 return $this->getResponse($params);
[all...]

1...<<11121314151617181920>>...118