Lines Matching refs:client

10 * <<client-usage, Using the client>>
28 $client = ClientBuilder::create()
42 $client = ClientBuilder::create()
60 instantiating the client:
69 $client = ClientBuilder::create()
85 connect the client with your cluster, as illustrated in the following code
90 $client = ClientBuilder::create()
108 If you believe the client is configured to correctly use SSL, but it simply is
125 host path. The client automatically verifies SSL certificates:
133 $client = ClientBuilder::create()
143 need to tell the client to use your certificates instead of the system-wide
151 $client = ClientBuilder::create()
165 this leaves the client vulnerable to man-in-the-middle attacks.
168 to the client. This is the same syntax as specifying a new root bundle, but
176 $client = ClientBuilder::create()
197 $client = ClientBuilder::create()
205 [[client-comp]]
210 the latest 7.x Elasticsearch client with an 8.x Elasticsearch server, giving more
214 latest 7.x client and set the environment variable `ELASTIC_CLIENT_APIVERSIONING`
215 to `true`. The client is handling the rest internally. For every 8.0 and beyond
216 client, you're all set! The compatibility mode is enabled by default.
220 [[client-usage]]
223 This section is a crash-course overview of the client and its syntax. If you
227 You may also notice that the client is configured in a manner that facilitates
228 easy discovery via your IDE. All core actions are available under the `$client`
230 located under the `$client->indices()` and `$client->cluster()` objects,
254 $response = $client->index($params);
289 $response = $client->get($params);
334 $response = $client->search($params);
391 $response = $client->delete($params);
424 $response = $client->indices()->delete($deleteParams);
458 $response = $client->indices()->create($params);