Home
last modified time | relevance | path

Searched refs:delete (Results 1226 – 1250 of 1419) sorted by path

1...<<41424344454647484950>>...57

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DIndicesNamespace.asciidoc29 * <<Elasticsearch_Namespaces_IndicesNamespacedelete_delete,`delete()`>>
210 .`delete(array $params = [])`
215 $params['index'] = (list) A comma-separated list of indices to delete; use `_all` or `*` string to delete all indices
234 $params['name'] = (list) A comma-separated list of aliases to delete (supports wildcards); use `_all` to delete all aliases for the specified indices. (Required)
249 $params['name'] = (list) A comma-separated list of data streams to delete; use `*` to delete all data streams
H A DLicenseNamespace.asciidoc21 * <<Elasticsearch_Namespaces_LicenseNamespacedelete_delete,`delete()`>>
32 .`delete(array $params = [])`
H A DMlNamespace.asciidoc109 $params['calendar_id'] = (string) The ID of the calendar to delete
151 $params['id'] = (string) The ID of the data frame analytics to delete
166 $params['datafeed_id'] = (string) The ID of the datafeed to delete
194 $params['filter_id'] = (string) The ID of the filter to delete
207 $params['job_id'] = (string) The ID of the job from which to delete forecasts (Required)
208 $params['forecast_id'] = (string) The ID of the forecast to delete, can be comma delimited list. Leaving blank implies `_all`
223 $params['job_id'] = (string) The ID of the job to delete
239 $params['snapshot_id'] = (string) The ID of the snapshot to delete
253 $params['model_id'] = (string) The ID of the trained model to delete
H A DRollupNamespace.asciidoc40 $params['id'] = (string) The ID of the job to delete
H A DSnapshotNamespace.asciidoc25 * <<Elasticsearch_Namespaces_SnapshotNamespacedelete_delete,`delete()`>>
102 .`delete(array $params = [])`
H A DTransformNamespace.asciidoc38 $params['transform_id'] = (string) The id of the transform to delete
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dconnecting.asciidoc382 Alright, let's go ahead and delete the document that we added previously:
391 $response = $client->delete($params);
396 operation: `delete` instead of `get`. The response confirms the document is
424 $response = $client->indices()->delete($deleteParams);
H A Dcrud.asciidoc248 Finally, you can delete documents by specifying their full `/index/_doc_/id`
259 $response = $client->delete($params);
H A Dindex-operations.asciidoc149 $response = $client->indices()->delete($params);
H A Drelease-notes.asciidoc354 * Improved the speed of integration tests removing snapshots delete from
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D98aeb275f829b5f7b8eb2147701565ff.asciidoc10 'source' => 'if (ctx._source.tags.contains(params.tag)) { ctx.op = \'delete\' } else { ctx.op = \'none\' }',
H A D98f14fddddea54a7d6149ab7b92e099d.asciidoc1 // indices/delete-index.asciidoc:10
8 $response = $client->indices()->delete($params);
H A Dae9ccfaa146731ab9176df90670db1c2.asciidoc17 'delete' => [
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClient.php315 * Allows to perform multiple index/update/delete operations in a single request.
474 * $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before proceeding with the delete 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)
478 * $params['if_seq_no'] = (number) only perform the delete operation if the last operation that has changed the document has the specified sequence number
479 * $params['if_primary_term'] = (number) only perform the delete operation if the last operation that has changed the document has the specified primary term
485 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-delete.html
487 public function delete(array $params = []) function in Elasticsearch\\Client
514 * $params['conflicts'] = (enum) What to do when the delete by query hits version conflicts? (Options = abort,proceed) (Default = abort)
535 * $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before proceeding with the delete by query 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)
536 * $params['scroll_size'] = (number) Size on the scroll request powering the delete by query (Default = 100)
537 * $params['wait_for_completion'] = (boolean) Should the request should block until the delete b
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DAsyncSearchNamespace.php39 public function delete(array $params = []) function in Elasticsearch\\Namespaces\\AsyncSearchNamespace
H A DEqlNamespace.php39 public function delete(array $params = []) function in Elasticsearch\\Namespaces\\EqlNamespace
H A DIndicesNamespace.php233 * $params['index'] = (list) A comma-separated list of indices to delete; use `_all` or `*` string to delete all indices
242 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-delete-index.html
244 public function delete(array $params = []) function in Elasticsearch\\Namespaces\\IndicesNamespace
259 * $params['name'] = (list) A comma-separated list of aliases to delete (supports wildcards); use `_all` to delete all aliases for the specified indices. (Required)
283 * $params['name'] = (list) A comma-separated list of data streams to delete; use `*` to delete all data streams
H A DLicenseNamespace.php36 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/delete-license.html
38 public function delete(array $params = []) function in Elasticsearch\\Namespaces\\LicenseNamespace
H A DSnapshotNamespace.php147 public function delete(array $params = []) function in Elasticsearch\\Namespaces\\SnapshotNamespace
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md520 - in order to delete an index you should not delete by its alias now you should delete using the [concrete index name](https://github.com/elastic/elasticsearch/blob/6.0/core/src/test/java/org/elasticsearch/aliases/IndexAliasesIT.java#L445) [#1348](https://github.com/ruflin/Elastica/pull/1348)
524 - The [created and found](https://github.com/elastic/elasticsearch/pull/25516) fields in index and delete responses became obsolete after the introduction of the result field in index, update and delete responses [#1354](https://github.com/ruflin/Elastica/pull/1354)
723 - Removed Elastica\Type::delete() It is no longer possible to delete the mapping for a type. Instead you should delete the index and recreate it with the new mappings.
726 - Changed Elastica\Index::deleteByQuery() to use new API https://www.elastic.co/guide/en/elasticsearch/reference/5.0/docs-delete-by-query.html
909 - Elastica\Type::delete no
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DIndex.php323 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete.html
350 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete-by-query.html
391 public function delete(): Response
397 * Uses the "_bulk" endpoint to delete documents from the server.
499 $this->delete();
346 public function delete(): Response global() function in Elastica\\Index
H A DIndexTemplate.php57 public function delete()
50 public function delete() global() function in Elastica\\IndexTemplate
/plugin/epub/lang/en/
H A Dadmin_header.txt2 Using this tool, you can delete entries from the epub cache and, if you choose, you can also delete
/plugin/etherpadlite/
H A DREADME.md25 …edit and save the content. Users in "lock"-Mode can join this PAD, but not save nor delete the PAD.
/plugin/extendpage/
H A DREADME.md17 Add or delete entries in the table to assign page(s)/namespace(s) to be extended

1...<<41424344454647484950>>...57