Home
last modified time | relevance | path

Searched refs:create (Results 226 – 250 of 1906) sorted by last modified time

12345678910>>...77

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DSecurityNamespace.asciidoc140 $params['body'] = (array) The api key request to create an API key (Required)
346 $params['body'] = (array) The api key request to create an API key (Required)
H A DClusterNamespace.asciidoc186 $params['create'] = (boolean) Whether the index template should only be added if new or can also replace an existing one (Default = false)
H A DMlNamespace.asciidoc308 $params['line_merge_size_limit'] = (int) Maximum number of characters permitted in a single message when lines are merged to create messages. (Default = 10000)
739 $params['calendar_id'] = (string) The ID of the calendar to create
768 $params['id'] = (string) The ID of the data frame analytics to create
782 $params['datafeed_id'] = (string) The ID of the datafeed to create
800 $params['filter_id'] = (string) The ID of the filter to create
814 $params['job_id'] = (string) The ID of the job to create
986 $params['job_id'] = (string) The ID of the job to create
H A DSnapshotNamespace.asciidoc23 * <<Elasticsearch_Namespaces_SnapshotNamespacecreate_create,`create()`>>
58 $params['target_snapshot'] = (string) The name of the cloned snapshot to create
68 .`create(array $params = [])`
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md61 * Updated `Query::create` PHPDoc to include supported types and propagate it to callers by @franmomu [#2088](https://github.com/ruflin/Elastica/pull/2088)
202 * Added endpoint options support to `Elastica\Index::create()` [#1859](https://github.com/ruflin/Elastica/pull/1859)
216 * Reviewed options handling in `Elastica\Index::create()` [#1822](https://github.com/ruflin/Elastica/pull/1822)
240 * Deprecated passing `bool` or `null` as 2nd argument to `Elastica\Index::create()` [#1828](https://github.com/ruflin/Elastica/pull/1828)
379 * Add ```settings``` level on json to create an Index in all tests (it worked till 6.x but it shouldn't work)
643 - Removed the `routing` option in `\Elastica\Index::create` because there is no routing param when creating an index. So that option was doing nothing so far but fails in Elasticearch 5.0 because the non-existing query param is validated.
819 - Method \Elastica\ResultSet::create and property \Elastica\ResultSet::$class were removed. To change the ResultSet class, implement your own ResultSet Builder. [#1065](https://github.com/ruflin/Elastica/pull/1065)
1212 - ResultSet creation moved to static ResultSet::create() method [#690](https://github.com/ruflin/Elastica/issues/690/)
1607 - Can now create a query by passing an array to Type::search()
1790 - Remove old style path creation through params in Elastica_Index::create an
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DAbstractUpdateAction.php192 * @param string $opType Only accept create
450 $document = Document::create($data);
H A DBulk.php134 $action = AbstractDocumentAction::create($document, $opType);
158 $action = AbstractDocumentAction::create($script, $opType);
H A DConnection.php255 return AbstractTransport::create($transport, $this);
324 * @param array|Connection $params Params to create a connection
330 public static function create($params = []) function in Elastica\\Connection
H A DDocument.php263 public static function create($data): self function in Elastica\\Document
273 throw new InvalidException('Failed to create document. Invalid data passed.');
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhttp-meta-data.asciidoc24 $client = Elasticsearch\ClientBuilder::create()
41 $client = Elasticsearch\ClientBuilder::create()
62 To enable this compatibility header, you need to create an `ELASTIC_CLIENT_APIVERSIONING`
H A Dindex-operations.asciidoc13 create a new index:
17 $client = ClientBuilder::create()->build();
23 $response = $client->indices()->create($params);
33 $client = ClientBuilder::create()->build();
59 $response = $client->indices()->create($params);
132 $client->indices()->create($params);
H A Dsearch-operations.asciidoc257 $client = ClientBuilder::create()->build();
H A Dselectors.asciidoc26 $client = ClientBuilder::create()
62 $client = ClientBuilder::create()
80 $client = ClientBuilder::create()
127 $client = ClientBuilder::create()
142 $client = ClientBuilder::create()
H A Dconnecting.asciidoc28 $client = ClientBuilder::create()
42 $client = ClientBuilder::create()
48 Where <id> and <key> are generated when you create a new API key. The API key is
69 $client = ClientBuilder::create()
84 {ref-7x}/security-api-create-api-key.html[here], you can use these values to
90 $client = ClientBuilder::create()
94 <1> ApiKey pair of `id` and `api_key` from the create API key response.
133 $client = ClientBuilder::create()
151 $client = ClientBuilder::create()
176 $client = ClientBuilder::create()
[all...]
H A Dconnection-factory.asciidoc35 public function create($hostDetails)
50 $client = ClientBuilder::create()
H A Dconnection-pool.asciidoc46 $client = ClientBuilder::create()
66 $client = ClientBuilder::create()
88 $client = ClientBuilder::create()
108 $client = ClientBuilder::create()
155 $client = ClientBuilder::create()
204 $client = ClientBuilder::create()
250 $client = ClientBuilder::create()
H A Dendpoint-closure.asciidoc31 $client = ClientBuilder::create()
/plugin/elasticsearch/helper/
H A Dclient.php96 if ($index->create([], $clear)->hasError()) {
97 throw new \splitbrain\phpcli\Exception("Failed to create index!");
101 throw new \splitbrain\phpcli\Exception("Failed to create field mappings!");
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClientBuilder.php150 public static function create(): ClientBuilder function in Elasticsearch\\ClientBuilder
776 $connections[] = $this->connectionFactory->create($host);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DREADME.md48 + [Create an index](#create-an-index)
142 $client = ClientBuilder::create()->build();
406 $response = $client->indices()->create($params);
410 Elasticsearch will now create that index with your chosen settings, and return an acknowledgement:
435 $builder = ClientBuilder::create();
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClientBuilder.asciidoc13 * <<Elasticsearch_ClientBuildercreate_create,`create()`>>
49 .`create()`
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D048d8abd42d094bbdcf4452a58ccb35b.asciidoc14 $response = $client->create($params);
H A D2a1de18774f9c68cafa169847832b2bc.asciidoc17 $response = $client->indices()->create($params);
H A D4d46dbb96125b27f46299547de9d8709.asciidoc1 // indices/create-index.asciidoc:190
13 $response = $client->indices()->create($params);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Connection/Strategy/
H A DStrategyFactory.php19 public static function create($strategyName): StrategyInterface function in Elastica\\Connection\\Strategy\\StrategyFactory
41 throw new InvalidException('Can\'t create strategy instance by given argument');

12345678910>>...77