elastic-enterprise-search 7.14.0 → 7.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ci/functions/imports.sh +1 -0
- data/.ci/jobs/defaults.yml +4 -0
- data/.ci/jobs/{elastic+enterprise-search-ruby+master.yml → elastic+enterprise-search-ruby+main.yml} +4 -4
- data/.ci/run-repository.sh +2 -1
- data/.ci/test-matrix.yml +5 -3
- data/.github/workflows/testing.yml +1 -1
- data/CONTRIBUTING.md +1 -1
- data/README.md +1 -1
- data/Rakefile +19 -0
- data/docs/guide/app-search-api.asciidoc +129 -1
- data/docs/guide/overview.asciidoc +3 -3
- data/docs/guide/release_notes/715.asciidoc +36 -0
- data/docs/guide/release_notes/index.asciidoc +2 -0
- data/docs/guide/workplace-search-api.asciidoc +14 -0
- data/lib/elastic/app-search/api/add_meta_engine_source.rb +3 -2
- data/lib/elastic/app-search/api/api_key.rb +2 -1
- data/lib/elastic/app-search/api/api_logs.rb +14 -13
- data/lib/elastic/app-search/api/count_analytics.rb +7 -6
- data/lib/elastic/app-search/api/crawler_active_crawl_request.rb +51 -0
- data/lib/elastic/app-search/api/crawler_crawl_request.rb +54 -0
- data/lib/elastic/app-search/api/crawler_crawl_schedule.rb +51 -0
- data/lib/elastic/app-search/api/crawler_domain.rb +54 -0
- data/lib/elastic/app-search/api/crawler_domain_validation_result.rb +48 -0
- data/lib/elastic/app-search/api/crawler_metrics.rb +48 -0
- data/lib/elastic/app-search/api/crawler_overview.rb +51 -0
- data/lib/elastic/app-search/api/crawler_process_crawl.rb +54 -0
- data/lib/elastic/app-search/api/crawler_process_crawl_denied_urls.rb +54 -0
- data/lib/elastic/app-search/api/crawler_url_extraction_result.rb +52 -0
- data/lib/elastic/app-search/api/crawler_url_tracing_result.rb +52 -0
- data/lib/elastic/app-search/api/crawler_url_validation_result.rb +52 -0
- data/lib/elastic/app-search/api/crawler_user_agent.rb +48 -0
- data/lib/elastic/app-search/api/create_api_key.rb +9 -1
- data/lib/elastic/app-search/api/create_crawler_crawl_request.rb +51 -0
- data/lib/elastic/app-search/api/create_crawler_crawl_rule.rb +59 -0
- data/lib/elastic/app-search/api/create_crawler_domain.rb +55 -0
- data/lib/elastic/app-search/api/create_crawler_entry_point.rb +56 -0
- data/lib/elastic/app-search/api/create_crawler_process_crawl.rb +53 -0
- data/lib/elastic/app-search/api/create_crawler_sitemap.rb +56 -0
- data/lib/elastic/app-search/api/create_curation.rb +7 -6
- data/lib/elastic/app-search/api/create_engine.rb +9 -7
- data/lib/elastic/app-search/api/create_synonym_set.rb +7 -4
- data/lib/elastic/app-search/api/curation.rb +4 -3
- data/lib/elastic/app-search/api/delete_active_crawl_request.rb +51 -0
- data/lib/elastic/app-search/api/delete_api_key.rb +1 -0
- data/lib/elastic/app-search/api/delete_crawler_active_crawl_request.rb +51 -0
- data/lib/elastic/app-search/api/delete_crawler_crawl_rule.rb +57 -0
- data/lib/elastic/app-search/api/delete_crawler_crawl_schedule.rb +51 -0
- data/lib/elastic/app-search/api/delete_crawler_domain.rb +54 -0
- data/lib/elastic/app-search/api/delete_crawler_entry_point.rb +57 -0
- data/lib/elastic/app-search/api/delete_crawler_sitemap.rb +57 -0
- data/lib/elastic/app-search/api/delete_curation.rb +4 -3
- data/lib/elastic/app-search/api/delete_documents.rb +2 -1
- data/lib/elastic/app-search/api/delete_engine.rb +3 -2
- data/lib/elastic/app-search/api/delete_meta_engine_source.rb +3 -3
- data/lib/elastic/app-search/api/delete_synonym_set.rb +4 -3
- data/lib/elastic/app-search/api/denied_urls.rb +54 -0
- data/lib/elastic/app-search/api/documents.rb +3 -2
- data/lib/elastic/app-search/api/engine.rb +3 -2
- data/lib/elastic/app-search/api/index_documents.rb +3 -2
- data/lib/elastic/app-search/api/list_api_keys.rb +2 -1
- data/lib/elastic/app-search/api/list_crawler_crawl_requests.rb +52 -0
- data/lib/elastic/app-search/api/list_crawler_process_crawls.rb +51 -0
- data/lib/elastic/app-search/api/list_curations.rb +3 -2
- data/lib/elastic/app-search/api/list_documents.rb +3 -2
- data/lib/elastic/app-search/api/list_engines.rb +2 -1
- data/lib/elastic/app-search/api/list_synonym_sets.rb +3 -2
- data/lib/elastic/app-search/api/log_clickthrough.rb +8 -10
- data/lib/elastic/app-search/api/put_api_key.rb +9 -2
- data/lib/elastic/app-search/api/put_crawler_crawl_rule.rb +62 -0
- data/lib/elastic/app-search/api/put_crawler_crawl_schedule.rb +53 -0
- data/lib/elastic/app-search/api/put_crawler_domain.rb +58 -0
- data/lib/elastic/app-search/api/put_crawler_entry_point.rb +59 -0
- data/lib/elastic/app-search/api/put_crawler_sitemap.rb +59 -0
- data/lib/elastic/app-search/api/put_curation.rb +9 -8
- data/lib/elastic/app-search/api/put_documents.rb +3 -3
- data/lib/elastic/app-search/api/put_schema.rb +4 -4
- data/lib/elastic/app-search/api/put_search_settings.rb +6 -2
- data/lib/elastic/app-search/api/put_synonym_set.rb +8 -5
- data/lib/elastic/app-search/api/query_suggestion.rb +7 -7
- data/lib/elastic/app-search/api/reset_search_settings.rb +3 -2
- data/lib/elastic/app-search/api/schema.rb +3 -2
- data/lib/elastic/app-search/api/search.rb +14 -3
- data/lib/elastic/app-search/api/search_settings.rb +3 -2
- data/lib/elastic/app-search/api/synonym_set.rb +4 -3
- data/lib/elastic/app-search/api/top_clicks_analytics.rb +8 -8
- data/lib/elastic/app-search/api/top_queries_analytics.rb +7 -7
- data/lib/elastic/app-search/app_search.rb +0 -10
- data/lib/elastic/enterprise-search/api/health.rb +1 -0
- data/lib/elastic/enterprise-search/api/put_read_only.rb +3 -2
- data/lib/elastic/enterprise-search/api/read_only.rb +1 -0
- data/lib/elastic/enterprise-search/api/version.rb +1 -0
- data/lib/elastic/enterprise-search/request.rb +10 -1
- data/lib/elastic/enterprise-search/version.rb +1 -1
- data/lib/elastic/workplace-search/api/auto_query_refinement_details.rb +49 -0
- data/lib/elastic/workplace-search/api/create_content_source.rb +1 -0
- data/lib/elastic/workplace-search/api/delete_synonym_set.rb +1 -1
- data/lib/elastic/workplace-search/api/put_content_source.rb +1 -0
- data/lib/elastic/workplace-search/api/put_synonym_set.rb +1 -1
- data/lib/elastic/workplace-search/api/put_triggers_blocklist.rb +47 -0
- data/lib/elastic/workplace-search/api/search.rb +3 -0
- data/lib/elastic/workplace-search/api/synonym_set.rb +1 -1
- data/{spec/app-search/api_logs_spec.rb → lib/elastic/workplace-search/api/triggers_blocklist.rb} +23 -14
- data/lib/elastic/workplace-search/workplace_search.rb +0 -15
- data/spec/integration/app-search/api_key_spec.rb +110 -0
- data/spec/integration/app-search/api_logs_spec.rb +59 -0
- data/spec/{app-search/api_spec_helper.rb → integration/app-search/app_search_helper.rb} +17 -8
- data/spec/integration/app-search/count_analytics_spec.rb +47 -0
- data/spec/integration/app-search/crawl_requests_spec.rb +86 -0
- data/spec/integration/app-search/crawler_crawl_rule_spec.rb +73 -0
- data/spec/integration/app-search/crawler_domain_spec.rb +82 -0
- data/spec/integration/app-search/crawler_entry_point_spec.rb +89 -0
- data/spec/integration/app-search/crawler_metrics_spec.rb +46 -0
- data/spec/integration/app-search/crawler_overview_spec.rb +45 -0
- data/spec/integration/app-search/crawler_process_crawl_denied_urls_spec.rb +50 -0
- data/spec/integration/app-search/crawler_process_crawl_spec.rb +66 -0
- data/spec/integration/app-search/crawler_scheduling_spec.rb +81 -0
- data/spec/integration/app-search/crawler_sitemap_spec.rb +72 -0
- data/spec/integration/app-search/crawler_urls_spec.rb +60 -0
- data/spec/{app-search/api_count_analytics_spec.rb → integration/app-search/crawler_user_agent_spec.rb} +6 -9
- data/spec/integration/app-search/curations_spec.rb +118 -0
- data/spec/integration/app-search/documents_spec.rb +123 -0
- data/spec/integration/app-search/engines_spec.rb +77 -0
- data/spec/{app-search/api_log_clickthrough_spec.rb → integration/app-search/log_clickthrough_spec.rb} +14 -7
- data/spec/integration/app-search/meta_engines_spec.rb +75 -0
- data/spec/integration/app-search/query_suggestion_spec.rb +50 -0
- data/spec/{app-search/api_schema_spec.rb → integration/app-search/schema_spec.rb} +21 -16
- data/spec/integration/app-search/search_and_multiple_search_spec.rb +67 -0
- data/spec/integration/app-search/search_settings_spec.rb +87 -0
- data/spec/integration/app-search/synonyms_spec.rb +79 -0
- data/spec/{app-search/api_top_clicks_analytics_spec.rb → integration/app-search/top_clicks_analytics_spec.rb} +20 -14
- data/spec/{app-search/api_top_queries_analytics_spec.rb → integration/app-search/top_queries_analytics_spec.rb} +16 -8
- data/spec/integration/workplace-search/content_sources_spec.rb +106 -0
- data/spec/integration/workplace-search/documents_spec.rb +95 -0
- data/spec/integration/workplace-search/external_identities_spec.rb +97 -0
- data/spec/integration/{icon.png → workplace-search/icon.png} +0 -0
- data/spec/integration/workplace-search/permissions_spec.rb +77 -0
- data/spec/integration/workplace-search/synonym_sets_spec.rb +92 -0
- data/spec/integration/workplace-search/triggers_spec.rb +43 -0
- data/spec/{app-search/api_query_suggestion_spec.rb → integration/workplace-search/users_spec.rb} +12 -15
- data/spec/integration/workplace-search/workplace_search_helper.rb +39 -0
- metadata +79 -64
- data/spec/app-search/api_apikey_spec.rb +0 -92
- data/spec/app-search/api_curations_spec.rb +0 -97
- data/spec/app-search/api_documents_spec.rb +0 -102
- data/spec/app-search/api_engines_spec.rb +0 -67
- data/spec/app-search/api_meta_engines_spec.rb +0 -72
- data/spec/app-search/api_search_and_multi_search_spec.rb +0 -48
- data/spec/app-search/api_search_settings_spec.rb +0 -76
- data/spec/app-search/api_synonyms_spec.rb +0 -79
- data/spec/fixtures/vcr/app_search/add_meta_engine_source.yml +0 -109
- data/spec/fixtures/vcr/app_search/api_documents.yml +0 -56
- data/spec/fixtures/vcr/app_search/api_index_documents.yml +0 -57
- data/spec/fixtures/vcr/app_search/api_log_clickthrough.yml +0 -54
- data/spec/fixtures/vcr/app_search/api_logs.yml +0 -70
- data/spec/fixtures/vcr/app_search/api_put_schema.yml +0 -109
- data/spec/fixtures/vcr/app_search/api_put_search_settings.yml +0 -56
- data/spec/fixtures/vcr/app_search/api_query_suggestion.yml +0 -59
- data/spec/fixtures/vcr/app_search/api_reset_search_settings.yml +0 -56
- data/spec/fixtures/vcr/app_search/api_schema.yml +0 -56
- data/spec/fixtures/vcr/app_search/api_search_settings.yml +0 -56
- data/spec/fixtures/vcr/app_search/api_top_clicks_analytics.yml +0 -55
- data/spec/fixtures/vcr/app_search/api_top_clicks_analytics_query.yml +0 -55
- data/spec/fixtures/vcr/app_search/api_top_queries_analytics.yml +0 -55
- data/spec/fixtures/vcr/app_search/count_analytics.yml +0 -55
- data/spec/fixtures/vcr/app_search/create_and_update_document.yml +0 -107
- data/spec/fixtures/vcr/app_search/create_api_key.yml +0 -52
- data/spec/fixtures/vcr/app_search/create_curation.yml +0 -113
- data/spec/fixtures/vcr/app_search/create_engine.yml +0 -55
- data/spec/fixtures/vcr/app_search/create_meta_engine.yml +0 -56
- data/spec/fixtures/vcr/app_search/create_synonym_set.yml +0 -56
- data/spec/fixtures/vcr/app_search/delete_api_key.yml +0 -52
- data/spec/fixtures/vcr/app_search/delete_curation.yml +0 -56
- data/spec/fixtures/vcr/app_search/delete_engine.yml +0 -55
- data/spec/fixtures/vcr/app_search/delete_meta_engine_source.yml +0 -56
- data/spec/fixtures/vcr/app_search/delete_synonym_set.yml +0 -56
- data/spec/fixtures/vcr/app_search/get_api_key.yml +0 -52
- data/spec/fixtures/vcr/app_search/get_curation.yml +0 -56
- data/spec/fixtures/vcr/app_search/get_engine.yml +0 -55
- data/spec/fixtures/vcr/app_search/index_and_delete_document.yml +0 -107
- data/spec/fixtures/vcr/app_search/list_api_keys.yml +0 -52
- data/spec/fixtures/vcr/app_search/list_curations.yml +0 -56
- data/spec/fixtures/vcr/app_search/list_documents.yml +0 -57
- data/spec/fixtures/vcr/app_search/list_engines.yml +0 -55
- data/spec/fixtures/vcr/app_search/list_synonym_sets.yml +0 -56
- data/spec/fixtures/vcr/app_search/multi_query_search.yml +0 -63
- data/spec/fixtures/vcr/app_search/put_api_key.yml +0 -52
- data/spec/fixtures/vcr/app_search/put_curation.yml +0 -113
- data/spec/fixtures/vcr/app_search/put_synonym_set.yml +0 -56
- data/spec/fixtures/vcr/app_search/search.yml +0 -57
- data/spec/fixtures/vcr/app_search/single_query_search.yml +0 -60
- data/spec/fixtures/vcr/app_search/synonym_set.yml +0 -56
- data/spec/integration/workplace_search_spec.rb +0 -375
@@ -0,0 +1,58 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
4
|
+
# license agreements. See the NOTICE file distributed with
|
5
|
+
# this work for additional information regarding copyright
|
6
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
7
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
8
|
+
# not use this file except in compliance with the License.
|
9
|
+
# You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
|
20
|
+
module Elastic
|
21
|
+
module EnterpriseSearch
|
22
|
+
module AppSearch
|
23
|
+
module Actions
|
24
|
+
# Crawler - Update domain configuration
|
25
|
+
# Updates crawler domain configuration for a given domain
|
26
|
+
#
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
28
|
+
# @param arguments [Hash] endpoint arguments
|
29
|
+
# @option arguments [String] :domain_id Crawler Domain ID (*Required*)
|
30
|
+
# @option arguments [Hash] :body
|
31
|
+
# @option body [String] :name
|
32
|
+
# @option body [Array] :entry_points
|
33
|
+
# @option body [Array] :crawl_rules
|
34
|
+
# @option body [Array] :sitemaps
|
35
|
+
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
36
|
+
#
|
37
|
+
# @see https://www.elastic.co/guide/en/app-search/current/web-crawler-api-reference.html#web-crawler-apis-put-crawler-domain
|
38
|
+
#
|
39
|
+
def put_crawler_domain(engine_name, arguments = {})
|
40
|
+
raise ArgumentError, "Required parameter 'engine_name' missing" unless engine_name
|
41
|
+
raise ArgumentError, "Required parameter 'domain_id' missing" unless arguments[:domain_id]
|
42
|
+
|
43
|
+
domain_id = arguments[:domain_id]
|
44
|
+
body = arguments.delete(:body) || {}
|
45
|
+
headers = arguments.delete(:headers) || {}
|
46
|
+
|
47
|
+
request(
|
48
|
+
:put,
|
49
|
+
"api/as/v0/engines/#{engine_name}/crawler/domains/#{domain_id}/",
|
50
|
+
arguments,
|
51
|
+
body,
|
52
|
+
headers
|
53
|
+
)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
4
|
+
# license agreements. See the NOTICE file distributed with
|
5
|
+
# this work for additional information regarding copyright
|
6
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
7
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
8
|
+
# not use this file except in compliance with the License.
|
9
|
+
# You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
|
20
|
+
module Elastic
|
21
|
+
module EnterpriseSearch
|
22
|
+
module AppSearch
|
23
|
+
module Actions
|
24
|
+
# Crawler - Update a crawler entry point
|
25
|
+
# Updates a crawler entry point with a new value
|
26
|
+
#
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
28
|
+
# @param arguments [Hash] endpoint arguments
|
29
|
+
# @option arguments [String] :domain_id Crawler Domain ID (*Required*)
|
30
|
+
# @option arguments [String] :entry_point_id Crawler Entry Point identifier (*Required*)
|
31
|
+
# @option arguments [Hash] :body (Required: value)
|
32
|
+
# @option body [String] :id
|
33
|
+
# @option body [String] :value (*Required)
|
34
|
+
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
35
|
+
#
|
36
|
+
# @see https://www.elastic.co/guide/en/app-search/current/web-crawler-api-reference.html#web-crawler-apis-put-entry-point
|
37
|
+
#
|
38
|
+
def put_crawler_entry_point(engine_name, arguments = {})
|
39
|
+
raise ArgumentError, "Required parameter 'engine_name' missing" unless engine_name
|
40
|
+
raise ArgumentError, "Required parameter 'domain_id' missing" unless arguments[:domain_id]
|
41
|
+
raise ArgumentError, "Required parameter 'entry_point_id' missing" unless arguments[:entry_point_id]
|
42
|
+
|
43
|
+
domain_id = arguments[:domain_id]
|
44
|
+
entry_point_id = arguments[:entry_point_id]
|
45
|
+
body = arguments.delete(:body) || {}
|
46
|
+
headers = arguments.delete(:headers) || {}
|
47
|
+
|
48
|
+
request(
|
49
|
+
:put,
|
50
|
+
"api/as/v0/engines/#{engine_name}/crawler/domains/#{domain_id}/entry_points/#{entry_point_id}/",
|
51
|
+
arguments,
|
52
|
+
body,
|
53
|
+
headers
|
54
|
+
)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
4
|
+
# license agreements. See the NOTICE file distributed with
|
5
|
+
# this work for additional information regarding copyright
|
6
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
7
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
8
|
+
# not use this file except in compliance with the License.
|
9
|
+
# You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
|
20
|
+
module Elastic
|
21
|
+
module EnterpriseSearch
|
22
|
+
module AppSearch
|
23
|
+
module Actions
|
24
|
+
# Crawler - Update a sitemap
|
25
|
+
# Updates sitemap configuration
|
26
|
+
#
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
28
|
+
# @param arguments [Hash] endpoint arguments
|
29
|
+
# @option arguments [String] :domain_id Crawler Domain ID (*Required*)
|
30
|
+
# @option arguments [String] :sitemap_id Sitemap ID (*Required*)
|
31
|
+
# @option arguments [Hash] :body (Required: url)
|
32
|
+
# @option body [String] :id
|
33
|
+
# @option body [String] :url (*Required)
|
34
|
+
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
35
|
+
#
|
36
|
+
# @see https://www.elastic.co/guide/en/app-search/current/web-crawler-api-reference.html#web-crawler-apis-put-sitemap
|
37
|
+
#
|
38
|
+
def put_crawler_sitemap(engine_name, arguments = {})
|
39
|
+
raise ArgumentError, "Required parameter 'engine_name' missing" unless engine_name
|
40
|
+
raise ArgumentError, "Required parameter 'domain_id' missing" unless arguments[:domain_id]
|
41
|
+
raise ArgumentError, "Required parameter 'sitemap_id' missing" unless arguments[:sitemap_id]
|
42
|
+
|
43
|
+
domain_id = arguments[:domain_id]
|
44
|
+
sitemap_id = arguments[:sitemap_id]
|
45
|
+
body = arguments.delete(:body) || {}
|
46
|
+
headers = arguments.delete(:headers) || {}
|
47
|
+
|
48
|
+
request(
|
49
|
+
:put,
|
50
|
+
"api/as/v0/engines/#{engine_name}/crawler/domains/#{domain_id}/sitemaps/#{sitemap_id}/",
|
51
|
+
arguments,
|
52
|
+
body,
|
53
|
+
headers
|
54
|
+
)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -21,21 +21,22 @@ module Elastic
|
|
21
21
|
module EnterpriseSearch
|
22
22
|
module AppSearch
|
23
23
|
module Actions
|
24
|
-
# Curations - Update
|
24
|
+
# Curations - Update a curation
|
25
|
+
# Updates an existing curation
|
25
26
|
#
|
26
|
-
# @param engine_name [String]
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
27
28
|
# @param arguments [Hash] endpoint arguments
|
28
|
-
# @option arguments [
|
29
|
-
# @option arguments [
|
30
|
-
# @option
|
31
|
-
# @option
|
32
|
-
# @option
|
29
|
+
# @option arguments [String] :curation_id Curation ID (*Required*)
|
30
|
+
# @option arguments [Hash] :body (Required: queries)
|
31
|
+
# @option body [String] :id
|
32
|
+
# @option body [Array] :queries List of affected search queries (*Required)
|
33
|
+
# @option body [Array] :promoted List of promoted document IDs
|
34
|
+
# @option body [Array] :hidden List of hidden document IDs
|
33
35
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
34
36
|
#
|
35
37
|
# @see https://www.elastic.co/guide/en/app-search/current/curations.html#curations-update
|
36
38
|
#
|
37
39
|
def put_curation(engine_name, arguments = {})
|
38
|
-
raise ArgumentError, "Required parameter 'queries' missing" unless arguments[:queries]
|
39
40
|
raise ArgumentError, "Required parameter 'engine_name' missing" unless engine_name
|
40
41
|
raise ArgumentError, "Required parameter 'curation_id' missing" unless arguments[:curation_id]
|
41
42
|
|
@@ -22,17 +22,17 @@ module Elastic
|
|
22
22
|
module AppSearch
|
23
23
|
module Actions
|
24
24
|
# Documents - Partial update of documents
|
25
|
+
# Update specific document fields by id and field
|
25
26
|
#
|
26
|
-
# @param engine_name [String]
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
27
28
|
# @param arguments [Hash] endpoint arguments
|
28
|
-
# @option arguments [Array] :documents
|
29
|
+
# @option arguments [Array] :documents
|
29
30
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
30
31
|
#
|
31
32
|
# @see https://www.elastic.co/guide/en/app-search/current/documents.html#documents-partial
|
32
33
|
#
|
33
34
|
def put_documents(engine_name, arguments = {})
|
34
35
|
raise ArgumentError, "Required parameter 'engine_name' missing" unless engine_name
|
35
|
-
raise ArgumentError, "Required parameter 'documents' missing" unless arguments[:documents]
|
36
36
|
|
37
37
|
documents = arguments.delete(:documents) || {}
|
38
38
|
headers = arguments.delete(:headers) || {}
|
@@ -21,18 +21,18 @@ module Elastic
|
|
21
21
|
module EnterpriseSearch
|
22
22
|
module AppSearch
|
23
23
|
module Actions
|
24
|
-
# Schema - Update schema
|
24
|
+
# Schema - Update engine schema
|
25
|
+
# Update schema for the current engine
|
25
26
|
#
|
26
|
-
# @param engine_name [String]
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
27
28
|
# @param arguments [Hash] endpoint arguments
|
28
|
-
# @option arguments [Object] :schema
|
29
|
+
# @option arguments [Object] :schema
|
29
30
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
30
31
|
#
|
31
32
|
# @see https://www.elastic.co/guide/en/app-search/current/schema.html#schema-patch
|
32
33
|
#
|
33
34
|
def put_schema(engine_name, arguments = {})
|
34
35
|
raise ArgumentError, "Required parameter 'engine_name' missing" unless engine_name
|
35
|
-
raise ArgumentError, "Required parameter 'schema' missing" unless arguments[:schema]
|
36
36
|
|
37
37
|
schema = arguments.delete(:schema) || {}
|
38
38
|
headers = arguments.delete(:headers) || {}
|
@@ -23,9 +23,13 @@ module Elastic
|
|
23
23
|
module Actions
|
24
24
|
# Searchsettings - Update search settings for the engine
|
25
25
|
#
|
26
|
-
# @param engine_name [String]
|
26
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
27
27
|
# @param arguments [Hash] endpoint arguments
|
28
|
-
# @option arguments [
|
28
|
+
# @option arguments [Hash] :body
|
29
|
+
# @option body :boosts
|
30
|
+
# @option body :search_fields
|
31
|
+
# @option body :result_fields
|
32
|
+
# @option body [Integer] :precision
|
29
33
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
30
34
|
#
|
31
35
|
# @see https://www.elastic.co/guide/en/app-search/current/search-settings.html#search-settings-update
|
@@ -21,12 +21,15 @@ module Elastic
|
|
21
21
|
module EnterpriseSearch
|
22
22
|
module AppSearch
|
23
23
|
module Actions
|
24
|
-
# Synonyms - Update a synonym set
|
24
|
+
# Synonyms - Update a synonym set
|
25
|
+
# Updates a synonym set by ID
|
25
26
|
#
|
26
|
-
# @param engine_name [String]
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
27
28
|
# @param arguments [Hash] endpoint arguments
|
28
|
-
# @option arguments [String] :synonym_set_id
|
29
|
-
# @option arguments [
|
29
|
+
# @option arguments [String] :synonym_set_id Synonym Set ID (*Required*)
|
30
|
+
# @option arguments [Hash] :body (Required: synonyms)
|
31
|
+
# @option body [String] :id
|
32
|
+
# @option body :synonyms (*Required)
|
30
33
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
31
34
|
#
|
32
35
|
# @see https://www.elastic.co/guide/en/app-search/current/synonyms.html#synonyms-update
|
@@ -34,7 +37,7 @@ module Elastic
|
|
34
37
|
def put_synonym_set(engine_name, arguments = {})
|
35
38
|
raise ArgumentError, "Required parameter 'engine_name' missing" unless engine_name
|
36
39
|
raise ArgumentError, "Required parameter 'synonym_set_id' missing" unless arguments[:synonym_set_id]
|
37
|
-
raise ArgumentError, "Required parameter 'body' missing" unless arguments[:body]
|
40
|
+
raise ArgumentError, "Required parameter 'body (synonyms)' missing" unless arguments[:body] || arguments[:synonyms]
|
38
41
|
|
39
42
|
synonym_set_id = arguments[:synonym_set_id]
|
40
43
|
body = arguments.delete(:body) || {}
|
@@ -21,20 +21,20 @@ module Elastic
|
|
21
21
|
module EnterpriseSearch
|
22
22
|
module AppSearch
|
23
23
|
module Actions
|
24
|
-
#
|
24
|
+
# QuerySuggestion - Retrieve query suggestions
|
25
|
+
# Provide relevant query suggestions for incomplete queries
|
25
26
|
#
|
26
|
-
# @param engine_name [String]
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
27
28
|
# @param arguments [Hash] endpoint arguments
|
28
|
-
# @option arguments [
|
29
|
-
# @option
|
30
|
-
# @option
|
31
|
-
# @option
|
29
|
+
# @option arguments [Hash] :body
|
30
|
+
# @option body [String] :query
|
31
|
+
# @option body :types
|
32
|
+
# @option body [Integer] :size
|
32
33
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
33
34
|
#
|
34
35
|
# @see https://www.elastic.co/guide/en/app-search/current/query-suggestion.html
|
35
36
|
#
|
36
37
|
def query_suggestion(engine_name, arguments = {})
|
37
|
-
raise ArgumentError, "Required parameter 'query' missing" unless arguments[:query]
|
38
38
|
raise ArgumentError, "Required parameter 'engine_name' missing" unless engine_name
|
39
39
|
|
40
40
|
body = arguments.delete(:body) || {}
|
@@ -21,9 +21,10 @@ module Elastic
|
|
21
21
|
module EnterpriseSearch
|
22
22
|
module AppSearch
|
23
23
|
module Actions
|
24
|
-
#
|
24
|
+
# Synonyms - Reset search settings
|
25
|
+
# Resets search settings for the engine
|
25
26
|
#
|
26
|
-
# @param engine_name [String]
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
27
28
|
# @param arguments [Hash] endpoint arguments
|
28
29
|
# @option arguments [Hash] :body The request body
|
29
30
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
@@ -21,9 +21,10 @@ module Elastic
|
|
21
21
|
module EnterpriseSearch
|
22
22
|
module AppSearch
|
23
23
|
module Actions
|
24
|
-
# Schema - Retrieve
|
24
|
+
# Schema - Retrieve engine schema
|
25
|
+
# Retrieve current schema for the engine
|
25
26
|
#
|
26
|
-
# @param engine_name [String]
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
27
28
|
# @param arguments [Hash] endpoint arguments
|
28
29
|
# @option arguments [Hash] :body The request body
|
29
30
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
@@ -21,11 +21,22 @@ module Elastic
|
|
21
21
|
module EnterpriseSearch
|
22
22
|
module AppSearch
|
23
23
|
module Actions
|
24
|
-
# Search -
|
24
|
+
# Search - Submit a search
|
25
|
+
# Submit a search and receive a set of results with meta data
|
25
26
|
#
|
26
|
-
# @param engine_name [String]
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
27
28
|
# @param arguments [Hash] endpoint arguments
|
28
|
-
# @option arguments [
|
29
|
+
# @option arguments [Hash] :body (Required: query)
|
30
|
+
# @option body [String] :query (*Required)
|
31
|
+
# @option body :analytics
|
32
|
+
# @option body :boost
|
33
|
+
# @option body :facets
|
34
|
+
# @option body :filters
|
35
|
+
# @option body :group
|
36
|
+
# @option body :page
|
37
|
+
# @option body :result_fields
|
38
|
+
# @option body :search_fields
|
39
|
+
# @option body :sort
|
29
40
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
30
41
|
#
|
31
42
|
# @see https://www.elastic.co/guide/en/app-search/current/search.html
|
@@ -21,9 +21,10 @@ module Elastic
|
|
21
21
|
module EnterpriseSearch
|
22
22
|
module AppSearch
|
23
23
|
module Actions
|
24
|
-
#
|
24
|
+
# SearchSettings - Retrieve search settings
|
25
|
+
# Retrieve current search settings for the engine
|
25
26
|
#
|
26
|
-
# @param engine_name [String]
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
27
28
|
# @param arguments [Hash] endpoint arguments
|
28
29
|
# @option arguments [Hash] :body The request body
|
29
30
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
@@ -21,11 +21,12 @@ module Elastic
|
|
21
21
|
module EnterpriseSearch
|
22
22
|
module AppSearch
|
23
23
|
module Actions
|
24
|
-
# Synonyms - Retrieve a synonym set
|
24
|
+
# Synonyms - Retrieve a synonym set
|
25
|
+
# Retrieves a synonym set by ID
|
25
26
|
#
|
26
|
-
# @param engine_name [String]
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
27
28
|
# @param arguments [Hash] endpoint arguments
|
28
|
-
# @option arguments [String] :synonym_set_id
|
29
|
+
# @option arguments [String] :synonym_set_id Synonym Set ID (*Required*)
|
29
30
|
# @option arguments [Hash] :body The request body
|
30
31
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
31
32
|
#
|
@@ -21,15 +21,15 @@ module Elastic
|
|
21
21
|
module EnterpriseSearch
|
22
22
|
module AppSearch
|
23
23
|
module Actions
|
24
|
-
# Analytics -
|
24
|
+
# Analytics - Query for analytics click data
|
25
|
+
# Returns the number of clicks received by a document in descending order
|
25
26
|
#
|
26
|
-
# @param engine_name [String]
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
27
28
|
# @param arguments [Hash] endpoint arguments
|
28
|
-
# @option arguments [
|
29
|
-
# @option
|
30
|
-
# @option
|
31
|
-
# @option
|
32
|
-
# @option arguments [Hash] :body The request body
|
29
|
+
# @option arguments [Hash] :body
|
30
|
+
# @option body [String] :query
|
31
|
+
# @option body :filters
|
32
|
+
# @option body [Object] :page
|
33
33
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
34
34
|
#
|
35
35
|
# @see https://www.elastic.co/guide/en/app-search/current/clicks.html
|
@@ -41,7 +41,7 @@ module Elastic
|
|
41
41
|
headers = arguments.delete(:headers) || {}
|
42
42
|
|
43
43
|
request(
|
44
|
-
:
|
44
|
+
:post,
|
45
45
|
"api/as/v1/engines/#{engine_name}/analytics/clicks/",
|
46
46
|
arguments,
|
47
47
|
body,
|
@@ -21,14 +21,14 @@ module Elastic
|
|
21
21
|
module EnterpriseSearch
|
22
22
|
module AppSearch
|
23
23
|
module Actions
|
24
|
-
# Analytics -
|
24
|
+
# Analytics - Query for analytics query data
|
25
|
+
# Returns queries analytics by usage count
|
25
26
|
#
|
26
|
-
# @param engine_name [String]
|
27
|
+
# @param engine_name [String] Name of the engine (*Required*)
|
27
28
|
# @param arguments [Hash] endpoint arguments
|
28
|
-
# @option arguments [
|
29
|
-
# @option
|
30
|
-
# @option
|
31
|
-
# @option arguments [Hash] :body The request body
|
29
|
+
# @option arguments [Hash] :body
|
30
|
+
# @option body :filters
|
31
|
+
# @option body [Object] :page
|
32
32
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
33
33
|
#
|
34
34
|
# @see https://www.elastic.co/guide/en/app-search/current/queries.html#queries-top-queries
|
@@ -40,7 +40,7 @@ module Elastic
|
|
40
40
|
headers = arguments.delete(:headers) || {}
|
41
41
|
|
42
42
|
request(
|
43
|
-
:
|
43
|
+
:post,
|
44
44
|
"api/as/v1/engines/#{engine_name}/analytics/queries/",
|
45
45
|
arguments,
|
46
46
|
body,
|
@@ -25,20 +25,10 @@ module Elastic
|
|
25
25
|
#
|
26
26
|
# @see https://www.elastic.co/guide/en/app-search/current/index.html
|
27
27
|
module AppSearch
|
28
|
-
# The Request module is included in the AppSearch Client to override
|
29
|
-
# EnterpriseSearch client's authentication method with App's
|
30
|
-
# authentication.
|
31
|
-
module Request
|
32
|
-
def setup_authentication_header
|
33
|
-
"Bearer #{http_auth}"
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
28
|
# The App Search Client
|
38
29
|
# Extends EnterpriseSearch client but overrides authentication to use access token.
|
39
30
|
class Client < Elastic::EnterpriseSearch::Client
|
40
31
|
include Elastic::EnterpriseSearch::AppSearch::Actions
|
41
|
-
include Elastic::EnterpriseSearch::AppSearch::Request
|
42
32
|
|
43
33
|
# Create a new Elastic::EnterpriseSearch::AppSearch::Client client
|
44
34
|
#
|
@@ -23,6 +23,7 @@ module Elastic
|
|
23
23
|
# Health - Get information on the health of a deployment and basic statistics around resource usage
|
24
24
|
# Get information on the health of a deployment and basic statistics around resource usage
|
25
25
|
#
|
26
|
+
# @param arguments [Hash] endpoint arguments
|
26
27
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
27
28
|
#
|
28
29
|
# @see https://www.elastic.co/guide/en/enterprise-search/current/monitoring-apis.html#health-api-example
|
@@ -23,8 +23,9 @@ module Elastic
|
|
23
23
|
# Read-Only - Update the read-only flag's state
|
24
24
|
# Update the read-only flag's state
|
25
25
|
#
|
26
|
-
# @
|
27
|
-
# @option
|
26
|
+
# @param arguments [Hash] endpoint arguments
|
27
|
+
# @option arguments [Hash] :body (Required: enabled)
|
28
|
+
# @option body [Boolean] :enabled (*Required)
|
28
29
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
29
30
|
#
|
30
31
|
# @see https://www.elastic.co/guide/en/enterprise-search/current/read-only-api.html#setting-read-only-state
|
@@ -23,6 +23,7 @@ module Elastic
|
|
23
23
|
# Read-Only - Get the read-only flag's state
|
24
24
|
# Get the read-only flag's state
|
25
25
|
#
|
26
|
+
# @param arguments [Hash] endpoint arguments
|
26
27
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
27
28
|
#
|
28
29
|
# @see https://www.elastic.co/guide/en/enterprise-search/current/read-only-api.html#getting-read-only-state
|
@@ -23,6 +23,7 @@ module Elastic
|
|
23
23
|
# Version - Get version information for this server
|
24
24
|
# Get version information for this server
|
25
25
|
#
|
26
|
+
# @param arguments [Hash] endpoint arguments
|
26
27
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
27
28
|
#
|
28
29
|
# @see https://www.elastic.co/guide/en/enterprise-search/current/management-apis.html
|
@@ -58,7 +58,16 @@ module Elastic
|
|
58
58
|
end
|
59
59
|
|
60
60
|
def setup_authentication_header
|
61
|
-
|
61
|
+
if instance_of? Elastic::EnterpriseSearch::Client
|
62
|
+
basic_auth_header
|
63
|
+
else
|
64
|
+
case http_auth
|
65
|
+
when Hash
|
66
|
+
basic_auth_header
|
67
|
+
when String
|
68
|
+
"Bearer #{http_auth}"
|
69
|
+
end
|
70
|
+
end
|
62
71
|
end
|
63
72
|
|
64
73
|
def basic_auth_header
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
4
|
+
# license agreements. See the NOTICE file distributed with
|
5
|
+
# this work for additional information regarding copyright
|
6
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
7
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
8
|
+
# not use this file except in compliance with the License.
|
9
|
+
# You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
|
20
|
+
module Elastic
|
21
|
+
module EnterpriseSearch
|
22
|
+
module WorkplaceSearch
|
23
|
+
module Actions
|
24
|
+
# ContentSources - Retrieves a content source's automatic query refinement details
|
25
|
+
# Retrieves a content source's automatic query refinement details
|
26
|
+
#
|
27
|
+
# @param content_source_id [String] Unique ID for a Custom API source, provided upon creation of a Custom API Source (*Required*)
|
28
|
+
# @param arguments [Hash] endpoint arguments
|
29
|
+
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
30
|
+
#
|
31
|
+
# @see https://www.elastic.co/guide/en/workplace-search/current/workplace-search-content-sources-api.html#get-automatic-query-refinement-details-api
|
32
|
+
#
|
33
|
+
def auto_query_refinement_details(content_source_id, arguments = {})
|
34
|
+
raise ArgumentError, "Required parameter 'content_source_id' missing" unless content_source_id
|
35
|
+
|
36
|
+
headers = arguments.delete(:headers) || {}
|
37
|
+
|
38
|
+
request(
|
39
|
+
:get,
|
40
|
+
"api/ws/v1/sources/#{content_source_id}/automatic_query_refinement/",
|
41
|
+
arguments,
|
42
|
+
{},
|
43
|
+
headers
|
44
|
+
)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -32,6 +32,7 @@ module Elastic
|
|
32
32
|
# @option body [Boolean] :is_searchable Whether or not this Content Source will be searchable on the search page.
|
33
33
|
# @option body :indexing
|
34
34
|
# @option body :facets
|
35
|
+
# @option body :automatic_query_refinement
|
35
36
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
36
37
|
#
|
37
38
|
# @see https://www.elastic.co/guide/en/workplace-search/current/workplace-search-content-sources-api.html#create-content-source-api
|
@@ -25,7 +25,7 @@ module Elastic
|
|
25
25
|
# Delete a synonym set
|
26
26
|
#
|
27
27
|
# @param arguments [Hash] endpoint arguments
|
28
|
-
# @option arguments [String] :synonym_set_id
|
28
|
+
# @option arguments [String] :synonym_set_id Synonym Set ID (*Required*)
|
29
29
|
# @option arguments [Hash] :headers optional HTTP headers to send with the request
|
30
30
|
#
|
31
31
|
# @see https://www.elastic.co/guide/en/workplace-search/current/workplace-synonyms-api.html#delete-synonym
|