elastic-enterprise-search 0.3.1 → 7.10.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. checksums.yaml +4 -4
  2. data/.ci/.gitignore +1 -0
  3. data/.ci/Dockerfile +12 -0
  4. data/.ci/certs/README.md +50 -0
  5. data/.ci/certs/ca.crt +20 -0
  6. data/.ci/certs/ca.key +27 -0
  7. data/.ci/certs/testnode.crt +21 -0
  8. data/.ci/certs/testnode.key +27 -0
  9. data/.ci/certs/testnode_no_san.crt +19 -0
  10. data/.ci/certs/testnode_no_san.key +27 -0
  11. data/.ci/functions/cleanup.sh +67 -0
  12. data/.ci/functions/imports.sh +60 -0
  13. data/.ci/functions/wait-for-container.sh +36 -0
  14. data/.ci/jobs/defaults.yml +69 -0
  15. data/.ci/jobs/elastic+enterprise-search-ruby+master.yml +12 -0
  16. data/.ci/jobs/elastic+enterprise-search-ruby+pull-request.yml +19 -0
  17. data/.ci/run-elasticsearch.sh +127 -0
  18. data/.ci/run-enterprise-search.sh +70 -0
  19. data/.ci/run-local.sh +14 -0
  20. data/.ci/run-repository.sh +47 -0
  21. data/.ci/run-tests +29 -0
  22. data/.ci/test-matrix.yml +13 -0
  23. data/.github/workflows/rubocop.yml +15 -0
  24. data/.github/workflows/testing.yml +40 -0
  25. data/.gitignore +3 -0
  26. data/.rubocop.yml +52 -0
  27. data/Gemfile +22 -1
  28. data/{LICENSE.txt → LICENSE} +33 -32
  29. data/README.md +201 -103
  30. data/Rakefile +71 -1
  31. data/elastic-enterprise-search.gemspec +47 -13
  32. data/lib/elastic-enterprise-search.rb +20 -1
  33. data/lib/elastic/.rubocop.yml +6 -0
  34. data/lib/elastic/app-search/api/add_meta_engine_source.rb +48 -0
  35. data/lib/elastic/app-search/api/api_logs.rb +63 -0
  36. data/lib/elastic/app-search/api/count_analytics.rb +50 -0
  37. data/lib/elastic/app-search/api/create_curation.rb +52 -0
  38. data/lib/elastic/app-search/api/create_engine.rb +51 -0
  39. data/lib/elastic/app-search/api/create_synonym_set.rb +50 -0
  40. data/lib/elastic/app-search/api/curation.rb +52 -0
  41. data/lib/elastic/app-search/api/delete_curation.rb +52 -0
  42. data/lib/elastic/app-search/api/delete_documents.rb +48 -0
  43. data/lib/elastic/app-search/api/delete_engine.rb +48 -0
  44. data/lib/elastic/app-search/api/delete_meta_engine_source.rb +48 -0
  45. data/lib/elastic/app-search/api/delete_synonym_set.rb +52 -0
  46. data/lib/elastic/app-search/api/documents.rb +48 -0
  47. data/lib/elastic/app-search/api/engine.rb +48 -0
  48. data/lib/elastic/app-search/api/index_documents.rb +48 -0
  49. data/lib/elastic/app-search/api/list_curations.rb +50 -0
  50. data/lib/elastic/app-search/api/list_documents.rb +50 -0
  51. data/lib/elastic/app-search/api/list_engines.rb +47 -0
  52. data/lib/elastic/app-search/api/list_synonym_sets.rb +50 -0
  53. data/lib/elastic/app-search/api/log_clickthrough.rb +54 -0
  54. data/lib/elastic/app-search/api/multi_search.rb +50 -0
  55. data/lib/elastic/app-search/api/put_curation.rb +56 -0
  56. data/lib/elastic/app-search/api/put_documents.rb +48 -0
  57. data/lib/elastic/app-search/api/put_schema.rb +48 -0
  58. data/lib/elastic/app-search/api/put_search_settings.rb +48 -0
  59. data/lib/elastic/app-search/api/put_synonym_set.rb +54 -0
  60. data/lib/elastic/app-search/api/query_suggestion.rb +52 -0
  61. data/lib/elastic/app-search/api/reset_search_settings.rb +48 -0
  62. data/lib/elastic/app-search/api/schema.rb +48 -0
  63. data/lib/elastic/app-search/api/search.rb +48 -0
  64. data/lib/elastic/app-search/api/search_settings.rb +48 -0
  65. data/lib/elastic/app-search/api/synonym_set.rb +52 -0
  66. data/lib/elastic/app-search/api/top_clicks_analytics.rb +52 -0
  67. data/lib/elastic/app-search/api/top_queries_analytics.rb +51 -0
  68. data/lib/elastic/app-search/app_search.rb +65 -0
  69. data/lib/elastic/enterprise-search/api/health.rb +38 -0
  70. data/lib/elastic/enterprise-search/api/put_read_only.rb +40 -0
  71. data/lib/elastic/enterprise-search/api/read_only.rb +38 -0
  72. data/lib/elastic/enterprise-search/api/stats.rb +41 -0
  73. data/lib/elastic/enterprise-search/api/version.rb +38 -0
  74. data/lib/elastic/enterprise-search/client.rb +79 -15
  75. data/lib/elastic/enterprise-search/configuration.rb +32 -16
  76. data/lib/elastic/enterprise-search/exceptions.rb +19 -0
  77. data/lib/elastic/enterprise-search/request.rb +46 -80
  78. data/lib/elastic/enterprise-search/utils.rb +29 -1
  79. data/lib/elastic/enterprise-search/version.rb +20 -1
  80. data/lib/elastic/enterprise_search.rb +38 -0
  81. data/lib/elastic/workplace-search/api/add_user_permissions.rb +53 -0
  82. data/lib/elastic/workplace-search/api/create_external_identity.rb +49 -0
  83. data/lib/elastic/workplace-search/api/delete_documents.rb +49 -0
  84. data/lib/elastic/workplace-search/api/delete_external_identity.rb +49 -0
  85. data/lib/elastic/workplace-search/api/external_identity.rb +49 -0
  86. data/lib/elastic/workplace-search/api/index_documents.rb +49 -0
  87. data/lib/elastic/workplace-search/api/list_external_identities.rb +47 -0
  88. data/lib/elastic/workplace-search/api/list_permissions.rb +47 -0
  89. data/lib/elastic/workplace-search/api/put_external_identity.rb +53 -0
  90. data/lib/elastic/workplace-search/api/put_user_permissions.rb +53 -0
  91. data/lib/elastic/workplace-search/api/remove_user_permissions.rb +53 -0
  92. data/lib/elastic/workplace-search/api/search.rb +42 -0
  93. data/lib/elastic/workplace-search/api/user_permissions.rb +49 -0
  94. data/lib/elastic/workplace-search/workplace_search.rb +59 -0
  95. data/lib/generator/documentation_helper.rb +94 -0
  96. data/lib/generator/endpoint_generator.rb +119 -0
  97. data/lib/generator/parameters_exceptions.rb +40 -0
  98. data/lib/generator/parameters_helper.rb +144 -0
  99. data/lib/generator/templates/_license.erb +16 -0
  100. data/lib/generator/templates/endpoint_template.erb +29 -0
  101. data/lib/generator/templates/spec_template.erb +1 -0
  102. data/lib/generator/utils.rb +70 -0
  103. data/spec/app-search/api_count_analytics_spec.rb +34 -0
  104. data/spec/app-search/api_documents_spec.rb +88 -0
  105. data/spec/app-search/api_engines_spec.rb +67 -0
  106. data/spec/app-search/api_logs_spec.rb +36 -0
  107. data/spec/app-search/api_schema_spec.rb +34 -0
  108. data/spec/app-search/api_search_and_multi_search_spec.rb +48 -0
  109. data/spec/app-search/api_spec_helper.rb +14 -0
  110. data/spec/app-search/api_top_clicks_analytics_spec.rb +44 -0
  111. data/spec/app-search/api_top_queries_analytics_spec.rb +34 -0
  112. data/spec/app-search/client_spec.rb +68 -0
  113. data/spec/enterprise-search/client_spec.rb +96 -0
  114. data/spec/enterprise-search/request_spec.rb +114 -0
  115. data/spec/fixtures/vcr/add_user_permissions.yml +18 -22
  116. data/spec/fixtures/vcr/app_search/api_logs.yml +70 -0
  117. data/spec/fixtures/vcr/app_search/api_top_clicks_analytics.yml +55 -0
  118. data/spec/fixtures/vcr/app_search/api_top_clicks_analytics_query.yml +55 -0
  119. data/spec/fixtures/vcr/app_search/api_top_queries_analytics.yml +55 -0
  120. data/spec/fixtures/vcr/app_search/count_analytics.yml +55 -0
  121. data/spec/fixtures/vcr/app_search/create_and_update_document.yml +107 -0
  122. data/spec/fixtures/vcr/app_search/index_and_delete_document.yml +107 -0
  123. data/spec/fixtures/vcr/app_search/index_documents.yml +56 -0
  124. data/spec/fixtures/vcr/app_search/list_documents.yml +57 -0
  125. data/spec/fixtures/vcr/app_search/multi_query_search.yml +63 -0
  126. data/spec/fixtures/vcr/app_search/schema.yml +55 -0
  127. data/spec/fixtures/vcr/app_search/search.yml +57 -0
  128. data/spec/fixtures/vcr/app_search/single_query_search.yml +60 -0
  129. data/spec/fixtures/vcr/clear_user_permissions.yml +51 -0
  130. data/spec/fixtures/vcr/create_document.yml +54 -0
  131. data/spec/fixtures/vcr/create_engine.yml +55 -0
  132. data/spec/fixtures/vcr/delete_documents.yml +51 -0
  133. data/spec/fixtures/vcr/delete_engine.yml +55 -0
  134. data/spec/fixtures/vcr/get_engine.yml +55 -0
  135. data/spec/fixtures/vcr/index_documents.yml +53 -0
  136. data/spec/fixtures/vcr/list_engines.yml +55 -0
  137. data/spec/fixtures/vcr/list_permissions.yml +51 -0
  138. data/spec/fixtures/vcr/put_user_permissions.yml +99 -0
  139. data/spec/fixtures/vcr/remove_user_permissions.yml +16 -20
  140. data/spec/fixtures/vcr/user_permissions_empty.yml +51 -0
  141. data/spec/integration/enterprise_search_api_spec.rb +96 -0
  142. data/spec/spec_helper.rb +25 -14
  143. data/spec/webmock_requires.rb +4 -0
  144. data/spec/workplace-search/api_spec.rb +188 -0
  145. data/spec/workplace-search/client_spec.rb +69 -0
  146. metadata +207 -47
  147. data/.circleci/config.yml +0 -68
  148. data/.travis.yml +0 -15
  149. data/NOTICE.txt +0 -3
  150. data/lib/elastic/enterprise-search.rb +0 -7
  151. data/lib/elastic/enterprise-search/client/content_source_documents.rb +0 -46
  152. data/lib/elastic/enterprise-search/client/permissions.rb +0 -30
  153. data/logo-enterprise-search.png +0 -0
  154. data/spec/client/content_source_documents_spec.rb +0 -55
  155. data/spec/client/permissions_spec.rb +0 -75
  156. data/spec/configuration_spec.rb +0 -19
  157. data/spec/fixtures/vcr/async_create_or_update_document_success.yml +0 -51
  158. data/spec/fixtures/vcr/destroy_documents_success.yml +0 -51
  159. data/spec/fixtures/vcr/get_user_permissions.yml +0 -55
  160. data/spec/fixtures/vcr/list_all_permissions.yml +0 -55
  161. data/spec/fixtures/vcr/list_all_permissions_with_paging.yml +0 -55
  162. data/spec/fixtures/vcr/update_user_permissions.yml +0 -55
