elastic-enterprise-search 7.13.0 → 7.14.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/.ci/make.sh +162 -0
  3. data/.ci/test-matrix.yml +1 -1
  4. data/.github/check_license_headers.rb +33 -0
  5. data/.github/license-header.txt +16 -0
  6. data/.github/workflows/license.yml +13 -0
  7. data/.github/workflows/testing.yml +1 -1
  8. data/Rakefile +1 -0
  9. data/docs/guide/app-search-api.asciidoc +28 -0
  10. data/docs/guide/release_notes/712.asciidoc +12 -0
  11. data/docs/guide/release_notes/714.asciidoc +21 -0
  12. data/docs/guide/release_notes/index.asciidoc +2 -0
  13. data/docs/guide/workplace-search-api.asciidoc +55 -0
  14. data/lib/elastic/app-search/api/api_key.rb +51 -0
  15. data/lib/elastic/app-search/api/create_api_key.rb +49 -0
  16. data/lib/elastic/app-search/api/delete_api_key.rb +51 -0
  17. data/lib/elastic/app-search/api/list_api_keys.rb +49 -0
  18. data/lib/elastic/app-search/api/put_api_key.rb +52 -0
  19. data/lib/elastic/enterprise-search/version.rb +1 -1
  20. data/lib/elastic/workplace-search/api/command_sync_jobs.rb +53 -0
  21. data/lib/elastic/workplace-search/api/create_analytics_event.rb +7 -7
  22. data/lib/elastic/workplace-search/api/create_batch_synonym_sets.rb +50 -0
  23. data/lib/elastic/workplace-search/api/create_content_source.rb +4 -2
  24. data/lib/elastic/workplace-search/api/create_external_identity.rb +3 -3
  25. data/lib/elastic/workplace-search/api/current_user.rb +47 -0
  26. data/lib/elastic/workplace-search/api/delete_documents_by_query.rb +50 -0
  27. data/lib/elastic/workplace-search/api/delete_synonym_set.rb +51 -0
  28. data/lib/elastic/workplace-search/api/document.rb +1 -1
  29. data/lib/elastic/workplace-search/api/list_synonym_sets.rb +51 -0
  30. data/lib/elastic/workplace-search/api/put_content_source.rb +6 -4
  31. data/lib/elastic/workplace-search/api/put_content_source_icons.rb +53 -0
  32. data/lib/elastic/workplace-search/api/put_external_identity.rb +3 -3
  33. data/lib/elastic/workplace-search/api/put_synonym_set.rb +53 -0
  34. data/lib/elastic/workplace-search/api/search.rb +1 -1
  35. data/lib/elastic/workplace-search/api/synonym_set.rb +51 -0
  36. data/rake_tasks/unified_release_tasks.rake +46 -0
  37. data/spec/app-search/api_apikey_spec.rb +92 -0
  38. data/spec/app-search/api_spec_helper.rb +16 -0
  39. data/spec/fixtures/vcr/app_search/create_api_key.yml +52 -0
  40. data/spec/fixtures/vcr/app_search/delete_api_key.yml +52 -0
  41. data/spec/fixtures/vcr/app_search/get_api_key.yml +52 -0
  42. data/spec/fixtures/vcr/app_search/list_api_keys.yml +52 -0
  43. data/spec/fixtures/vcr/app_search/put_api_key.yml +52 -0
  44. data/spec/integration/icon.png +0 -0
  45. data/spec/integration/workplace_search_spec.rb +122 -0
  46. data/spec/webmock_requires.rb +16 -0
  47. metadata +30 -3
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: elastic-enterprise-search
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.13.0
4
+ version: 7.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fernando Briano
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-25 00:00:00.000000000 Z
11
+ date: 2021-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: elasticsearch-transport
@@ -167,12 +167,16 @@ files:
167
167
  - ".ci/jobs/elastic+enterprise-search-ruby+7.10.0.beta.1.yml"
168
168
  - ".ci/jobs/elastic+enterprise-search-ruby+master.yml"
169
169
  - ".ci/jobs/elastic+enterprise-search-ruby+pull-request.yml"
170
+ - ".ci/make.sh"
170
171
  - ".ci/run-elasticsearch.sh"
171
172
  - ".ci/run-enterprise-search.sh"
172
173
  - ".ci/run-local.sh"
173
174
  - ".ci/run-repository.sh"
174
175
  - ".ci/run-tests"
