elasticsearch-api 1.1.3 → 2.0.0.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/elasticsearch/api/actions/bulk.rb +1 -1
- data/lib/elasticsearch/api/actions/cat/aliases.rb +3 -0
- data/lib/elasticsearch/api/actions/cat/allocation.rb +3 -0
- data/lib/elasticsearch/api/actions/cat/count.rb +3 -0
- data/lib/elasticsearch/api/actions/cat/fielddata.rb +3 -0
- data/lib/elasticsearch/api/actions/cat/health.rb +3 -0
- data/lib/elasticsearch/api/actions/cat/indices.rb +3 -0
- data/lib/elasticsearch/api/actions/cat/master.rb +3 -0
- data/lib/elasticsearch/api/actions/cat/nodeattrs.rb +4 -3
- data/lib/elasticsearch/api/actions/cat/nodes.rb +3 -0
- data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +3 -0
- data/lib/elasticsearch/api/actions/cat/plugins.rb +4 -1
- data/lib/elasticsearch/api/actions/cat/recovery.rb +3 -0
- data/lib/elasticsearch/api/actions/cat/repositories.rb +3 -2
- data/lib/elasticsearch/api/actions/cat/segments.rb +4 -1
- data/lib/elasticsearch/api/actions/cat/shards.rb +3 -0
- data/lib/elasticsearch/api/actions/cat/snapshots.rb +3 -2
- data/lib/elasticsearch/api/actions/cat/tasks.rb +3 -1
- data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +3 -3
- data/lib/elasticsearch/api/actions/delete_by_query.rb +2 -0
- data/lib/elasticsearch/api/actions/index.rb +1 -1
- data/lib/elasticsearch/api/actions/indices/analyze.rb +0 -3
- data/lib/elasticsearch/api/actions/indices/create.rb +0 -3
- data/lib/elasticsearch/api/actions/indices/forcemerge.rb +0 -2
- data/lib/elasticsearch/api/actions/indices/get.rb +3 -0
- data/lib/elasticsearch/api/actions/indices/get_settings.rb +3 -0
- data/lib/elasticsearch/api/actions/indices/put_mapping.rb +0 -3
- data/lib/elasticsearch/api/actions/indices/put_settings.rb +1 -1
- data/lib/elasticsearch/api/actions/indices/segments.rb +0 -3
- data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +3 -1
- data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +3 -1
- data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +3 -1
- data/lib/elasticsearch/api/actions/ingest/simulate.rb +4 -3
- data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +0 -3
- data/lib/elasticsearch/api/actions/nodes/info.rb +2 -4
- data/lib/elasticsearch/api/actions/nodes/stats.rb +0 -3
- data/lib/elasticsearch/api/actions/percolate.rb +0 -3
- data/lib/elasticsearch/api/actions/ping.rb +1 -1
- data/lib/elasticsearch/api/actions/put_template.rb +0 -2
- data/lib/elasticsearch/api/actions/reindex.rb +1 -4
- data/lib/elasticsearch/api/actions/render_search_template.rb +4 -5
- data/lib/elasticsearch/api/actions/search.rb +0 -3
- data/lib/elasticsearch/api/actions/tasks/cancel.rb +2 -3
- data/lib/elasticsearch/api/actions/tasks/list.rb +5 -3
- data/lib/elasticsearch/api/actions/termvectors.rb +0 -2
- data/lib/elasticsearch/api/actions/update_by_query.rb +3 -0
- data/lib/elasticsearch/api/utils.rb +6 -6
- data/lib/elasticsearch/api/version.rb +1 -1
- data/test/integration/yaml_test_runner.rb +1 -2
- metadata +242 -330
- checksums.yaml +0 -7
@@ -37,6 +37,9 @@ module Elasticsearch
|
|
37
37
|
:ts,
|
38
38
|
:v ]
|
39
39
|
|
40
|
+
unsupported_params = [ :format ]
|
41
|
+
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
42
|
+
|
40
43
|
method = HTTP_GET
|
41
44
|
path = "_cat/health"
|
42
45
|
params = Utils.__validate_and_extract_params arguments, valid_params
|
@@ -35,6 +35,9 @@ module Elasticsearch
|
|
35
35
|
:help,
|
36
36
|
:v ]
|
37
37
|
|
38
|
+
unsupported_params = [ :format ]
|
39
|
+
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
40
|
+
|
38
41
|
method = HTTP_GET
|
39
42
|
path = "_cat/master"
|
40
43
|
params = Utils.__validate_and_extract_params arguments, valid_params
|
@@ -14,8 +14,6 @@ module Elasticsearch
|
|
14
14
|
# @see http://www.elastic.co/guide/en/elasticsearch/reference/master/cat-nodeattrs.html
|
15
15
|
#
|
16
16
|
def nodeattrs(arguments={})
|
17
|
-
Utils.__report_unsupported_method(__method__)
|
18
|
-
|
19
17
|
valid_params = [
|
20
18
|
:local,
|
21
19
|
:master_timeout,
|
@@ -23,7 +21,10 @@ module Elasticsearch
|
|
23
21
|
:help,
|
24
22
|
:v ]
|
25
23
|
|
26
|
-
|
24
|
+
unsupported_params = [ :format ]
|
25
|
+
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
26
|
+
|
27
|
+
method = HTTP_GET
|
27
28
|
path = "_cat/nodeattrs"
|
28
29
|
params = Utils.__validate_and_extract_params arguments, valid_params
|
29
30
|
body = nil
|
@@ -35,6 +35,9 @@ module Elasticsearch
|
|
35
35
|
:help,
|
36
36
|
:v ]
|
37
37
|
|
38
|
+
unsupported_params = [ :format ]
|
39
|
+
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
40
|
+
|
38
41
|
method = HTTP_GET
|
39
42
|
path = "_cat/pending_tasks"
|
40
43
|
params = Utils.__validate_and_extract_params arguments, valid_params
|
@@ -22,7 +22,10 @@ module Elasticsearch
|
|
22
22
|
:help,
|
23
23
|
:v ]
|
24
24
|
|
25
|
-
|
25
|
+
unsupported_params = [ :format ]
|
26
|
+
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
27
|
+
|
28
|
+
method = HTTP_GET
|
26
29
|
path = "_cat/plugins"
|
27
30
|
params = Utils.__validate_and_extract_params arguments, valid_params
|
28
31
|
body = nil
|
@@ -21,14 +21,15 @@ module Elasticsearch
|
|
21
21
|
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-repositories.html
|
22
22
|
#
|
23
23
|
def repositories(arguments={})
|
24
|
-
Utils.__report_unsupported_method(__method__)
|
25
|
-
|
26
24
|
valid_params = [
|
27
25
|
:master_timeout,
|
28
26
|
:h,
|
29
27
|
:help,
|
30
28
|
:v ]
|
31
29
|
|
30
|
+
unsupported_params = [ :format ]
|
31
|
+
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
32
|
+
|
32
33
|
method = HTTP_GET
|
33
34
|
path = "_cat/repositories"
|
34
35
|
params = Utils.__validate_and_extract_params arguments, valid_params
|
@@ -24,7 +24,10 @@ module Elasticsearch
|
|
24
24
|
:help,
|
25
25
|
:v ]
|
26
26
|
|
27
|
-
|
27
|
+
unsupported_params = [ :format ]
|
28
|
+
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
29
|
+
|
30
|
+
method = HTTP_GET
|
28
31
|
path = "_cat/segments"
|
29
32
|
params = Utils.__validate_and_extract_params arguments, valid_params
|
30
33
|
body = nil
|
@@ -21,8 +21,6 @@ module Elasticsearch
|
|
21
21
|
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-snapshots.html
|
22
22
|
#
|
23
23
|
def snapshots(arguments={})
|
24
|
-
Utils.__report_unsupported_method(__method__)
|
25
|
-
|
26
24
|
raise ArgumentError, "Required argument 'repository' missing" unless arguments[:repository]
|
27
25
|
|
28
26
|
valid_params = [
|
@@ -31,6 +29,9 @@ module Elasticsearch
|
|
31
29
|
:help,
|
32
30
|
:v ]
|
33
31
|
|
32
|
+
unsupported_params = [ :format ]
|
33
|
+
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
34
|
+
|
34
35
|
repository = arguments.delete(:repository)
|
35
36
|
|
36
37
|
method = HTTP_GET
|
@@ -13,9 +13,9 @@ module Elasticsearch
|
|
13
13
|
def allocation_explain(arguments={})
|
14
14
|
Utils.__report_unsupported_method(__method__)
|
15
15
|
|
16
|
-
valid_params = [
|
17
|
-
|
18
|
-
method =
|
16
|
+
valid_params = [ :include_yes_decisions ]
|
17
|
+
|
18
|
+
method = HTTP_GET
|
19
19
|
path = "_cluster/allocation/explain"
|
20
20
|
params = Utils.__validate_and_extract_params arguments, valid_params
|
21
21
|
body = arguments[:body]
|
@@ -43,6 +43,8 @@ module Elasticsearch
|
|
43
43
|
# @see http://www.elasticsearch.org/guide/reference/api/delete-by-query/
|
44
44
|
#
|
45
45
|
def delete_by_query(arguments={})
|
46
|
+
Utils.__report_unsupported_method(__method__)
|
47
|
+
|
46
48
|
raise ArgumentError, "Required argument 'index' missing" unless arguments[:index]
|
47
49
|
|
48
50
|
valid_params = [
|
@@ -90,7 +90,7 @@ module Elasticsearch
|
|
90
90
|
:version_type ]
|
91
91
|
|
92
92
|
unsupported_params = [ :pipeline ]
|
93
|
-
Utils.__report_unsupported_parameters(arguments
|
93
|
+
Utils.__report_unsupported_parameters(arguments, unsupported_params)
|
94
94
|
|
95
95
|
method = arguments[:id] ? HTTP_PUT : HTTP_POST
|
96
96
|
path = Utils.__pathify Utils.__escape(arguments[:index]),
|
@@ -64,9 +64,6 @@ module Elasticsearch
|
|
64
64
|
:token_filters,
|
65
65
|
:format ]
|
66
66
|
|
67
|
-
unsupported_params = [ :explain, :attributes ]
|
68
|
-
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
69
|
-
|
70
67
|
method = HTTP_GET
|
71
68
|
path = Utils.__pathify Utils.__listify(arguments[:index]), '_analyze'
|
72
69
|
|
@@ -75,9 +75,6 @@ module Elasticsearch
|
|
75
75
|
:update_all_types
|
76
76
|
]
|
77
77
|
|
78
|
-
unsupported_params = [ :update_all_types ]
|
79
|
-
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
80
|
-
|
81
78
|
method = HTTP_PUT
|
82
79
|
path = Utils.__pathify Utils.__escape(arguments[:index])
|
83
80
|
|
@@ -42,8 +42,6 @@ module Elasticsearch
|
|
42
42
|
# @see http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-forcemerge.html
|
43
43
|
#
|
44
44
|
def forcemerge(arguments={})
|
45
|
-
Utils.__report_unsupported_method(__method__)
|
46
|
-
|
47
45
|
valid_params = [
|
48
46
|
:max_num_segments,
|
49
47
|
:only_expunge_deletes,
|
@@ -35,6 +35,9 @@ module Elasticsearch
|
|
35
35
|
:human,
|
36
36
|
:include_defaults ]
|
37
37
|
|
38
|
+
unsupported_params = [ :include_defaults ]
|
39
|
+
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
40
|
+
|
38
41
|
method = HTTP_GET
|
39
42
|
|
40
43
|
path = Utils.__pathify Utils.__listify(arguments[:index]), Utils.__listify(arguments.delete(:feature))
|
@@ -53,6 +53,9 @@ module Elasticsearch
|
|
53
53
|
:local
|
54
54
|
]
|
55
55
|
|
56
|
+
unsupported_params = [ :include_defaults ]
|
57
|
+
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
58
|
+
|
56
59
|
method = HTTP_GET
|
57
60
|
path = Utils.__pathify Utils.__listify(arguments[:index]),
|
58
61
|
Utils.__listify(arguments[:type]),
|
@@ -62,9 +62,6 @@ module Elasticsearch
|
|
62
62
|
:timeout
|
63
63
|
]
|
64
64
|
|
65
|
-
unsupported_params = [ :update_all_types ]
|
66
|
-
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
67
|
-
|
68
65
|
method = HTTP_PUT
|
69
66
|
path = Utils.__pathify Utils.__listify(arguments[:index]), '_mapping', Utils.__escape(arguments[:type])
|
70
67
|
|
@@ -15,10 +15,12 @@ module Elasticsearch
|
|
15
15
|
Utils.__report_unsupported_method(__method__)
|
16
16
|
|
17
17
|
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
|
18
|
+
|
18
19
|
valid_params = [
|
19
20
|
:master_timeout,
|
20
21
|
:timeout ]
|
21
|
-
|
22
|
+
|
23
|
+
method = HTTP_DELETE
|
22
24
|
path = Utils.__pathify "_ingest/pipeline", Utils.__escape(arguments[:id])
|
23
25
|
params = Utils.__validate_and_extract_params arguments, valid_params
|
24
26
|
body = nil
|
@@ -14,9 +14,11 @@ module Elasticsearch
|
|
14
14
|
Utils.__report_unsupported_method(__method__)
|
15
15
|
|
16
16
|
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
|
17
|
+
|
17
18
|
valid_params = [
|
18
19
|
:master_timeout ]
|
19
|
-
|
20
|
+
|
21
|
+
method = HTTP_GET
|
20
22
|
path = Utils.__pathify "_ingest/pipeline", Utils.__escape(arguments[:id])
|
21
23
|
params = Utils.__validate_and_extract_params arguments, valid_params
|
22
24
|
body = nil
|
@@ -17,10 +17,12 @@ module Elasticsearch
|
|
17
17
|
|
18
18
|
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
|
19
19
|
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
20
|
+
|
20
21
|
valid_params = [
|
21
22
|
:master_timeout,
|
22
23
|
:timeout ]
|
23
|
-
|
24
|
+
|
25
|
+
method = HTTP_PUT
|
24
26
|
path = Utils.__pathify "_ingest/pipeline", Utils.__escape(arguments[:id])
|
25
27
|
|
26
28
|
params = Utils.__validate_and_extract_params arguments, valid_params
|
@@ -16,9 +16,10 @@ module Elasticsearch
|
|
16
16
|
Utils.__report_unsupported_method(__method__)
|
17
17
|
|
18
18
|
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
19
|
-
|
20
|
-
|
21
|
-
|
19
|
+
|
20
|
+
valid_params = [ :verbose ]
|
21
|
+
|
22
|
+
method = HTTP_GET
|
22
23
|
path = Utils.__pathify "_ingest/pipeline", Utils.__escape(arguments[:id]), '_simulate'
|
23
24
|
params = Utils.__validate_and_extract_params arguments, valid_params
|
24
25
|
body = arguments[:body]
|
@@ -34,9 +34,6 @@ module Elasticsearch
|
|
34
34
|
:type,
|
35
35
|
:timeout ]
|
36
36
|
|
37
|
-
unsupported_params = [ :timeout ]
|
38
|
-
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
39
|
-
|
40
37
|
method = HTTP_GET
|
41
38
|
path = Utils.__pathify '_nodes', Utils.__listify(arguments[:node_id]), 'hot_threads'
|
42
39
|
|
@@ -53,13 +53,11 @@ module Elasticsearch
|
|
53
53
|
:process,
|
54
54
|
:settings,
|
55
55
|
:thread_pool,
|
56
|
-
:transport
|
56
|
+
:transport,
|
57
|
+
:timeout ]
|
57
58
|
|
58
59
|
valid_params = [ :timeout ]
|
59
60
|
|
60
|
-
unsupported_params = [ :timeout ]
|
61
|
-
Utils.__report_unsupported_parameters(arguments.keys, unsupported_params)
|
62
|
-
|
63
61
|
method = HTTP_GET
|
64
62
|
|
65
63
|
if metric
|