elasticsearch-xpack 5.0.0 → 5.5.0
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.
- checksums.yaml +4 -4
- data/elasticsearch-xpack.gemspec +2 -2
- data/lib/elasticsearch/xpack.rb +2 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/close_job.rb +31 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_datafeed.rb +29 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_expired_data.rb +24 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_filter.rb +26 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_job.rb +29 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_model_snapshot.rb +28 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/flush_job.rb +36 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/get_buckets.rb +48 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/get_categories.rb +33 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/get_datafeed_stats.rb +25 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/get_datafeeds.rb +25 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/get_filters.rb +30 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/get_influencers.rb +44 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/get_job_stats.rb +25 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/get_jobs.rb +25 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/get_model_snapshots.rb +41 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/get_records.rb +44 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/open_job.rb +28 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/post_data.rb +33 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/preview_datafeed.rb +26 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/put_datafeed.rb +28 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/put_filter.rb +28 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/put_job.rb +28 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/revert_model_snapshot.rb +31 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/start_datafeed.rb +34 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/stop_datafeed.rb +31 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/update_datafeed.rb +28 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/update_job.rb +28 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/update_model_snapshot.rb +30 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/validate.rb +26 -0
- data/lib/elasticsearch/xpack/api/actions/machine_learning/validate_detector.rb +26 -0
- data/lib/elasticsearch/xpack/api/actions/security/delete_role_mapping.rb +34 -0
- data/lib/elasticsearch/xpack/api/actions/security/disable_user.rb +33 -0
- data/lib/elasticsearch/xpack/api/actions/security/enable_user.rb +33 -0
- data/lib/elasticsearch/xpack/api/actions/security/get_role_mapping.rb +25 -0
- data/lib/elasticsearch/xpack/api/actions/security/get_token.rb +26 -0
- data/lib/elasticsearch/xpack/api/actions/security/invalidate_token.rb +26 -0
- data/lib/elasticsearch/xpack/api/actions/security/put_role_mapping.rb +36 -0
- data/lib/elasticsearch/xpack/api/namespace/machine_learning.rb +20 -0
- data/lib/elasticsearch/xpack/version.rb +1 -1
- metadata +50 -11
@@ -0,0 +1,28 @@
|
|
1
|
+
module Elasticsearch
|
2
|
+
module XPack
|
3
|
+
module API
|
4
|
+
module MachineLearning
|
5
|
+
module Actions
|
6
|
+
|
7
|
+
# TODO: Description
|
8
|
+
#
|
9
|
+
# @option arguments [String] :job_id The ID of the job to create (*Required*)
|
10
|
+
# @option arguments [Hash] :body The job update settings (*Required*)
|
11
|
+
#
|
12
|
+
# @see http://www.elastic.co/guide/en/x-pack/current/ml-update-job.html
|
13
|
+
#
|
14
|
+
def update_job(arguments={})
|
15
|
+
raise ArgumentError, "Required argument 'job_id' missing" unless arguments[:job_id]
|
16
|
+
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
17
|
+
method = Elasticsearch::API::HTTP_POST
|
18
|
+
path = "_xpack/ml/anomaly_detectors/#{arguments[:job_id]}/_update"
|
19
|
+
params = {}
|
20
|
+
body = arguments[:body]
|
21
|
+
|
22
|
+
perform_request(method, path, params, body).body
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module Elasticsearch
|
2
|
+
module XPack
|
3
|
+
module API
|
4
|
+
module MachineLearning
|
5
|
+
module Actions
|
6
|
+
|
7
|
+
# TODO: Description
|
8
|
+
#
|
9
|
+
# @option arguments [String] :job_id The ID of the job to fetch (*Required*)
|
10
|
+
# @option arguments [String] :snapshot_id The ID of the snapshot to update (*Required*)
|
11
|
+
# @option arguments [Hash] :body The model snapshot properties to update (*Required*)
|
12
|
+
#
|
13
|
+
# @see http://www.elastic.co/guide/en/x-pack/current/ml-update-snapshot.html
|
14
|
+
#
|
15
|
+
def update_model_snapshot(arguments={})
|
16
|
+
raise ArgumentError, "Required argument 'job_id' missing" unless arguments[:job_id]
|
17
|
+
raise ArgumentError, "Required argument 'snapshot_id' missing" unless arguments[:snapshot_id]
|
18
|
+
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
19
|
+
method = Elasticsearch::API::HTTP_POST
|
20
|
+
path = "_xpack/ml/anomaly_detectors/#{arguments[:job_id]}/model_snapshots/#{arguments[:snapshot_id]}/_update"
|
21
|
+
params = {}
|
22
|
+
body = arguments[:body]
|
23
|
+
|
24
|
+
perform_request(method, path, params, body).body
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
module Elasticsearch
|
2
|
+
module XPack
|
3
|
+
module API
|
4
|
+
module MachineLearning
|
5
|
+
module Actions
|
6
|
+
|
7
|
+
# TODO: Description
|
8
|
+
#
|
9
|
+
# @option arguments [Hash] :body The job config (*Required*)
|
10
|
+
#
|
11
|
+
# @see http://www.elastic.co/guide/en/x-pack/current/ml-valid-job.html
|
12
|
+
#
|
13
|
+
def validate(arguments={})
|
14
|
+
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
15
|
+
method = Elasticsearch::API::HTTP_POST
|
16
|
+
path = "_xpack/ml/anomaly_detectors/_validate"
|
17
|
+
params = {}
|
18
|
+
body = arguments[:body]
|
19
|
+
|
20
|
+
perform_request(method, path, params, body).body
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
module Elasticsearch
|
2
|
+
module XPack
|
3
|
+
module API
|
4
|
+
module MachineLearning
|
5
|
+
module Actions
|
6
|
+
|
7
|
+
# TODO: Description
|
8
|
+
#
|
9
|
+
# @option arguments [Hash] :body The detector (*Required*)
|
10
|
+
#
|
11
|
+
# @see http://www.elastic.co/guide/en/x-pack/current/ml-valid-detector.html
|
12
|
+
#
|
13
|
+
def validate_detector(arguments={})
|
14
|
+
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
15
|
+
method = Elasticsearch::API::HTTP_POST
|
16
|
+
path = "_xpack/ml/anomaly_detectors/_validate/detector"
|
17
|
+
params = {}
|
18
|
+
body = arguments[:body]
|
19
|
+
|
20
|
+
perform_request(method, path, params, body).body
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
module Elasticsearch
|
2
|
+
module XPack
|
3
|
+
module API
|
4
|
+
module Security
|
5
|
+
module Actions
|
6
|
+
|
7
|
+
# Delete a role mapping
|
8
|
+
#
|
9
|
+
# @option arguments [String] :name Role-mapping name (*Required*)
|
10
|
+
# @option arguments [String] :refresh If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (options: true, false, wait_for)
|
11
|
+
#
|
12
|
+
# @see https://www.elastic.co/guide/en/x-pack/master/security-api-role-mapping.html#security-api-delete-role-mapping
|
13
|
+
#
|
14
|
+
def delete_role_mapping(arguments={})
|
15
|
+
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]
|
16
|
+
valid_params = [
|
17
|
+
:name,
|
18
|
+
:refresh ]
|
19
|
+
|
20
|
+
arguments = arguments.clone
|
21
|
+
name = arguments.delete(:name)
|
22
|
+
|
23
|
+
method = Elasticsearch::API::HTTP_DELETE
|
24
|
+
path = "_xpack/security/role_mapping/#{name}"
|
25
|
+
params = Elasticsearch::API::Utils.__validate_and_extract_params arguments, valid_params
|
26
|
+
body = nil
|
27
|
+
|
28
|
+
perform_request(method, path, params, body).body
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module Elasticsearch
|
2
|
+
module XPack
|
3
|
+
module API
|
4
|
+
module Security
|
5
|
+
module Actions
|
6
|
+
|
7
|
+
# Disable a user
|
8
|
+
#
|
9
|
+
# @option arguments [String] :username The username of the user to disable
|
10
|
+
# @option arguments [String] :refresh If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (options: true, false, wait_for)
|
11
|
+
#
|
12
|
+
# @see https://www.elastic.co/guide/en/x-pack/5.4/security-api-users.html
|
13
|
+
#
|
14
|
+
def disable_user(arguments={})
|
15
|
+
valid_params = [
|
16
|
+
:username,
|
17
|
+
:refresh ]
|
18
|
+
|
19
|
+
arguments = arguments.clone
|
20
|
+
username = arguments.delete(:username)
|
21
|
+
|
22
|
+
method = Elasticsearch::API::HTTP_PUT
|
23
|
+
path = "_xpack/security/user/#{username}/_disable"
|
24
|
+
params = Elasticsearch::API::Utils.__validate_and_extract_params arguments, valid_params
|
25
|
+
body = nil
|
26
|
+
|
27
|
+
perform_request(method, path, params, body).body
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module Elasticsearch
|
2
|
+
module XPack
|
3
|
+
module API
|
4
|
+
module Security
|
5
|
+
module Actions
|
6
|
+
|
7
|
+
# Enable a user
|
8
|
+
#
|
9
|
+
# @option arguments [String] :username The username of the user to enable
|
10
|
+
# @option arguments [String] :refresh If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (options: true, false, wait_for)
|
11
|
+
#
|
12
|
+
# @see https://www.elastic.co/guide/en/x-pack/5.4/security-api-users.html
|
13
|
+
#
|
14
|
+
def enable_user(arguments={})
|
15
|
+
valid_params = [
|
16
|
+
:username,
|
17
|
+
:refresh ]
|
18
|
+
|
19
|
+
arguments = arguments.clone
|
20
|
+
username = arguments.delete(:username)
|
21
|
+
|
22
|
+
method = Elasticsearch::API::HTTP_PUT
|
23
|
+
path = "_xpack/security/user/#{username}/_enable"
|
24
|
+
params = Elasticsearch::API::Utils.__validate_and_extract_params arguments, valid_params
|
25
|
+
body = nil
|
26
|
+
|
27
|
+
perform_request(method, path, params, body).body
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module Elasticsearch
|
2
|
+
module XPack
|
3
|
+
module API
|
4
|
+
module Security
|
5
|
+
module Actions
|
6
|
+
|
7
|
+
# Retrieve the mapping for a role
|
8
|
+
#
|
9
|
+
# @option arguments [String] :name Role-Mapping name
|
10
|
+
#
|
11
|
+
# @see https://www.elastic.co/guide/en/x-pack/master/security-api-role-mapping.html#security-api-get-role-mapping
|
12
|
+
#
|
13
|
+
def get_role_mapping(arguments={})
|
14
|
+
method = Elasticsearch::API::HTTP_GET
|
15
|
+
path = "_xpack/security/role_mapping/#{arguments[:name]}"
|
16
|
+
params = {}
|
17
|
+
body = nil
|
18
|
+
|
19
|
+
perform_request(method, path, params, body).body
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
module Elasticsearch
|
2
|
+
module XPack
|
3
|
+
module API
|
4
|
+
module Security
|
5
|
+
module Actions
|
6
|
+
|
7
|
+
# Obtain a token for OAuth 2.0 auhentication
|
8
|
+
#
|
9
|
+
# @option arguments [Hash] :body The token request to get (*Required*)
|
10
|
+
#
|
11
|
+
# @see https://www.elastic.co/guide/en/x-pack/master/security-api-tokens.html#security-api-get-token
|
12
|
+
#
|
13
|
+
def get_token(arguments={})
|
14
|
+
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
15
|
+
method = Elasticsearch::API::HTTP_POST
|
16
|
+
path = "_xpack/security/oauth2/token"
|
17
|
+
params = {}
|
18
|
+
body = arguments[:body]
|
19
|
+
|
20
|
+
perform_request(method, path, params, body).body
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
module Elasticsearch
|
2
|
+
module XPack
|
3
|
+
module API
|
4
|
+
module Security
|
5
|
+
module Actions
|
6
|
+
|
7
|
+
# Delete a token for OAuth 2.0 auhentication
|
8
|
+
#
|
9
|
+
# @option arguments [Hash] :body The token to invalidate (*Required*)
|
10
|
+
#
|
11
|
+
# @see https://www.elastic.co/guide/en/x-pack/master/security-api-tokens.html#security-api-invalidate-token
|
12
|
+
#
|
13
|
+
def invalidate_token(arguments={})
|
14
|
+
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
15
|
+
method = Elasticsearch::API::HTTP_DELETE
|
16
|
+
path = "_xpack/security/oauth2/token"
|
17
|
+
params = {}
|
18
|
+
body = arguments[:body]
|
19
|
+
|
20
|
+
perform_request(method, path, params, body).body
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
module Elasticsearch
|
2
|
+
module XPack
|
3
|
+
module API
|
4
|
+
module Security
|
5
|
+
module Actions
|
6
|
+
|
7
|
+
# Add a mapping for a role
|
8
|
+
#
|
9
|
+
# @option arguments [String] :name Role-mapping name (*Required*)
|
10
|
+
# @option arguments [Hash] :body The role to add (*Required*)
|
11
|
+
# @option arguments [String] :refresh If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (options: true, false, wait_for)
|
12
|
+
#
|
13
|
+
# @see https://www.elastic.co/guide/en/x-pack/master/security-api-role-mapping.html#security-api-put-role-mapping
|
14
|
+
#
|
15
|
+
def put_role_mapping(arguments={})
|
16
|
+
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]
|
17
|
+
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
18
|
+
valid_params = [
|
19
|
+
:name,
|
20
|
+
:refresh ]
|
21
|
+
|
22
|
+
arguments = arguments.clone
|
23
|
+
name = arguments.delete(:name)
|
24
|
+
|
25
|
+
method = Elasticsearch::API::HTTP_PUT
|
26
|
+
path = "_xpack/security/role_mapping/#{name}"
|
27
|
+
params = Elasticsearch::API::Utils.__validate_and_extract_params arguments, valid_params
|
28
|
+
body = arguments[:body]
|
29
|
+
|
30
|
+
perform_request(method, path, params, body).body
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Elasticsearch
|
2
|
+
module XPack
|
3
|
+
module API
|
4
|
+
module MachineLearning
|
5
|
+
module Actions; end
|
6
|
+
|
7
|
+
class MachineLearningClient
|
8
|
+
include Elasticsearch::API::Common::Client, Elasticsearch::API::Common::Client::Base, MachineLearning::Actions
|
9
|
+
end
|
10
|
+
|
11
|
+
def machine_learning
|
12
|
+
@machine_learning ||= MachineLearningClient.new(self)
|
13
|
+
end
|
14
|
+
|
15
|
+
alias :ml :machine_learning
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elasticsearch-xpack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Karel Minarik
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -56,30 +56,30 @@ dependencies:
|
|
56
56
|
name: elasticsearch
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - "
|
59
|
+
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '5'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - "
|
66
|
+
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
68
|
+
version: '5'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: elasticsearch-transport
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- - "
|
73
|
+
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
75
|
+
version: '5'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- - "
|
80
|
+
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
82
|
+
version: '5'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: elasticsearch-extensions
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -241,16 +241,54 @@ files:
|
|
241
241
|
- lib/elasticsearch/xpack/api/actions/license/delete.rb
|
242
242
|
- lib/elasticsearch/xpack/api/actions/license/get.rb
|
243
243
|
- lib/elasticsearch/xpack/api/actions/license/post.rb
|
244
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/close_job.rb
|
245
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/delete_datafeed.rb
|
246
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/delete_expired_data.rb
|
247
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/delete_filter.rb
|
248
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/delete_job.rb
|
249
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/delete_model_snapshot.rb
|
250
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/flush_job.rb
|
251
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/get_buckets.rb
|
252
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/get_categories.rb
|
253
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/get_datafeed_stats.rb
|
254
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/get_datafeeds.rb
|
255
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/get_filters.rb
|
256
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/get_influencers.rb
|
257
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/get_job_stats.rb
|
258
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/get_jobs.rb
|
259
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/get_model_snapshots.rb
|
260
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/get_records.rb
|
261
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/open_job.rb
|
262
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/post_data.rb
|
263
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/preview_datafeed.rb
|
264
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/put_datafeed.rb
|
265
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/put_filter.rb
|
266
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/put_job.rb
|
267
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/revert_model_snapshot.rb
|
268
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/start_datafeed.rb
|
269
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/stop_datafeed.rb
|
270
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/update_datafeed.rb
|
271
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/update_job.rb
|
272
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/update_model_snapshot.rb
|
273
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/validate.rb
|
274
|
+
- lib/elasticsearch/xpack/api/actions/machine_learning/validate_detector.rb
|
244
275
|
- lib/elasticsearch/xpack/api/actions/monitoring/bulk.rb
|
245
276
|
- lib/elasticsearch/xpack/api/actions/security/authenticate.rb
|
246
277
|
- lib/elasticsearch/xpack/api/actions/security/change_password.rb
|
247
278
|
- lib/elasticsearch/xpack/api/actions/security/clear_cached_realms.rb
|
248
279
|
- lib/elasticsearch/xpack/api/actions/security/clear_cached_roles.rb
|
249
280
|
- lib/elasticsearch/xpack/api/actions/security/delete_role.rb
|
281
|
+
- lib/elasticsearch/xpack/api/actions/security/delete_role_mapping.rb
|
250
282
|
- lib/elasticsearch/xpack/api/actions/security/delete_user.rb
|
283
|
+
- lib/elasticsearch/xpack/api/actions/security/disable_user.rb
|
284
|
+
- lib/elasticsearch/xpack/api/actions/security/enable_user.rb
|
251
285
|
- lib/elasticsearch/xpack/api/actions/security/get_role.rb
|
286
|
+
- lib/elasticsearch/xpack/api/actions/security/get_role_mapping.rb
|
287
|
+
- lib/elasticsearch/xpack/api/actions/security/get_token.rb
|
252
288
|
- lib/elasticsearch/xpack/api/actions/security/get_user.rb
|
289
|
+
- lib/elasticsearch/xpack/api/actions/security/invalidate_token.rb
|
253
290
|
- lib/elasticsearch/xpack/api/actions/security/put_role.rb
|
291
|
+
- lib/elasticsearch/xpack/api/actions/security/put_role_mapping.rb
|
254
292
|
- lib/elasticsearch/xpack/api/actions/security/put_user.rb
|
255
293
|
- lib/elasticsearch/xpack/api/actions/usage.rb
|
256
294
|
- lib/elasticsearch/xpack/api/actions/watcher/ack_watch.rb
|
@@ -266,6 +304,7 @@ files:
|
|
266
304
|
- lib/elasticsearch/xpack/api/actions/watcher/stop.rb
|
267
305
|
- lib/elasticsearch/xpack/api/namespace/graph.rb
|
268
306
|
- lib/elasticsearch/xpack/api/namespace/license.rb
|
307
|
+
- lib/elasticsearch/xpack/api/namespace/machine_learning.rb
|
269
308
|
- lib/elasticsearch/xpack/api/namespace/monitoring.rb
|
270
309
|
- lib/elasticsearch/xpack/api/namespace/security.rb
|
271
310
|
- lib/elasticsearch/xpack/api/namespace/watcher.rb
|
@@ -290,7 +329,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
290
329
|
version: '0'
|
291
330
|
requirements: []
|
292
331
|
rubyforge_project:
|
293
|
-
rubygems_version: 2.
|
332
|
+
rubygems_version: 2.6.12
|
294
333
|
signing_key:
|
295
334
|
specification_version: 4
|
296
335
|
summary: Ruby integrations for the X-Pack extensions for Elasticsearch
|