175
176
  - ".ci/test-matrix.yml"
177
+ - ".github/check_license_headers.rb"
178
+ - ".github/license-header.txt"
179
+ - ".github/workflows/license.yml"
176
180
  - ".github/workflows/rubocop.yml"
177
181
  - ".github/workflows/testing.yml"
178
182
  - ".gitignore"
@@ -193,6 +197,7 @@ files:
193
197
  - docs/guide/release_notes/711.asciidoc
194
198
  - docs/guide/release_notes/712.asciidoc
195
199
  - docs/guide/release_notes/713.asciidoc
200
+ - docs/guide/release_notes/714.asciidoc
196
201
  - docs/guide/release_notes/index.asciidoc
197
202
  - docs/guide/workplace-search-api.asciidoc
198
203
  - elastic-enterprise-search.gemspec
@@ -200,12 +205,15 @@ files:
200
205
  - lib/elastic-enterprise-search.rb
201
206
  - lib/elastic/.rubocop.yml
202
207
  - lib/elastic/app-search/api/add_meta_engine_source.rb
208
+ - lib/elastic/app-search/api/api_key.rb
203
209
  - lib/elastic/app-search/api/api_logs.rb
204
210
  - lib/elastic/app-search/api/count_analytics.rb
211
+ - lib/elastic/app-search/api/create_api_key.rb
205
212
  - lib/elastic/app-search/api/create_curation.rb
206
213
  - lib/elastic/app-search/api/create_engine.rb
207
214
  - lib/elastic/app-search/api/create_synonym_set.rb
208
215
  - lib/elastic/app-search/api/curation.rb
216
+ - lib/elastic/app-search/api/delete_api_key.rb
209
217
  - lib/elastic/app-search/api/delete_curation.rb
210
218
  - lib/elastic/app-search/api/delete_documents.rb
211
219
  - lib/elastic/app-search/api/delete_engine.rb
@@ -214,12 +222,14 @@ files:
214
222
  - lib/elastic/app-search/api/documents.rb
215
223
  - lib/elastic/app-search/api/engine.rb
216
224
  - lib/elastic/app-search/api/index_documents.rb
225
+ - lib/elastic/app-search/api/list_api_keys.rb
217
226
  - lib/elastic/app-search/api/list_curations.rb
218
227
  - lib/elastic/app-search/api/list_documents.rb
219
228
  - lib/elastic/app-search/api/list_engines.rb
220
229
  - lib/elastic/app-search/api/list_synonym_sets.rb
221
230
  - lib/elastic/app-search/api/log_clickthrough.rb
222
231
  - lib/elastic/app-search/api/multi_search.rb
232
+ - lib/elastic/app-search/api/put_api_key.rb
223
233
  - lib/elastic/app-search/api/put_curation.rb
224
234
  - lib/elastic/app-search/api/put_documents.rb
225
235
  - lib/elastic/app-search/api/put_schema.rb
@@ -247,27 +257,38 @@ files:
247
257
  - lib/elastic/enterprise-search/version.rb
248
258
  - lib/elastic/enterprise_search.rb
249
259
  - lib/elastic/workplace-search/api/add_user_permissions.rb
260
+ - lib/elastic/workplace-search/api/command_sync_jobs.rb
250
261
  - lib/elastic/workplace-search/api/content_source.rb
251
262
  - lib/elastic/workplace-search/api/create_analytics_event.rb
263
+ - lib/elastic/workplace-search/api/create_batch_synonym_sets.rb
252
264
  - lib/elastic/workplace-search/api/create_content_source.rb
253
265
  - lib/elastic/workplace-search/api/create_external_identity.rb
266
+ - lib/elastic/workplace-search/api/current_user.rb
254
267
  - lib/elastic/workplace-search/api/delete_all_documents.rb
255
268
  - lib/elastic/workplace-search/api/delete_content_source.rb
256
269
  - lib/elastic/workplace-search/api/delete_documents.rb
270
+ - lib/elastic/workplace-search/api/delete_documents_by_query.rb
257
271
  - lib/elastic/workplace-search/api/delete_external_identity.rb
272
+ - lib/elastic/workplace-search/api/delete_synonym_set.rb
258
273
  - lib/elastic/workplace-search/api/document.rb
259
274
  - lib/elastic/workplace-search/api/external_identity.rb
260
275
  - lib/elastic/workplace-search/api/index_documents.rb
