@@ -44,7 +44,6 @@ async def aliases(
44
44
h : t .Optional [t .Union [str , t .Sequence [str ]]] = None ,
45
45
help : t .Optional [bool ] = None ,
46
46
human : t .Optional [bool ] = None ,
47
- local : t .Optional [bool ] = None ,
48
47
master_timeout : t .Optional [t .Union [str , t .Literal [- 1 ], t .Literal [0 ]]] = None ,
49
48
pretty : t .Optional [bool ] = None ,
50
49
s : t .Optional [t .Union [str , t .Sequence [str ]]] = None ,
@@ -68,10 +67,6 @@ async def aliases(
68
67
:param h: List of columns to appear in the response. Supports simple wildcards.
69
68
:param help: When set to `true` will output available columns. This option can't
70
69
be combined with any other query string option.
71
- :param local: If `true`, the request computes the list of selected nodes from
72
- the local cluster state. If `false` the list of selected nodes are computed
73
- from the cluster state of the master node. In both cases the coordinating
74
- node will send requests for further information to each selected node.
75
70
:param master_timeout: Period to wait for a connection to the master node.
76
71
:param s: List of columns that determine how the table should be sorted. Sorting
77
72
defaults to ascending and can be changed by setting `:asc` or `:desc` as
@@ -100,8 +95,6 @@ async def aliases(
100
95
__query ["help" ] = help
101
96
if human is not None :
102
97
__query ["human" ] = human
103
- if local is not None :
104
- __query ["local" ] = local
105
98
if master_timeout is not None :
106
99
__query ["master_timeout" ] = master_timeout
107
100
if pretty is not None :
@@ -215,7 +208,6 @@ async def count(
215
208
h : t .Optional [t .Union [str , t .Sequence [str ]]] = None ,
216
209
help : t .Optional [bool ] = None ,
217
210
human : t .Optional [bool ] = None ,
218
- local : t .Optional [bool ] = None ,
219
211
master_timeout : t .Optional [t .Union [str , t .Literal [- 1 ], t .Literal [0 ]]] = None ,
220
212
pretty : t .Optional [bool ] = None ,
221
213
s : t .Optional [t .Union [str , t .Sequence [str ]]] = None ,
@@ -239,10 +231,6 @@ async def count(
239
231
:param h: List of columns to appear in the response. Supports simple wildcards.
240
232
:param help: When set to `true` will output available columns. This option can't
241
233
be combined with any other query string option.
242
- :param local: If `true`, the request computes the list of selected nodes from
243
- the local cluster state. If `false` the list of selected nodes are computed
244
- from the cluster state of the master node. In both cases the coordinating
245
- node will send requests for further information to each selected node.
246
234
:param master_timeout: Period to wait for a connection to the master node.
247
235
:param s: List of columns that determine how the table should be sorted. Sorting
248
236
defaults to ascending and can be changed by setting `:asc` or `:desc` as
@@ -269,8 +257,6 @@ async def count(
269
257
__query ["help" ] = help
270
258
if human is not None :
271
259
__query ["human" ] = human
272
- if local is not None :
273
- __query ["local" ] = local
274
260
if master_timeout is not None :
275
261
__query ["master_timeout" ] = master_timeout
276
262
if pretty is not None :
@@ -299,7 +285,6 @@ async def help(
299
285
h : t .Optional [t .Union [str , t .Sequence [str ]]] = None ,
300
286
help : t .Optional [bool ] = None ,
301
287
human : t .Optional [bool ] = None ,
302
- local : t .Optional [bool ] = None ,
303
288
master_timeout : t .Optional [t .Union [str , t .Literal [- 1 ], t .Literal [0 ]]] = None ,
304
289
pretty : t .Optional [bool ] = None ,
305
290
s : t .Optional [t .Union [str , t .Sequence [str ]]] = None ,
@@ -315,10 +300,6 @@ async def help(
315
300
:param h: List of columns to appear in the response. Supports simple wildcards.
316
301
:param help: When set to `true` will output available columns. This option can't
317
302
be combined with any other query string option.
318
- :param local: If `true`, the request computes the list of selected nodes from
319
- the local cluster state. If `false` the list of selected nodes are computed
320
- from the cluster state of the master node. In both cases the coordinating
321
- node will send requests for further information to each selected node.
322
303
:param master_timeout: Period to wait for a connection to the master node.
323
304
:param s: List of columns that determine how the table should be sorted. Sorting
324
305
defaults to ascending and can be changed by setting `:asc` or `:desc` as
@@ -340,8 +321,6 @@ async def help(
340
321
__query ["help" ] = help
341
322
if human is not None :
342
323
__query ["human" ] = human
343
- if local is not None :
344
- __query ["local" ] = local
345
324
if master_timeout is not None :
346
325
__query ["master_timeout" ] = master_timeout
347
326
if pretty is not None :
@@ -384,7 +363,6 @@ async def indices(
384
363
help : t .Optional [bool ] = None ,
385
364
human : t .Optional [bool ] = None ,
386
365
include_unloaded_segments : t .Optional [bool ] = None ,
387
- local : t .Optional [bool ] = None ,
388
366
master_timeout : t .Optional [t .Union [str , t .Literal [- 1 ], t .Literal [0 ]]] = None ,
389
367
pretty : t .Optional [bool ] = None ,
390
368
pri : t .Optional [bool ] = None ,
@@ -422,10 +400,6 @@ async def indices(
422
400
be combined with any other query string option.
423
401
:param include_unloaded_segments: If true, the response includes information
424
402
from segments that are not loaded into memory.
425
- :param local: If `true`, the request computes the list of selected nodes from
426
- the local cluster state. If `false` the list of selected nodes are computed
427
- from the cluster state of the master node. In both cases the coordinating
428
- node will send requests for further information to each selected node.
429
403
:param master_timeout: Period to wait for a connection to the master node.
430
404
:param pri: If true, the response only includes information from primary shards.
431
405
:param s: List of columns that determine how the table should be sorted. Sorting
@@ -462,8 +436,6 @@ async def indices(
462
436
__query ["human" ] = human
463
437
if include_unloaded_segments is not None :
464
438
__query ["include_unloaded_segments" ] = include_unloaded_segments
465
- if local is not None :
466
- __query ["local" ] = local
467
439
if master_timeout is not None :
468
440
__query ["master_timeout" ] = master_timeout
469
441
if pretty is not None :
@@ -548,7 +520,6 @@ async def ml_data_frame_analytics(
548
520
] = None ,
549
521
help : t .Optional [bool ] = None ,
550
522
human : t .Optional [bool ] = None ,
551
- local : t .Optional [bool ] = None ,
552
523
master_timeout : t .Optional [t .Union [str , t .Literal [- 1 ], t .Literal [0 ]]] = None ,
553
524
pretty : t .Optional [bool ] = None ,
554
525
s : t .Optional [
@@ -620,10 +591,6 @@ async def ml_data_frame_analytics(
620
591
:param h: Comma-separated list of column names to display.
621
592
:param help: When set to `true` will output available columns. This option can't
622
593
be combined with any other query string option.
623
- :param local: If `true`, the request computes the list of selected nodes from
624
- the local cluster state. If `false` the list of selected nodes are computed
625
- from the cluster state of the master node. In both cases the coordinating
626
- node will send requests for further information to each selected node.
627
594
:param master_timeout: Period to wait for a connection to the master node.
628
595
:param s: Comma-separated list of column names or column aliases used to sort
629
596
the response.
@@ -654,8 +621,6 @@ async def ml_data_frame_analytics(
654
621
__query ["help" ] = help
655
622
if human is not None :
656
623
__query ["human" ] = human
657
- if local is not None :
658
- __query ["local" ] = local
659
624
if master_timeout is not None :
660
625
__query ["master_timeout" ] = master_timeout
661
626
if pretty is not None :
@@ -727,7 +692,6 @@ async def ml_datafeeds(
727
692
] = None ,
728
693
help : t .Optional [bool ] = None ,
729
694
human : t .Optional [bool ] = None ,
730
- local : t .Optional [bool ] = None ,
731
695
master_timeout : t .Optional [t .Union [str , t .Literal [- 1 ], t .Literal [0 ]]] = None ,
732
696
pretty : t .Optional [bool ] = None ,
733
697
s : t .Optional [
@@ -799,10 +763,6 @@ async def ml_datafeeds(
799
763
:param h: Comma-separated list of column names to display.
800
764
:param help: When set to `true` will output available columns. This option can't
801
765
be combined with any other query string option.
802
- :param local: If `true`, the request computes the list of selected nodes from
803
- the local cluster state. If `false` the list of selected nodes are computed
804
- from the cluster state of the master node. In both cases the coordinating
805
- node will send requests for further information to each selected node.
806
766
:param master_timeout: Period to wait for a connection to the master node.
807
767
:param s: Comma-separated list of column names or column aliases used to sort
808
768
the response.
@@ -831,8 +791,6 @@ async def ml_datafeeds(
831
791
__query ["help" ] = help
832
792
if human is not None :
833
793
__query ["human" ] = human
834
- if local is not None :
835
- __query ["local" ] = local
836
794
if master_timeout is not None :
837
795
__query ["master_timeout" ] = master_timeout
838
796
if pretty is not None :
@@ -1003,7 +961,6 @@ async def ml_jobs(
1003
961
] = None ,
1004
962
help : t .Optional [bool ] = None ,
1005
963
human : t .Optional [bool ] = None ,
1006
- local : t .Optional [bool ] = None ,
1007
964
master_timeout : t .Optional [t .Union [str , t .Literal [- 1 ], t .Literal [0 ]]] = None ,
1008
965
pretty : t .Optional [bool ] = None ,
1009
966
s : t .Optional [
@@ -1172,10 +1129,6 @@ async def ml_jobs(
1172
1129
:param h: Comma-separated list of column names to display.
1173
1130
:param help: When set to `true` will output available columns. This option can't
1174
1131
be combined with any other query string option.
1175
- :param local: If `true`, the request computes the list of selected nodes from
1176
- the local cluster state. If `false` the list of selected nodes are computed
1177
- from the cluster state of the master node. In both cases the coordinating
1178
- node will send requests for further information to each selected node.
1179
1132
:param master_timeout: Period to wait for a connection to the master node.
1180
1133
:param s: Comma-separated list of column names or column aliases used to sort
1181
1134
the response.
@@ -1206,8 +1159,6 @@ async def ml_jobs(
1206
1159
__query ["help" ] = help
1207
1160
if human is not None :
1208
1161
__query ["human" ] = human
1209
- if local is not None :
1210
- __query ["local" ] = local
1211
1162
if master_timeout is not None :
1212
1163
__query ["master_timeout" ] = master_timeout
1213
1164
if pretty is not None :
@@ -1289,7 +1240,6 @@ async def ml_trained_models(
1289
1240
] = None ,
1290
1241
help : t .Optional [bool ] = None ,
1291
1242
human : t .Optional [bool ] = None ,
1292
- local : t .Optional [bool ] = None ,
1293
1243
master_timeout : t .Optional [t .Union [str , t .Literal [- 1 ], t .Literal [0 ]]] = None ,
1294
1244
pretty : t .Optional [bool ] = None ,
1295
1245
s : t .Optional [
@@ -1362,10 +1312,6 @@ async def ml_trained_models(
1362
1312
:param h: A comma-separated list of column names to display.
1363
1313
:param help: When set to `true` will output available columns. This option can't
1364
1314
be combined with any other query string option.
1365
- :param local: If `true`, the request computes the list of selected nodes from
1366
- the local cluster state. If `false` the list of selected nodes are computed
1367
- from the cluster state of the master node. In both cases the coordinating
1368
- node will send requests for further information to each selected node.
1369
1315
:param master_timeout: Period to wait for a connection to the master node.
1370
1316
:param s: A comma-separated list of column names or aliases used to sort the
1371
1317
response.
@@ -1398,8 +1344,6 @@ async def ml_trained_models(
1398
1344
__query ["help" ] = help
1399
1345
if human is not None :
1400
1346
__query ["human" ] = human
1401
- if local is not None :
1402
- __query ["local" ] = local
1403
1347
if master_timeout is not None :
1404
1348
__query ["master_timeout" ] = master_timeout
1405
1349
if pretty is not None :
@@ -1516,7 +1460,6 @@ async def transforms(
1516
1460
] = None ,
1517
1461
help : t .Optional [bool ] = None ,
1518
1462
human : t .Optional [bool ] = None ,
1519
- local : t .Optional [bool ] = None ,
1520
1463
master_timeout : t .Optional [t .Union [str , t .Literal [- 1 ], t .Literal [0 ]]] = None ,
1521
1464
pretty : t .Optional [bool ] = None ,
1522
1465
s : t .Optional [
@@ -1631,10 +1574,6 @@ async def transforms(
1631
1574
:param h: Comma-separated list of column names to display.
1632
1575
:param help: When set to `true` will output available columns. This option can't
1633
1576
be combined with any other query string option.
1634
- :param local: If `true`, the request computes the list of selected nodes from
1635
- the local cluster state. If `false` the list of selected nodes are computed
1636
- from the cluster state of the master node. In both cases the coordinating
1637
- node will send requests for further information to each selected node.
1638
1577
:param master_timeout: Period to wait for a connection to the master node.
1639
1578
:param s: Comma-separated list of column names or column aliases used to sort
1640
1579
the response.
@@ -1666,8 +1605,6 @@ async def transforms(
1666
1605
__query ["help" ] = help
1667
1606
if human is not None :
1668
1607
__query ["human" ] = human
1669
- if local is not None :
1670
- __query ["local" ] = local
1671
1608
if master_timeout is not None :
1672
1609
__query ["master_timeout" ] = master_timeout
1673
1610
if pretty is not None :
0 commit comments