@@ -0,0 +1,57 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://localhost:3002/api/as/v1/engines/videogames/documents/list/
6
+ body:
7
+ encoding: UTF-8
8
+ string: "{}"
9
+ headers:
10
+ User-Agent:
11
+ - 'elastic-enteprise-search-ruby/0.0.1 (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport:
12
+ 7.9.0)'
13
+ Content-Type:
14
+ - application/json
15
+ Authorization:
16
+ - Bearer api_key
17
+ Accept-Encoding:
18
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
19
+ Accept:
20
+ - "*/*"
21
+ response:
22
+ status:
23
+ code: 200
24
+ message: OK
25
+ headers:
26
+ X-Frame-Options:
27
+ - SAMEORIGIN
28
+ X-Xss-Protection:
29
+ - 1; mode=block
30
+ X-Content-Type-Options:
31
+ - nosniff
32
+ X-App-Search-Version:
33
+ - 7.10.0
34
+ Content-Type:
35
+ - application/json;charset=utf-8
36
+ Vary:
37
+ - Origin
38
+ Etag:
39
+ - W/"0b9cf3f9dcd11ab962e6f64620f3f3a7"
40
+ Cache-Control:
41
+ - max-age=0, private, must-revalidate
42
+ X-Request-Id:
43
+ - 368d6777-fd82-4465-a968-1e2d066c47c2
44
+ X-Runtime:
45
+ - '0.039295'
46
+ Transfer-Encoding:
47
+ - chunked
48
+ Server:
49
+ - Jetty(9.4.30.v20200611)
50
+ body:
51
+ encoding: UTF-8
52
+ string: '{"meta":{"page":{"current":1,"total_pages":1,"total_results":4,"size":100}},"results":[{"name":"Audiovisual,
53
+ the hedgehog","year":"1991","id":"doc-5fa2d123389ab9aa235be3c5"},{"name":"Pack-Man","year":"1980","id":"doc-5fa2d123389ab9aa235be3c3"},{"name":"Galaxxian","year":"1979","id":"doc-5fa2d123389ab9aa235be3c4"},{"name":"Super
54
+ Lorenzo Bros","year":"1985","id":"doc-5fa2d123389ab9aa235be3c2"}]}'
55
+ http_version:
56
+ recorded_at: Wed, 04 Nov 2020 16:07:04 GMT
57
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,63 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://localhost:3002/api/as/v1/engines/books/multi_search/?queries%5B%5D%5Bquery%5D=Herman&queries%5B%5D%5Bquery%5D=Edgar
6
+ body:
7
+ encoding: UTF-8
8
+ string: "{}"
9
+ headers:
10
+ User-Agent:
11
+ - 'elastic-enteprise-search-ruby/0.0.1 (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport:
12
+ 7.9.0)'
13
+ Content-Type:
14
+ - application/json
15
+ Authorization:
16
+ - Bearer api_key
17
+ Accept-Encoding:
18
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
19
+ Accept:
20
+ - "*/*"
21
+ response:
22
+ status:
23
+ code: 200
24
+ message: OK
25
+ headers:
26
+ X-Frame-Options:
27
+ - SAMEORIGIN
28
+ X-Xss-Protection:
29
+ - 1; mode=block
30
+ X-Content-Type-Options:
31
+ - nosniff
32
+ X-App-Search-Version:
33
+ - 7.10.0
34
+ X-St-Internal-Rails-Version:
35
+ - 4.2.11.3
36
+ Content-Type:
37
+ - application/json;charset=utf-8
38
+ Vary:
39
+ - Origin
40
+ Etag:
41
+ - W/"d3cca347f90cc6677dd31ac298ec6096"
42
+ Cache-Control:
43
+ - max-age=0, private, must-revalidate
44
+ X-Request-Id:
45
+ - d84bdc42-667e-4818-87f1-63e6ed5452e6
46
+ X-Runtime:
47
+ - '0.118754'
48
+ Transfer-Encoding:
49
+ - chunked
50
+ Server:
51
+ - Jetty(9.4.30.v20200611)
52
+ body:
53
+ encoding: UTF-8
54
+ string: '[{"meta":{"alerts":[],"warnings":[],"page":{"current":1,"total_pages":1,"total_results":2,"size":10},"engine":{"name":"books","type":"default"}},"results":[{"title":{"raw":"Moby
55
+ Dick; Or, The Whale"},"_meta":{"id":"doc-5fa5b01a2a88e93a83aa1c59","engine":"books","score":2.2699733},"id":{"raw":"doc-5fa5b01a2a88e93a83aa1c59"},"author":{"raw":"Herman
56
+ Melville"}},{"title":{"raw":"Siddhartha"},"_meta":{"id":"doc-5fa5b6e52a88e93a83aa1c69","engine":"books","score":0.26182064},"id":{"raw":"doc-5fa5b6e52a88e93a83aa1c69"},"author":{"raw":"Hermann
57
+ Hesse"}}]},{"meta":{"alerts":[],"warnings":[],"page":{"current":1,"total_pages":1,"total_results":2,"size":10},"engine":{"name":"books","type":"default"}},"results":[{"title":{"raw":"The
58
+ Masque of the Red Death"},"_meta":{"id":"doc-5fa5b6e52a88e93a83aa1c6d","engine":"books","score":1.4695505},"id":{"raw":"doc-5fa5b6e52a88e93a83aa1c6d"},"author":{"raw":"Edgar
59
+ Allan Poe"}},{"title":{"raw":"The Masque of the Red Death"},"_meta":{"id":"doc-5fa5b36b2a88e9ddfcaa1c66","engine":"books","score":1.4695505},"id":{"raw":"doc-5fa5b36b2a88e9ddfcaa1c66"},"author":{"raw":"Edgar
60
+ Allan Poe"}}]}]'
61
+ http_version:
62
+ recorded_at: Fri, 06 Nov 2020 22:13:10 GMT
63
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,55 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://localhost:3002/api/as/v1/engines/books/schema/
6
+ body:
7
+ encoding: UTF-8
8
+ string: "{}"
9
+ headers:
10
+ User-Agent:
11
+ - 'elastic-enteprise-search-ruby/0.0.1 (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport:
12
+ 7.9.0)'
13
+ Content-Type:
14
+ - application/json
15
+ Authorization:
16
+ - Bearer api_key
17
+ Accept-Encoding:
18
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
19
+ Accept:
20
+ - "*/*"
21
+ response:
22
+ status:
23
+ code: 200
24
+ message: OK
25
+ headers:
26
+ X-Frame-Options:
27
+ - SAMEORIGIN
28
+ X-Xss-Protection:
29
+ - 1; mode=block
30
+ X-Content-Type-Options:
31
+ - nosniff
32
+ X-App-Search-Version:
33
+ - 7.10.0
34
+ Content-Type:
35
+ - application/json;charset=utf-8
36
+ Vary:
37
+ - Origin
38
+ Etag:
39
+ - W/"8a9ea1ebdfa63cfe31c3a06027bb0f2d"
40
+ Cache-Control:
41
+ - max-age=0, private, must-revalidate
42
+ X-Request-Id:
43
+ - 6f1fe0c7-8bdd-4f13-b24b-fb348691c6c2
44
+ X-Runtime:
45
+ - '0.028684'
46
+ Transfer-Encoding:
47
+ - chunked
48
+ Server:
49
+ - Jetty(9.4.30.v20200611)
50
+ body:
51
+ encoding: UTF-8
52
+ string: '{"author":"text","title":"text"}'
53
+ http_version:
54
+ recorded_at: Fri, 06 Nov 2020 22:38:01 GMT
55
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,57 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://localhost:3002/api/as/v1/engines/videogames/search/
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"query":"Pack-Man"}'
9
+ headers:
10
+ User-Agent:
11
+ - 'elastic-enteprise-search-ruby/0.0.1 (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport:
12
+ 8.0.0.pre)'
13
+ Content-Type:
14
+ - application/json
15
+ Authorization:
16
+ - Bearer api_key
17
+ Accept-Encoding:
18
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
19
+ Accept:
20
+ - "*/*"
21
+ response:
22
+ status:
23
+ code: 200
24
+ message: OK
25
+ headers:
26
+ X-Frame-Options:
27
+ - SAMEORIGIN
28
+ X-Xss-Protection:
29
+ - 1; mode=block
30
+ X-Content-Type-Options:
31
+ - nosniff
32
+ X-App-Search-Version:
33
+ - 7.10.0
34
+ X-St-Internal-Rails-Version:
35
+ - 4.2.11.3
36
+ Content-Type:
37
+ - application/json;charset=utf-8
38
+ Vary:
39
+ - Origin
40
+ Etag:
41
+ - W/"6944875da062e5f8180006ee7a911911"
42
+ Cache-Control:
43
+ - max-age=0, private, must-revalidate
44
+ X-Request-Id:
45
+ - 435a5809-d036-4d78-9199-58d99209f3fb
46
+ X-Runtime:
47
+ - '0.112800'
48
+ Transfer-Encoding:
49
+ - chunked
50
+ Server:
51
+ - Jetty(9.4.30.v20200611)
52
+ body:
53
+ encoding: UTF-8
54
+ string: '{"meta":{"alerts":[],"warnings":[],"page":{"current":1,"total_pages":1,"total_results":1,"size":10},"engine":{"name":"videogames","type":"default"},"request_id":"435a5809-d036-4d78-9199-58d99209f3fb"},"results":[{"name":{"raw":"Pack-Man"},"year":{"raw":"1980"},"_meta":{"id":"doc-5fa1e04d389ab9c9bb5be385","engine":"videogames","score":1.9132978},"id":{"raw":"doc-5fa1e04d389ab9c9bb5be385"}}]}'
55
+ http_version:
56
+ recorded_at: Tue, 03 Nov 2020 22:58:58 GMT
57
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,60 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://localhost:3002/api/as/v1/engines/books/search/?query=Herman
6
+ body:
7
+ encoding: UTF-8
8
+ string: "{}"
9
+ headers:
10
+ User-Agent:
11
+ - 'elastic-enteprise-search-ruby/0.0.1 (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport:
12
+ 7.9.0)'
13
+ Content-Type:
14
+ - application/json
15
+ Authorization:
16
+ - Bearer api_key
17
+ Accept-Encoding:
18
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
19
+ Accept:
20
+ - "*/*"
21
+ response:
22
+ status:
23
+ code: 200
24
+ message: OK
25
+ headers:
26
+ X-Frame-Options:
27
+ - SAMEORIGIN
28
+ X-Xss-Protection:
29
+ - 1; mode=block
30
+ X-Content-Type-Options:
31
+ - nosniff
32
+ X-App-Search-Version:
33
+ - 7.10.0
34
+ X-St-Internal-Rails-Version:
35
+ - 4.2.11.3
36
+ Content-Type:
37
+ - application/json;charset=utf-8
38
+ Vary:
39
+ - Origin
40
+ Etag:
41
+ - W/"1a01d8266da629691e392eb8e94f1b17"
42
+ Cache-Control:
43
+ - max-age=0, private, must-revalidate
44
+ X-Request-Id:
45
+ - ee597b23-112f-4656-b7b7-11107557145b
46
+ X-Runtime:
47
+ - '0.040581'
48
+ Transfer-Encoding:
49
+ - chunked
50
+ Server:
51
+ - Jetty(9.4.30.v20200611)
52
+ body:
53
+ encoding: UTF-8
54
+ string: '{"meta":{"alerts":[],"warnings":[],"page":{"current":1,"total_pages":1,"total_results":2,"size":10},"engine":{"name":"books","type":"default"},"request_id":"ee597b23-112f-4656-b7b7-11107557145b"},"results":[{"title":{"raw":"Moby
55
+ Dick; Or, The Whale"},"_meta":{"id":"doc-5fa5b01a2a88e93a83aa1c59","engine":"books","score":2.2699733},"id":{"raw":"doc-5fa5b01a2a88e93a83aa1c59"},"author":{"raw":"Herman
56
+ Melville"}},{"title":{"raw":"Siddhartha"},"_meta":{"id":"doc-5fa5b6e52a88e93a83aa1c69","engine":"books","score":0.26182064},"id":{"raw":"doc-5fa5b6e52a88e93a83aa1c69"},"author":{"raw":"Hermann
57
+ Hesse"}}]}'
58
+ http_version:
59
+ recorded_at: Fri, 06 Nov 2020 22:13:10 GMT
60
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,51 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: put
5
+ uri: http://localhost:3002/api/ws/v1/sources/content_source_key/permissions/enterprise_search/?permissions%5B%5D&user=enterprise_search
6
+ body:
7
+ encoding: UTF-8
8
+ string: "{}"
9
+ headers:
10
+ User-Agent:
11
+ - 'elastic-enteprise-search-ruby/0.0.1 (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport:
12
+ 7.9.0)'
13
+ Content-Type:
14
+ - application/json
15
+ Authorization:
16
+ - Bearer access_token
17
+ Accept-Encoding:
18
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
19
+ Accept:
20
+ - "*/*"
21
+ response:
22
+ status:
23
+ code: 200
24
+ message: OK
25
+ headers:
26
+ X-Frame-Options:
27
+ - SAMEORIGIN
28
+ X-Xss-Protection:
29
+ - 1; mode=block
30
+ X-Content-Type-Options:
31
+ - nosniff
32
+ Content-Type:
33
+ - application/json;charset=utf-8
34
+ Etag:
35
+ - W/"eaf0aef29a99d5f9dda5844986aa3880"
36
+ Cache-Control:
37
+ - max-age=0, private, must-revalidate
38
+ X-Request-Id:
39
+ - 3be4988d-4094-4698-8d9f-8e5a86b3fba9
40
+ X-Runtime:
41
+ - '2.718566'
42
+ Transfer-Encoding:
43
+ - chunked
44
+ Server:
45
+ - Jetty(9.4.30.v20200611)
46
+ body:
47
+ encoding: UTF-8
48
+ string: '{"user":"enterprise_search","permissions":[]}'
49
+ http_version:
50
+ recorded_at: Tue, 03 Nov 2020 23:15:20 GMT
51
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,54 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://localhost:3002/api/as/v1/engines/videogames/documents/
6
+ body:
7
+ encoding: UTF-8
8
+ string: '[{"name":"Super Lorenzo Bros","year":1985},{"name":"Pack-Man","year":1980},{"name":"Galaxxian","year":1979},{"name":"Audiovisual,
9
+ the hedgehog","year":"1991"}]'
10
+ headers:
11
+ User-Agent:
12
+ - 'elastic-enteprise-search-ruby/0.0.1 (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport:
13
+ 8.0.0.pre)'
14
+ Content-Type:
15
+ - application/json
16
+ Authorization:
17
+ - Bearer private-5s8smppd3gdmfam5d3hcwrhs
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ Accept:
21
+ - "*/*"
22
+ response:
23
+ status:
24
+ code: 404
25
+ message: Not Found
26
+ headers:
27
+ X-Frame-Options:
28
+ - SAMEORIGIN
29
+ X-Xss-Protection:
30
+ - 1; mode=block
31
+ X-Content-Type-Options:
32
+ - nosniff
33
+ X-App-Search-Version:
34
+ - 7.10.0
35
+ Content-Type:
36
+ - application/json;charset=utf-8
37
+ Vary:
38
+ - Origin
39
+ Cache-Control:
40
+ - no-cache
41
+ X-Request-Id:
42
+ - b305ffce-91f5-4a9a-a2e7-f8b8c857ed9b
43
+ X-Runtime:
44
+ - '0.034549'
45
+ Transfer-Encoding:
46
+ - chunked
47
+ Server:
48
+ - Jetty(9.4.30.v20200611)
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"errors":["Could not find engine."]}'
52
+ http_version:
53
+ recorded_at: Tue, 03 Nov 2020 22:31:20 GMT
54
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,55 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://localhost:3002/api/as/v1/engines/?name=videogames
6
+ body:
7
+ encoding: UTF-8
8
+ string: "{}"
9
+ headers:
10
+ User-Agent:
11
+ - 'elastic-enteprise-search-ruby/0.0.1 (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport:
12
+ 7.9.0)'
13
+ Content-Type:
14
+ - application/json
15
+ Authorization:
16
+ - Bearer private-e7a1xjz92x3monyd21op7555
17
+ Accept-Encoding:
18
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
19
+ Accept:
20
+ - "*/*"
21
+ response:
22
+ status:
23
+ code: 200
24
+ message: OK
25
+ headers:
26
+ X-Frame-Options:
27
+ - SAMEORIGIN
28
+ X-Xss-Protection:
29
+ - 1; mode=block
30
+ X-Content-Type-Options:
31
+ - nosniff
32
+ X-App-Search-Version:
33
+ - 7.10.0
34
+ Content-Type:
35
+ - application/json;charset=utf-8
36
+ Vary:
37
+ - Origin
38
+ Etag:
39
+ - W/"970c13062bf50e9869174c33d704a422"
40
+ Cache-Control:
41
+ - max-age=0, private, must-revalidate
42
+ X-Request-Id:
43
+ - 989858cb-36e1-4334-b945-ab936cac87ae
44
+ X-Runtime:
45
+ - '0.269333'
46
+ Transfer-Encoding:
47
+ - chunked
48
+ Server:
49
+ - Jetty(9.4.30.v20200611)
50
+ body:
51
+ encoding: UTF-8
52
+ string: '{"name":"videogames","type":"default","language":null}'
53
+ http_version:
54
+ recorded_at: Thu, 24 Sep 2020 13:10:33 GMT
55
+ recorded_with: VCR 3.0.3