261
276
  - lib/elastic/workplace-search/api/list_content_sources.rb
262
277
  - lib/elastic/workplace-search/api/list_external_identities.rb
263
278
  - lib/elastic/workplace-search/api/list_permissions.rb
279
+ - lib/elastic/workplace-search/api/list_synonym_sets.rb
264
280
  - lib/elastic/workplace-search/api/put_content_source.rb
281
+ - lib/elastic/workplace-search/api/put_content_source_icons.rb
265
282
  - lib/elastic/workplace-search/api/put_external_identity.rb
283
+ - lib/elastic/workplace-search/api/put_synonym_set.rb
266
284
  - lib/elastic/workplace-search/api/put_user_permissions.rb
267
285
  - lib/elastic/workplace-search/api/remove_user_permissions.rb
268
286
  - lib/elastic/workplace-search/api/search.rb
287
+ - lib/elastic/workplace-search/api/synonym_set.rb
269
288
  - lib/elastic/workplace-search/api/user_permissions.rb
270
289
  - lib/elastic/workplace-search/workplace_search.rb
290
+ - rake_tasks/unified_release_tasks.rake
291
+ - spec/app-search/api_apikey_spec.rb
271
292
  - spec/app-search/api_count_analytics_spec.rb
272
293
  - spec/app-search/api_curations_spec.rb
273
294
  - spec/app-search/api_documents_spec.rb
@@ -304,22 +325,27 @@ files:
304
325
  - spec/fixtures/vcr/app_search/api_top_queries_analytics.yml
305
326
  - spec/fixtures/vcr/app_search/count_analytics.yml
306
327
  - spec/fixtures/vcr/app_search/create_and_update_document.yml
328
+ - spec/fixtures/vcr/app_search/create_api_key.yml
307
329
  - spec/fixtures/vcr/app_search/create_curation.yml
308
330
  - spec/fixtures/vcr/app_search/create_engine.yml
309
331
  - spec/fixtures/vcr/app_search/create_meta_engine.yml
310
332
  - spec/fixtures/vcr/app_search/create_synonym_set.yml
333
+ - spec/fixtures/vcr/app_search/delete_api_key.yml
311
334
  - spec/fixtures/vcr/app_search/delete_curation.yml
312
335
  - spec/fixtures/vcr/app_search/delete_engine.yml
313
336
  - spec/fixtures/vcr/app_search/delete_meta_engine_source.yml
314
337
  - spec/fixtures/vcr/app_search/delete_synonym_set.yml
338
+ - spec/fixtures/vcr/app_search/get_api_key.yml
315
339
  - spec/fixtures/vcr/app_search/get_curation.yml
316
340
  - spec/fixtures/vcr/app_search/get_engine.yml
317
341
  - spec/fixtures/vcr/app_search/index_and_delete_document.yml
342
+ - spec/fixtures/vcr/app_search/list_api_keys.yml
318
343
  - spec/fixtures/vcr/app_search/list_curations.yml
319
344
  - spec/fixtures/vcr/app_search/list_documents.yml
320
345
  - spec/fixtures/vcr/app_search/list_engines.yml
321
346
  - spec/fixtures/vcr/app_search/list_synonym_sets.yml
322
347
  - spec/fixtures/vcr/app_search/multi_query_search.yml
348
+ - spec/fixtures/vcr/app_search/put_api_key.yml
323
349
  - spec/fixtures/vcr/app_search/put_curation.yml
324
350
  - spec/fixtures/vcr/app_search/put_synonym_set.yml
325
351
  - spec/fixtures/vcr/app_search/search.yml
@@ -329,6 +355,7 @@ files:
329
355
  - spec/fixtures/vcr/workplace_search/oauth_request_token.yml
330
356
  - spec/fixtures/vcr/workplace_search/search_request.yml
331
357
  - spec/integration/enterprise_search_api_spec.rb
358
+ - spec/integration/icon.png
332
359
  - spec/integration/workplace_search_spec.rb
333
360
  - spec/spec_helper.rb
334
361
  - spec/webmock_requires.rb
@@ -359,7 +386,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
359
386
  - !ruby/object:Gem::Version
360
387
  version: '0'
361
388
  requirements: []
362
- rubygems_version: 3.2.16
389
+ rubygems_version: 3.2.15
363
390
  signing_key:
364
391
  specification_version: 4
365
392
  summary: Official API client for Elastic Enterprise Search