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,55 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://localhost:3002/api/as/v1/engines/books/analytics/clicks/
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/"06bffe883d7566d65d1abb2515ea377c"
40
+ Cache-Control:
41
+ - max-age=0, private, must-revalidate
42
+ X-Request-Id:
43
+ - 24400e53-7c07-4a9d-94a6-a0536fa56865
44
+ X-Runtime:
45
+ - '0.060586'
46
+ Transfer-Encoding:
47
+ - chunked
48
+ Server:
49
+ - Jetty(9.4.30.v20200611)
50
+ body:
51
+ encoding: UTF-8
52
+ string: '{"meta":{"page":{"size":0,"current":1}},"results":[]}'
53
+ http_version:
54
+ recorded_at: Wed, 11 Nov 2020 19:29:31 GMT
55
+ 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/analytics/clicks/?query=test
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/"06bffe883d7566d65d1abb2515ea377c"
40
+ Cache-Control:
41
+ - max-age=0, private, must-revalidate
42
+ X-Request-Id:
43
+ - a2ff4fcf-805b-4496-9b49-dbd9760fce54
44
+ X-Runtime:
45
+ - '0.095887'
46
+ Transfer-Encoding:
47
+ - chunked
48
+ Server:
49
+ - Jetty(9.4.30.v20200611)
50
+ body:
51
+ encoding: UTF-8
52
+ string: '{"meta":{"page":{"size":0,"current":1}},"results":[]}'
53
+ http_version:
54
+ recorded_at: Wed, 11 Nov 2020 19:30:23 GMT
55
+ 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/analytics/queries/
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/"06bffe883d7566d65d1abb2515ea377c"
40
+ Cache-Control:
41
+ - max-age=0, private, must-revalidate
42
+ X-Request-Id:
43
+ - 1f2867cb-3ca0-4451-8a91-6e7e99b910d3
44
+ X-Runtime:
45
+ - '0.050627'
46
+ Transfer-Encoding:
47
+ - chunked
48
+ Server:
49
+ - Jetty(9.4.30.v20200611)
50
+ body:
51
+ encoding: UTF-8
52
+ string: '{"meta":{"page":{"size":0,"current":1}},"results":[]}'
53
+ http_version:
54
+ recorded_at: Wed, 11 Nov 2020 19:31:16 GMT
55
+ 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/videogames/analytics/counts/
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/"0febf7060a75cc201c2eba8598444621"
40
+ Cache-Control:
41
+ - max-age=0, private, must-revalidate
42
+ X-Request-Id:
43
+ - 533366d6-8819-4e22-a3dc-6b8bcf931588
44
+ X-Runtime:
45
+ - '0.088095'
46
+ Transfer-Encoding:
47
+ - chunked
48
+ Server:
49
+ - Jetty(9.4.30.v20200611)
50
+ body:
51
+ encoding: UTF-8
52
+ string: '{"results":[{"clicks":0,"queries":0,"from":"2020-10-29T15:30:47Z","to":"2020-10-30T00:00:00+00:00"},{"clicks":0,"queries":0,"from":"2020-10-30T00:00:00+00:00","to":"2020-10-31T00:00:00+00:00"},{"clicks":0,"queries":0,"from":"2020-10-31T00:00:00+00:00","to":"2020-11-01T00:00:00+00:00"},{"clicks":0,"queries":0,"from":"2020-11-01T00:00:00+00:00","to":"2020-11-02T00:00:00+00:00"},{"clicks":0,"queries":0,"from":"2020-11-02T00:00:00+00:00","to":"2020-11-03T00:00:00+00:00"},{"clicks":0,"queries":0,"from":"2020-11-03T00:00:00+00:00","to":"2020-11-04T00:00:00+00:00"},{"clicks":0,"queries":0,"from":"2020-11-04T00:00:00+00:00","to":"2020-11-05T00:00:00+00:00"},{"clicks":0,"queries":0,"from":"2020-11-05T00:00:00+00:00","to":"2020-11-05T15:30:47Z"}]}'
53
+ http_version:
54
+ recorded_at: Thu, 05 Nov 2020 15:30:47 GMT
55
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,107 @@
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":"","year":1986}'
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/"debb6f05eb9897c08591666f079bae74"
40
+ Cache-Control:
41
+ - max-age=0, private, must-revalidate
42
+ X-Request-Id:
43
+ - 22cd9793-9fa0-4971-9951-e6c5d482215e
44
+ X-Runtime:
45
+ - '0.083091'
46
+ Transfer-Encoding:
47
+ - chunked
48
+ Server:
49
+ - Jetty(9.4.30.v20200611)
50
+ body:
51
+ encoding: UTF-8
52
+ string: '[{"id":"doc-5fa2d4e1389ab975965be3e3","errors":[]}]'
53
+ http_version:
54
+ recorded_at: Wed, 04 Nov 2020 16:20:49 GMT
55
+ - request:
56
+ method: patch
57
+ uri: http://localhost:3002/api/as/v1/engines/videogames/documents/
58
+ body:
59
+ encoding: UTF-8
60
+ string: '[{"id":"doc-5fa2d4e1389ab975965be3e3","year":1987}]'
61
+ headers:
62
+ User-Agent:
63
+ - 'elastic-enteprise-search-ruby/0.0.1 (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport:
64
+ 7.9.0)'
65
+ Content-Type:
66
+ - application/json
67
+ Authorization:
68
+ - Bearer private-ahg7kjjj2iuinua9s7214k67
69
+ Accept-Encoding:
70
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
71
+ Accept:
72
+ - "*/*"
73
+ response:
74
+ status:
75
+ code: 200
76
+ message: OK
77
+ headers:
78
+ X-Frame-Options:
79
+ - SAMEORIGIN
80
+ X-Xss-Protection:
81
+ - 1; mode=block
82
+ X-Content-Type-Options:
83
+ - nosniff
84
+ X-App-Search-Version:
85
+ - 7.10.0
86
+ Content-Type:
87
+ - application/json;charset=utf-8
88
+ Vary:
89
+ - Origin
90
+ Etag:
91
+ - W/"debb6f05eb9897c08591666f079bae74"
92
+ Cache-Control:
93
+ - max-age=0, private, must-revalidate
94
+ X-Request-Id:
95
+ - 1d14f720-18d2-49a0-97b2-4d0d3a4c971b
96
+ X-Runtime:
97
+ - '0.035131'
98
+ Transfer-Encoding:
99
+ - chunked
100
+ Server:
101
+ - Jetty(9.4.30.v20200611)
102
+ body:
103
+ encoding: UTF-8
104
+ string: '[{"id":"doc-5fa2d4e1389ab975965be3e3","errors":[]}]'
105
+ http_version:
106
+ recorded_at: Wed, 04 Nov 2020 16:20:54 GMT
107
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,107 @@
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":"Princess Zelda","year":1986}'
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/"dc5ce28431c7d50c5cfc2d0fff06c91c"
40
+ Cache-Control:
41
+ - max-age=0, private, must-revalidate
42
+ X-Request-Id:
43
+ - a993ad7d-505d-4734-a10f-2c681ea40bf2
44
+ X-Runtime:
45
+ - '0.075649'
46
+ Transfer-Encoding:
47
+ - chunked
48
+ Server:
49
+ - Jetty(9.4.30.v20200611)
50
+ body:
51
+ encoding: UTF-8
52
+ string: '[{"id":"doc-5fa2d55e389ab9d2ca5be3e9","errors":[]}]'
53
+ http_version:
54
+ recorded_at: Wed, 04 Nov 2020 16:22:54 GMT
55
+ - request:
56
+ method: delete
57
+ uri: http://localhost:3002/api/as/v1/engines/videogames/documents/
58
+ body:
59
+ encoding: UTF-8
60
+ string: '["doc-5fa2d55e389ab9d2ca5be3e9"]'
61
+ headers:
62
+ User-Agent:
63
+ - 'elastic-enteprise-search-ruby/0.0.1 (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport:
64
+ 7.9.0)'
65
+ Content-Type:
66
+ - application/json
67
+ Authorization:
68
+ - Bearer private-ahg7kjjj2iuinua9s7214k67
69
+ Accept-Encoding:
70
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
71
+ Accept:
72
+ - "*/*"
73
+ response:
74
+ status:
75
+ code: 200
76
+ message: OK
77
+ headers:
78
+ X-Frame-Options:
79
+ - SAMEORIGIN
80
+ X-Xss-Protection:
81
+ - 1; mode=block
82
+ X-Content-Type-Options:
83
+ - nosniff
84
+ X-App-Search-Version:
85
+ - 7.10.0
86
+ Content-Type:
87
+ - application/json;charset=utf-8
88
+ Vary:
89
+ - Origin
90
+ Etag:
91
+ - W/"e1dfd73d4bfba38e64cc4fc8978787b4"
92
+ Cache-Control:
93
+ - max-age=0, private, must-revalidate
94
+ X-Request-Id:
95
+ - 5a541a67-7b91-40bc-b145-69da6ec077a7
96
+ X-Runtime:
97
+ - '0.055467'
98
+ Transfer-Encoding:
99
+ - chunked
100
+ Server:
101
+ - Jetty(9.4.30.v20200611)
102
+ body:
103
+ encoding: UTF-8
104
+ string: '[{"id":"doc-5fa2d55e389ab9d2ca5be3e9","deleted":true}]'
105
+ http_version:
106
+ recorded_at: Wed, 04 Nov 2020 16:22:54 GMT
107
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,56 @@
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 api_key
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: 200
25
+ message: OK
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
+ Etag:
40
+ - W/"e067d434e0e34343404ce8f4b2f8603a"
41
+ Cache-Control:
42
+ - max-age=0, private, must-revalidate
43
+ X-Request-Id:
44
+ - 6532d2f0-302d-44e5-bfc1-1f1045e96707
45
+ X-Runtime:
46
+ - '0.264329'
47
+ Transfer-Encoding:
48
+ - chunked
49
+ Server:
50
+ - Jetty(9.4.30.v20200611)
51
+ body:
52
+ encoding: UTF-8
53
+ string: '[{"id":"doc-5fa2d123389ab9aa235be3c2","errors":[]},{"id":"doc-5fa2d123389ab9aa235be3c3","errors":[]},{"id":"doc-5fa2d123389ab9aa235be3c4","errors":[]},{"id":"doc-5fa2d123389ab9aa235be3c5","errors":[]}]'
54
+ http_version:
55
+ recorded_at: Wed, 04 Nov 2020 16:04:51 GMT
56
+ recorded_with: VCR 3.0.3