-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathElasticsearchNodesClient.java
More file actions
446 lines (386 loc) · 18.5 KB
/
Copy pathElasticsearchNodesClient.java
File metadata and controls
446 lines (386 loc) · 18.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package co.elastic.clients.elasticsearch.nodes;
import co.elastic.clients.ApiClient;
import co.elastic.clients.elasticsearch._types.ElasticsearchException;
import co.elastic.clients.elasticsearch._types.ErrorResponse;
import co.elastic.clients.transport.ElasticsearchTransport;
import co.elastic.clients.transport.Endpoint;
import co.elastic.clients.transport.JsonEndpoint;
import co.elastic.clients.transport.TransportOptions;
import co.elastic.clients.transport.endpoints.TextResponse;
import co.elastic.clients.util.ObjectBuilder;
import java.io.IOException;
import java.util.function.Function;
import javax.annotation.Nullable;
//----------------------------------------------------------------
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST.
//----------------------------------------------------------------
//
// This code is generated from the Elasticsearch API specification
// at https://github.com/elastic/elasticsearch-specification
//
// Manual updates to this file will be lost when the code is
// re-generated.
//
// If you find a property that is missing or wrongly typed, please
// open an issue or a PR on the API specification repository.
//
//----------------------------------------------------------------
/**
* Client for the nodes namespace.
*/
public class ElasticsearchNodesClient extends ApiClient<ElasticsearchTransport, ElasticsearchNodesClient> {
public ElasticsearchNodesClient(ElasticsearchTransport transport) {
super(transport, null);
}
public ElasticsearchNodesClient(ElasticsearchTransport transport, @Nullable TransportOptions transportOptions) {
super(transport, transportOptions);
}
@Override
public ElasticsearchNodesClient withTransportOptions(@Nullable TransportOptions transportOptions) {
return new ElasticsearchNodesClient(this.transport, transportOptions);
}
// ----- Endpoint: nodes.clear_repositories_metering_archive
/**
* Clear the archived repositories metering. Clear the archived repositories
* metering information in the cluster.
*
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-clear-repositories-metering-archive">Documentation
* on elastic.co</a>
*/
public ClearRepositoriesMeteringArchiveResponse clearRepositoriesMeteringArchive(
ClearRepositoriesMeteringArchiveRequest request) throws IOException, ElasticsearchException {
@SuppressWarnings("unchecked")
JsonEndpoint<ClearRepositoriesMeteringArchiveRequest, ClearRepositoriesMeteringArchiveResponse, ErrorResponse> endpoint = (JsonEndpoint<ClearRepositoriesMeteringArchiveRequest, ClearRepositoriesMeteringArchiveResponse, ErrorResponse>) ClearRepositoriesMeteringArchiveRequest._ENDPOINT;
return this.transport.performRequest(request, endpoint, this.transportOptions);
}
/**
* Clear the archived repositories metering. Clear the archived repositories
* metering information in the cluster.
*
* @param fn
* a function that initializes a builder to create the
* {@link ClearRepositoriesMeteringArchiveRequest}
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-clear-repositories-metering-archive">Documentation
* on elastic.co</a>
*/
public final ClearRepositoriesMeteringArchiveResponse clearRepositoriesMeteringArchive(
Function<ClearRepositoriesMeteringArchiveRequest.Builder, ObjectBuilder<ClearRepositoriesMeteringArchiveRequest>> fn)
throws IOException, ElasticsearchException {
return clearRepositoriesMeteringArchive(
fn.apply(new ClearRepositoriesMeteringArchiveRequest.Builder()).build());
}
// ----- Endpoint: nodes.get_repositories_metering_info
/**
* Get cluster repositories metering. Get repositories metering information for
* a cluster. This API exposes monotonically non-decreasing counters and it is
* expected that clients would durably store the information needed to compute
* aggregations over a period of time. Additionally, the information exposed by
* this API is volatile, meaning that it will not be present after node
* restarts.
*
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-get-repositories-metering-info">Documentation
* on elastic.co</a>
*/
public GetRepositoriesMeteringInfoResponse getRepositoriesMeteringInfo(GetRepositoriesMeteringInfoRequest request)
throws IOException, ElasticsearchException {
@SuppressWarnings("unchecked")
JsonEndpoint<GetRepositoriesMeteringInfoRequest, GetRepositoriesMeteringInfoResponse, ErrorResponse> endpoint = (JsonEndpoint<GetRepositoriesMeteringInfoRequest, GetRepositoriesMeteringInfoResponse, ErrorResponse>) GetRepositoriesMeteringInfoRequest._ENDPOINT;
return this.transport.performRequest(request, endpoint, this.transportOptions);
}
/**
* Get cluster repositories metering. Get repositories metering information for
* a cluster. This API exposes monotonically non-decreasing counters and it is
* expected that clients would durably store the information needed to compute
* aggregations over a period of time. Additionally, the information exposed by
* this API is volatile, meaning that it will not be present after node
* restarts.
*
* @param fn
* a function that initializes a builder to create the
* {@link GetRepositoriesMeteringInfoRequest}
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-get-repositories-metering-info">Documentation
* on elastic.co</a>
*/
public final GetRepositoriesMeteringInfoResponse getRepositoriesMeteringInfo(
Function<GetRepositoriesMeteringInfoRequest.Builder, ObjectBuilder<GetRepositoriesMeteringInfoRequest>> fn)
throws IOException, ElasticsearchException {
return getRepositoriesMeteringInfo(fn.apply(new GetRepositoriesMeteringInfoRequest.Builder()).build());
}
// ----- Endpoint: nodes.hot_threads
/**
* Get the hot threads for nodes. Get a breakdown of the hot threads on each
* selected node in the cluster. The output is plain text with a breakdown of
* the top hot threads for each node.
*
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-hot-threads">Documentation
* on elastic.co</a>
*/
public TextResponse hotThreads(HotThreadsRequest request) throws IOException, ElasticsearchException {
@SuppressWarnings("unchecked")
Endpoint<HotThreadsRequest, TextResponse, ErrorResponse> endpoint = (Endpoint<HotThreadsRequest, TextResponse, ErrorResponse>) HotThreadsRequest._ENDPOINT;
return this.transport.performRequest(request, endpoint, this.transportOptions);
}
/**
* Get the hot threads for nodes. Get a breakdown of the hot threads on each
* selected node in the cluster. The output is plain text with a breakdown of
* the top hot threads for each node.
*
* @param fn
* a function that initializes a builder to create the
* {@link HotThreadsRequest}
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-hot-threads">Documentation
* on elastic.co</a>
*/
public final TextResponse hotThreads(Function<HotThreadsRequest.Builder, ObjectBuilder<HotThreadsRequest>> fn)
throws IOException, ElasticsearchException {
return hotThreads(fn.apply(new HotThreadsRequest.Builder()).build());
}
/**
* Get the hot threads for nodes. Get a breakdown of the hot threads on each
* selected node in the cluster. The output is plain text with a breakdown of
* the top hot threads for each node.
*
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-hot-threads">Documentation
* on elastic.co</a>
*/
public TextResponse hotThreads() throws IOException, ElasticsearchException {
return this.transport.performRequest(new HotThreadsRequest.Builder().build(), HotThreadsRequest._ENDPOINT,
this.transportOptions);
}
// ----- Endpoint: nodes.info
/**
* Get node information.
* <p>
* By default, the API returns all attributes and core settings for cluster
* nodes.
*
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-info">Documentation
* on elastic.co</a>
*/
public NodesInfoResponse info(NodesInfoRequest request) throws IOException, ElasticsearchException {
@SuppressWarnings("unchecked")
JsonEndpoint<NodesInfoRequest, NodesInfoResponse, ErrorResponse> endpoint = (JsonEndpoint<NodesInfoRequest, NodesInfoResponse, ErrorResponse>) NodesInfoRequest._ENDPOINT;
return this.transport.performRequest(request, endpoint, this.transportOptions);
}
/**
* Get node information.
* <p>
* By default, the API returns all attributes and core settings for cluster
* nodes.
*
* @param fn
* a function that initializes a builder to create the
* {@link NodesInfoRequest}
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-info">Documentation
* on elastic.co</a>
*/
public final NodesInfoResponse info(Function<NodesInfoRequest.Builder, ObjectBuilder<NodesInfoRequest>> fn)
throws IOException, ElasticsearchException {
return info(fn.apply(new NodesInfoRequest.Builder()).build());
}
/**
* Get node information.
* <p>
* By default, the API returns all attributes and core settings for cluster
* nodes.
*
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-info">Documentation
* on elastic.co</a>
*/
public NodesInfoResponse info() throws IOException, ElasticsearchException {
return this.transport.performRequest(new NodesInfoRequest.Builder().build(), NodesInfoRequest._ENDPOINT,
this.transportOptions);
}
// ----- Endpoint: nodes.reload_secure_settings
/**
* Reload the keystore on nodes in the cluster.
* <p>
* Secure settings are stored in an on-disk keystore. Certain of these settings
* are reloadable. That is, you can change them on disk and reload them without
* restarting any nodes in the cluster. When you have updated reloadable secure
* settings in your keystore, you can use this API to reload those settings on
* each node.
* <p>
* When the Elasticsearch keystore is password protected and not simply
* obfuscated, you must provide the password for the keystore when you reload
* the secure settings. Reloading the settings for the whole cluster assumes
* that the keystores for all nodes are protected with the same password; this
* method is allowed only when inter-node communications are encrypted.
* Alternatively, you can reload the secure settings on each node by locally
* accessing the API and passing the node-specific Elasticsearch keystore
* password.
*
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-reload-secure-settings">Documentation
* on elastic.co</a>
*/
public ReloadSecureSettingsResponse reloadSecureSettings(ReloadSecureSettingsRequest request)
throws IOException, ElasticsearchException {
@SuppressWarnings("unchecked")
JsonEndpoint<ReloadSecureSettingsRequest, ReloadSecureSettingsResponse, ErrorResponse> endpoint = (JsonEndpoint<ReloadSecureSettingsRequest, ReloadSecureSettingsResponse, ErrorResponse>) ReloadSecureSettingsRequest._ENDPOINT;
return this.transport.performRequest(request, endpoint, this.transportOptions);
}
/**
* Reload the keystore on nodes in the cluster.
* <p>
* Secure settings are stored in an on-disk keystore. Certain of these settings
* are reloadable. That is, you can change them on disk and reload them without
* restarting any nodes in the cluster. When you have updated reloadable secure
* settings in your keystore, you can use this API to reload those settings on
* each node.
* <p>
* When the Elasticsearch keystore is password protected and not simply
* obfuscated, you must provide the password for the keystore when you reload
* the secure settings. Reloading the settings for the whole cluster assumes
* that the keystores for all nodes are protected with the same password; this
* method is allowed only when inter-node communications are encrypted.
* Alternatively, you can reload the secure settings on each node by locally
* accessing the API and passing the node-specific Elasticsearch keystore
* password.
*
* @param fn
* a function that initializes a builder to create the
* {@link ReloadSecureSettingsRequest}
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-reload-secure-settings">Documentation
* on elastic.co</a>
*/
public final ReloadSecureSettingsResponse reloadSecureSettings(
Function<ReloadSecureSettingsRequest.Builder, ObjectBuilder<ReloadSecureSettingsRequest>> fn)
throws IOException, ElasticsearchException {
return reloadSecureSettings(fn.apply(new ReloadSecureSettingsRequest.Builder()).build());
}
/**
* Reload the keystore on nodes in the cluster.
* <p>
* Secure settings are stored in an on-disk keystore. Certain of these settings
* are reloadable. That is, you can change them on disk and reload them without
* restarting any nodes in the cluster. When you have updated reloadable secure
* settings in your keystore, you can use this API to reload those settings on
* each node.
* <p>
* When the Elasticsearch keystore is password protected and not simply
* obfuscated, you must provide the password for the keystore when you reload
* the secure settings. Reloading the settings for the whole cluster assumes
* that the keystores for all nodes are protected with the same password; this
* method is allowed only when inter-node communications are encrypted.
* Alternatively, you can reload the secure settings on each node by locally
* accessing the API and passing the node-specific Elasticsearch keystore
* password.
*
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-reload-secure-settings">Documentation
* on elastic.co</a>
*/
public ReloadSecureSettingsResponse reloadSecureSettings() throws IOException, ElasticsearchException {
return this.transport.performRequest(new ReloadSecureSettingsRequest.Builder().build(),
ReloadSecureSettingsRequest._ENDPOINT, this.transportOptions);
}
// ----- Endpoint: nodes.stats
/**
* Get node statistics. Get statistics for nodes in a cluster. By default, all
* stats are returned. You can limit the returned information by using metrics.
*
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-stats">Documentation
* on elastic.co</a>
*/
public NodesStatsResponse stats(NodesStatsRequest request) throws IOException, ElasticsearchException {
@SuppressWarnings("unchecked")
JsonEndpoint<NodesStatsRequest, NodesStatsResponse, ErrorResponse> endpoint = (JsonEndpoint<NodesStatsRequest, NodesStatsResponse, ErrorResponse>) NodesStatsRequest._ENDPOINT;
return this.transport.performRequest(request, endpoint, this.transportOptions);
}
/**
* Get node statistics. Get statistics for nodes in a cluster. By default, all
* stats are returned. You can limit the returned information by using metrics.
*
* @param fn
* a function that initializes a builder to create the
* {@link NodesStatsRequest}
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-stats">Documentation
* on elastic.co</a>
*/
public final NodesStatsResponse stats(Function<NodesStatsRequest.Builder, ObjectBuilder<NodesStatsRequest>> fn)
throws IOException, ElasticsearchException {
return stats(fn.apply(new NodesStatsRequest.Builder()).build());
}
/**
* Get node statistics. Get statistics for nodes in a cluster. By default, all
* stats are returned. You can limit the returned information by using metrics.
*
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-stats">Documentation
* on elastic.co</a>
*/
public NodesStatsResponse stats() throws IOException, ElasticsearchException {
return this.transport.performRequest(new NodesStatsRequest.Builder().build(), NodesStatsRequest._ENDPOINT,
this.transportOptions);
}
// ----- Endpoint: nodes.usage
/**
* Get feature usage information.
*
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-usage">Documentation
* on elastic.co</a>
*/
public NodesUsageResponse usage(NodesUsageRequest request) throws IOException, ElasticsearchException {
@SuppressWarnings("unchecked")
JsonEndpoint<NodesUsageRequest, NodesUsageResponse, ErrorResponse> endpoint = (JsonEndpoint<NodesUsageRequest, NodesUsageResponse, ErrorResponse>) NodesUsageRequest._ENDPOINT;
return this.transport.performRequest(request, endpoint, this.transportOptions);
}
/**
* Get feature usage information.
*
* @param fn
* a function that initializes a builder to create the
* {@link NodesUsageRequest}
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-usage">Documentation
* on elastic.co</a>
*/
public final NodesUsageResponse usage(Function<NodesUsageRequest.Builder, ObjectBuilder<NodesUsageRequest>> fn)
throws IOException, ElasticsearchException {
return usage(fn.apply(new NodesUsageRequest.Builder()).build());
}
/**
* Get feature usage information.
*
* @see <a href=
* "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-nodes-usage">Documentation
* on elastic.co</a>
*/
public NodesUsageResponse usage() throws IOException, ElasticsearchException {
return this.transport.performRequest(new NodesUsageRequest.Builder().build(), NodesUsageRequest._ENDPOINT,
this.transportOptions);
}
}