Home
last modified time | relevance | path

Searched refs:index (Results 451 – 475 of 1806) sorted by last modified time

1...<<11121314151617181920>>...73

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DCount.php33 $index = $this->index ?? null;
39 if (isset($index) && isset($type)) {
40 return "/$index/$type/_count";
42 if (isset($index)) {
43 return "/$index/_count";
H A DExistsSource.php40 if (isset($this->index) !== true) {
42 'index is required for exists_source'
45 $index = $this->index;
52 return "/$index/$type/$id/_source";
54 return "/$index/_source/$id";
H A DGetSource.php40 if (isset($this->index) !== true) {
42 'index is required for get_source'
45 $index = $this->index;
52 return "/$index/$type/$id/_source";
54 return "/$index/_source/$id";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md273 - Added `include_type_name` in `get`, `index`, `indices.create`, `indices.field.get`, `indices.get`, `indices.mapping.get`, `indices.mapping.getfield`, `indices.mapping.put`, `indices.rollover`, `indices.template.get`, `indices.template.put` endpoints [#884](https://github.com/elastic/elasticsearch-php/pull/884)
322 - [DOCS] Replace deprecated string type with keyword type for index operations (#736) [[a550507]](http://github.com/elasticsearch/elasticsearch-php/commit/a550507)
344 - [DOCS] add link to community index helper (#681) [[644f7f7]](http://github.com/elasticsearch/elasticsearch-php/commit/644f7f7)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Eql/
H A DSearch.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index/_eql/search";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc39 * <<Elasticsearch_Clientindex_index,`index()`>>
105 $params['index'] = (string) Default index for items which don't provide one
156 $params['index'] = (list) A comma-separated list of indices to restrict the results
186 $params['index'] = (string) The name of the index (Required)
188 $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before proceeding with the index operation. Defaults to 1, meaning the primary shard only. Set to `all` for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1)
209 $params['index'] = (string) The name of the index (Required)
231 $params['index']
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Fleet/
H A DGlobalCheckpoints.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index/_fleet/global_checkpoints";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DCatNamespace.asciidoc96 $params['index'] = (list) A comma-separated list of index names to limit the returned information
166 $params['index'] = (list) A comma-separated list of index names to limit the returned information
379 $params['index'] = (list) Comma-separated list or wildcard expression of index names to limit the returned information
420 $params['index'] = (list) A comma-separated list of index names to limit the returned information
439 $params['index'] = (list) A comma-separated list of index name
[all...]
H A DCcrNamespace.asciidoc56 $params['index'] = (string) The name of the follower index
58 $params['body'] = (array) The name of the leader index and other optional ccr related parameters (Required)
71 $params['index'] = (list) A comma-separated list of index patterns; use `_all` to perform the operation on all indices
84 $params['index'] = (list) A comma-separated list of index patterns; use `_all` to perform the operation on all indices
97 $params['index'] = (string) the name of the leader index for which specified follower retention leases should be removed
98 $params['body'] = (array) the name and UUID of the follower index, th
[all...]
H A DEqlNamespace.asciidoc75 $params['index'] = (string) The name of the index to scope the operation
H A DGraphNamespace.asciidoc31 $params['index'] = (list) A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices (Required)
H A DIlmNamespace.asciidoc40 $params['policy'] = (string) The name of the index lifecycle policy
53 $params['index'] = (string) The name of the index to explain
68 $params['policy'] = (string) The name of the index lifecycle policy
93 $params['index'] = (string) The name of the index whose lifecycle step is to change
107 $params['policy'] = (string) The name of the index lifecycle policy
121 $params['index'] = (string) The name of the index to remove policy on
134 $params['index']
[all...]
H A DRollupNamespace.asciidoc68 $params['id'] = (string) The ID of the index to check rollup capabilities on, or left blank for all jobs
82 $params['index'] = (string) The rollup index or index pattern to obtain rollup capabilities from.
110 $params['index'] = (string) The index to roll up
111 $params['rollup_index'] = (string) The name of the rollup index to create
126 $params['index'] = (list) The indices or index-pattern(s) (containing rollup or regular data) that should be searched (Required)
127 $params['type'] = DEPRECATED (string) The doc type inside the index
[all...]
H A DSearchableSnapshotsNamespace.asciidoc35 $params['index'] = (list) A comma-separated list of index names
52 $params['repository'] = (string) The name of the repository containing the snapshot of the index to mount
53 $params['snapshot'] = (string) The name of the snapshot of the index to mount
85 $params['index'] = (list) A comma-separated list of index names
86 $params['level'] = (enum) Return stats aggregated at cluster, index or shard level (Options = cluster,indices,shards) (Default = indices)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ilm/
H A DMoveToStep.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/_ilm/move/$index";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Indices/
H A DAddBlock.php35 $index = $this->index ?? null;
38 if (isset($index) && isset($block)) {
39 return "/$index/_block/$block";
H A DAnalyze.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/$index/_analyze";
44 'index'
H A DClearCache.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/$index/_cache/clear";
50 'index',
H A DCloneIndices.php35 $index = $this->index ?? null;
38 if (isset($index) && isset($target)) {
39 return "/$index/_clone/$target";
H A DClose.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index/_close";
H A DCreate.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index";
H A DExists.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index";
H A DExistsAlias.php41 $index = $this->index ?? null;
43 if (isset($index)) {
44 return "/$index/_alias/$name";
H A DExistsType.php34 $index = $this->index ?? null;
40 if (isset($index) && isset($type)) {
41 return "/$index/_mapping/$type";
H A DFlush.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/$index/_flush";

1...<<11121314151617181920>>...73