opensearch-api 1.0.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/README.md +3 -3
  4. data/lib/opensearch/api/actions/benchmark.rb +0 -1
  5. data/lib/opensearch/api/actions/bulk.rb +1 -7
  6. data/lib/opensearch/api/actions/count.rb +1 -6
  7. data/lib/opensearch/api/actions/create.rb +0 -1
  8. data/lib/opensearch/api/actions/delete.rb +1 -8
  9. data/lib/opensearch/api/actions/delete_by_query.rb +1 -8
  10. data/lib/opensearch/api/actions/exists.rb +1 -8
  11. data/lib/opensearch/api/actions/exists_source.rb +1 -8
  12. data/lib/opensearch/api/actions/explain.rb +1 -8
  13. data/lib/opensearch/api/actions/get.rb +1 -8
  14. data/lib/opensearch/api/actions/get_source.rb +1 -8
  15. data/lib/opensearch/api/actions/index.rb +1 -8
  16. data/lib/opensearch/api/actions/indices/create.rb +0 -2
  17. data/lib/opensearch/api/actions/indices/get.rb +0 -2
  18. data/lib/opensearch/api/actions/indices/get_field_mapping.rb +1 -10
  19. data/lib/opensearch/api/actions/indices/get_mapping.rb +1 -10
  20. data/lib/opensearch/api/actions/indices/get_template.rb +0 -2
  21. data/lib/opensearch/api/actions/indices/put_mapping.rb +1 -12
  22. data/lib/opensearch/api/actions/indices/put_template.rb +0 -2
  23. data/lib/opensearch/api/actions/indices/rollover.rb +0 -2
  24. data/lib/opensearch/api/actions/indices/validate_query.rb +1 -6
  25. data/lib/opensearch/api/actions/mget.rb +2 -7
  26. data/lib/opensearch/api/actions/msearch.rb +1 -6
  27. data/lib/opensearch/api/actions/msearch_template.rb +1 -6
  28. data/lib/opensearch/api/actions/mtermvectors.rb +1 -6
  29. data/lib/opensearch/api/actions/search.rb +1 -7
  30. data/lib/opensearch/api/actions/search_template.rb +1 -6
  31. data/lib/opensearch/api/actions/termvectors.rb +1 -8
  32. data/lib/opensearch/api/actions/update.rb +1 -8
  33. data/lib/opensearch/api/actions/update_by_query.rb +1 -8
  34. data/lib/opensearch/api/version.rb +1 -1
  35. data/lib/opensearch/api.rb +1 -1
  36. data/spec/opensearch/api/actions/bulk_spec.rb +10 -21
  37. data/spec/opensearch/api/actions/count_spec.rb +3 -3
  38. data/spec/opensearch/api/actions/create_document_spec.rb +8 -8
  39. data/spec/opensearch/api/actions/delete_by_query_spec.rb +0 -17
  40. data/spec/opensearch/api/actions/delete_document_spec.rb +10 -10
  41. data/spec/opensearch/api/actions/exists_document_spec.rb +10 -10
  42. data/spec/opensearch/api/actions/explain_document_spec.rb +8 -8
  43. data/spec/opensearch/api/actions/get_document_source_spec.rb +6 -6
  44. data/spec/opensearch/api/actions/get_document_spec.rb +8 -8
  45. data/spec/opensearch/api/actions/index_document_spec.rb +12 -12
  46. data/spec/opensearch/api/actions/indices/get_field_mapping_spec.rb +0 -11
  47. data/spec/opensearch/api/actions/indices/get_mapping_spec.rb +5 -16
  48. data/spec/opensearch/api/actions/indices/put_mapping_spec.rb +8 -21
  49. data/spec/opensearch/api/actions/indices/validate_query_spec.rb +0 -10
  50. data/spec/opensearch/api/actions/mget_spec.rb +2 -17
  51. data/spec/opensearch/api/actions/mtermvectors_spec.rb +3 -3
  52. data/spec/opensearch/api/actions/search_spec.rb +5 -16
  53. data/spec/opensearch/api/actions/termvectors_spec.rb +5 -5
  54. data/spec/opensearch/api/actions/update_document_spec.rb +11 -11
  55. data.tar.gz.sig +0 -0
  56. metadata +2 -8
  57. metadata.gz.sig +0 -0
  58. data/lib/opensearch/api/actions/indices/exists_type.rb +0 -79
  59. data/lib/opensearch/api/actions/indices/flush_synced.rb +0 -79
  60. data/spec/opensearch/api/actions/indices/exists_type_spec.rb +0 -117
  61. data/spec/opensearch/api/actions/indices/flush_synced_spec.rb +0 -99
@@ -43,7 +43,7 @@ describe 'client#get' do
43
43
  end
44
44
 
45
45
  let(:url) do
46
- 'foo/bar/1'
46
+ 'foo/_doc/1'
47
47
  end
48
48
 
49
49
  let(:client) do
@@ -52,13 +52,13 @@ describe 'client#get' do
52
52
 
53
53
  it 'requires the :index argument' do
54
54
  expect {
55
- client.get(type: 'bar', id: '1')
55
+ client.get(id: '1')
56
56
  }.to raise_exception(ArgumentError)
57
57
  end
58
58
 
59
59
  it 'requires the :id argument' do
60
60
  expect {
61
- client.get(index: 'foo', type: 'bar')
61
+ client.get(index: 'foo')
62
62
  }.to raise_exception(ArgumentError)
63
63
  end
64
64
 
@@ -80,7 +80,7 @@ describe 'client#get' do
80
80
  end
81
81
 
82
82
  it 'Passes the URL params' do
83
- expect(client_double.get(index: 'foo', type: 'bar', id: '1', routing: 'abc123')).to eq({})
83
+ expect(client_double.get(index: 'foo', id: '1', routing: 'abc123')).to eq({})
84
84
  end
85
85
  end
86
86
 
@@ -88,7 +88,7 @@ describe 'client#get' do
88
88
 
89
89
  it 'Passes the URL params' do
90
90
  expect {
91
- client.get(index: 'foo', type: 'bar', id: '1', qwert: 'abc123')
91
+ client.get(index: 'foo', id: '1', qwert: 'abc123')
92
92
  }.to raise_exception(ArgumentError)
93
93
  end
94
94
  end
@@ -96,11 +96,11 @@ describe 'client#get' do
96
96
  context 'when the request needs to be URL-escaped' do
97
97
 
98
98
  let(:url) do
99
- 'foo%5Ebar/bar%2Fbam/1'
99
+ 'foo%5Ebar/_doc/1'
100
100
  end
101
101
 
102
102
  it 'URL-escapes the parts' do
103
- expect(client_double.get(index: 'foo^bar', type: 'bar/bam', id: '1')).to eq({})
103
+ expect(client_double.get(index: 'foo^bar', id: '1')).to eq({})
104
104
  end
105
105
  end
106
106
 
@@ -125,7 +125,7 @@ describe 'client#get' do
125
125
  end
126
126
 
127
127
  it 'returns false' do
128
- expect(client.get(index: 'foo', type: 'bar', id: '1', ignore: 404)).to eq(false)
128
+ expect(client.get(index: 'foo', id: '1', ignore: 404)).to eq(false)
129
129
  end
130
130
  end
131
131
  end
@@ -47,7 +47,7 @@ describe 'client#index' do
47
47
  end
48
48
 
49
49
  let(:url) do
50
- 'foo/bar'
50
+ 'foo/_doc'
51
51
  end
52
52
 
53
53
  let(:body) do
@@ -60,12 +60,12 @@ describe 'client#index' do
60
60
 
61
61
  it 'requires the :index argument' do
62
62
  expect {
63
- client.index(type: 'bar')
63
+ client.index()
64
64
  }.to raise_exception(ArgumentError)
65
65
  end
66
66
 
67
67
  it 'performs the request' do
68
- expect(client_double.index(index: 'foo', type: 'bar', body: body)).to eq({})
68
+ expect(client_double.index(index: 'foo', body: body)).to eq({})
69
69
  end
70
70
 
71
71
  context 'when a specific id is provided' do
@@ -75,11 +75,11 @@ describe 'client#index' do
75
75
  end
76
76
 
77
77
  let(:url) do
78
- 'foo/bar/1'
78
+ 'foo/_doc/1'
79
79
  end
80
80
 
81
81
  it 'performs the request' do
82
- expect(client_double.index(index: 'foo', type: 'bar', id: '1', body: body)).to eq({})
82
+ expect(client_double.index(index: 'foo', id: '1', body: body)).to eq({})
83
83
  end
84
84
  end
85
85
 
@@ -90,7 +90,7 @@ describe 'client#index' do
90
90
  end
91
91
 
92
92
  let(:url) do
93
- 'foo/bar'
93
+ 'foo/_doc'
94
94
  end
95
95
 
96
96
  let(:params) do
@@ -98,7 +98,7 @@ describe 'client#index' do
98
98
  end
99
99
 
100
100
  it 'passes the URL params' do
101
- expect(client_double.index(index: 'foo', type: 'bar', op_type: 'create', body: body)).to eq({})
101
+ expect(client_double.index(index: 'foo', op_type: 'create', body: body)).to eq({})
102
102
  end
103
103
 
104
104
  context 'when a specific id is provided' do
@@ -108,7 +108,7 @@ describe 'client#index' do
108
108
  end
109
109
 
110
110
  let(:url) do
111
- 'foo/bar/1'
111
+ 'foo/_doc/1'
112
112
  end
113
113
 
114
114
  let(:params) do
@@ -116,7 +116,7 @@ describe 'client#index' do
116
116
  end
117
117
 
118
118
  it 'passes the URL params' do
119
- expect(client_double.index(index: 'foo', type: 'bar', id: '1', op_type: 'create', body: body)).to eq({})
119
+ expect(client_double.index(index: 'foo', id: '1', op_type: 'create', body: body)).to eq({})
120
120
  end
121
121
  end
122
122
  end
@@ -127,11 +127,11 @@ describe 'client#index' do
127
127
  end
128
128
 
129
129
  let(:url) do
130
- 'foo/bar%2Fbam/123'
130
+ 'foo%5Ebar/_doc/123'
131
131
  end
132
132
 
133
133
  it 'URL-escapes the parts' do
134
- expect(client_double.index(index: 'foo', type: 'bar/bam', id: '123', body: body)).to eq({})
134
+ expect(client_double.index(index: 'foo^bar', id: '123', body: body)).to eq({})
135
135
  end
136
136
  end
137
137
 
@@ -139,7 +139,7 @@ describe 'client#index' do
139
139
 
140
140
  it 'raises and ArgumentError' do
141
141
  expect {
142
- client.index(index: 'foo', type: 'bar', id: '1', qwerty: 'yuiop')
142
+ client.index(index: 'foo', id: '1', qwerty: 'yuiop')
143
143
  }.to raise_exception(ArgumentError)
144
144
  end
145
145
  end
@@ -56,15 +56,4 @@ describe 'client.cluster#get_field_mapping' do
56
56
  expect(client_double.indices.get_field_mapping(index: 'foo', field: 'bam')).to eq({})
57
57
  end
58
58
  end
59
-
60
- context 'when a type is specified' do
61
-
62
- let(:url) do
63
- 'foo/_mapping/bar/field/bam'
64
- end
65
-
66
- it 'performs the request' do
67
- expect(client_double.indices.get_field_mapping(index: 'foo', type: 'bar', field: 'bam')).to eq({})
68
- end
69
- end
70
59
  end
@@ -57,36 +57,25 @@ describe 'client.cluster#get_mapping' do
57
57
  end
58
58
  end
59
59
 
60
- context 'when an index and type are specified' do
60
+ context 'when multiple indices are specified' do
61
61
 
62
62
  let(:url) do
63
- 'foo/_mapping/bar'
63
+ 'foo,bar/_mapping'
64
64
  end
65
65
 
66
66
  it 'performs the request' do
67
- expect(client_double.indices.get_mapping(index: 'foo', type: 'bar')).to eq({})
68
- end
69
- end
70
-
71
- context 'when multiple indices and types are specified' do
72
-
73
- let(:url) do
74
- 'foo,bar/_mapping/bam,baz'
75
- end
76
-
77
- it 'performs the request' do
78
- expect(client_double.indices.get_mapping(index: ['foo', 'bar'], type: ['bam', 'baz'])).to eq({})
67
+ expect(client_double.indices.get_mapping(index: ['foo', 'bar'])).to eq({})
79
68
  end
80
69
  end
81
70
 
82
71
  context 'when the path must be URL-escaped' do
83
72
 
84
73
  let(:url) do
85
- 'foo%5Ebar/_mapping/bar%2Fbam'
74
+ 'foo%5Ebar/_mapping'
86
75
  end
87
76
 
88
77
  it 'performs the request' do
89
- expect(client_double.indices.get_mapping(index: 'foo^bar', type: 'bar/bam')).to eq({})
78
+ expect(client_double.indices.get_mapping(index: 'foo^bar')).to eq({})
90
79
  end
91
80
  end
92
81
  end
@@ -39,7 +39,7 @@ describe 'client.cluster#put_mapping' do
39
39
  end
40
40
 
41
41
  let(:url) do
42
- 'foo/bar/_mappings'
42
+ 'foo/_mappings'
43
43
  end
44
44
 
45
45
  let(:body) do
@@ -47,20 +47,7 @@ describe 'client.cluster#put_mapping' do
47
47
  end
48
48
 
49
49
  it 'performs the request' do
50
- expect(client_double.indices.put_mapping(index: 'foo', type: 'bar', body: {})).to eq({})
51
- end
52
-
53
- context 'when there is no type specified' do
54
-
55
- let(:client) do
56
- Class.new { include OpenSearch::API }.new
57
- end
58
-
59
- it 'raises an exception' do
60
- expect {
61
- client.indices.put_mapping(type: 'foo')
62
- }.to raise_exception(ArgumentError)
63
- end
50
+ expect(client_double.indices.put_mapping(index: 'foo', body: {})).to eq({})
64
51
  end
65
52
 
66
53
  context 'when there is no body specified' do
@@ -71,7 +58,7 @@ describe 'client.cluster#put_mapping' do
71
58
 
72
59
  it 'raises an exception' do
73
60
  expect {
74
- client.indices.put_mapping(index: 'foo', type: 'bar')
61
+ client.indices.put_mapping(index: 'foo')
75
62
  }.to raise_exception(ArgumentError)
76
63
  end
77
64
  end
@@ -83,29 +70,29 @@ describe 'client.cluster#put_mapping' do
83
70
  end
84
71
 
85
72
  it 'performs the request' do
86
- expect(client_double.indices.put_mapping(index: 'foo', type: 'bar', body: { filter: 'foo' })).to eq({})
73
+ expect(client_double.indices.put_mapping(index: 'foo', body: { filter: 'foo' })).to eq({})
87
74
  end
88
75
  end
89
76
 
90
77
  context 'when multiple indices are specified' do
91
78
 
92
79
  let(:url) do
93
- 'foo,bar/bam/_mappings'
80
+ 'foo,bar/_mappings'
94
81
  end
95
82
 
96
83
  it 'performs the request' do
97
- expect(client_double.indices.put_mapping(index: ['foo','bar'], type: 'bam', body: {})).to eq({})
84
+ expect(client_double.indices.put_mapping(index: ['foo','bar'], body: {})).to eq({})
98
85
  end
99
86
  end
100
87
 
101
88
  context 'when the path needs to be URL-escaped' do
102
89
 
103
90
  let(:url) do
104
- 'foo%5Ebar/bar%2Fbam/_mappings'
91
+ 'foo%5Ebar/_mappings'
105
92
  end
106
93
 
107
94
  it 'performs the request' do
108
- expect(client_double.indices.put_mapping(index: 'foo^bar', type: 'bar/bam', body: {})).to eq({})
95
+ expect(client_double.indices.put_mapping(index: 'foo^bar', body: {})).to eq({})
109
96
  end
110
97
  end
111
98
  end
@@ -64,16 +64,6 @@ describe 'client.cluster#validate_query' do
64
64
  end
65
65
  end
66
66
 
67
- context 'when a type and index are specified' do
68
- let(:url) do
69
- 'foo/bar/_validate/query'
70
- end
71
-
72
- it 'performs the request' do
73
- expect(client_double.indices.validate_query(index: 'foo', type: 'bar')).to eq({})
74
- end
75
- end
76
-
77
67
  context 'when multiple indicies are specified as a list' do
78
68
  let(:url) do
79
69
  'foo,bar/_validate/query'
@@ -64,21 +64,6 @@ describe 'client#mget' do
64
64
  end
65
65
  end
66
66
 
67
- context 'when a type is specified' do
68
-
69
- let(:url) do
70
- 'foo/bar/_mget'
71
- end
72
-
73
- let(:body) do
74
- { ids: [ '1', '2' ]}
75
- end
76
-
77
- it 'performs the request' do
78
- expect(client_double.mget(index: 'foo', type: 'bar', body: { :ids => [ '1', '2'] })).to eq({})
79
- end
80
- end
81
-
82
67
  context 'when url parameters are provided' do
83
68
 
84
69
  let(:params) do
@@ -97,7 +82,7 @@ describe 'client#mget' do
97
82
  context 'when the request needs to be URL-escaped' do
98
83
 
99
84
  let(:url) do
100
- 'foo%5Ebar/bar%2Fbam/_mget'
85
+ 'foo%5Ebar/_mget'
101
86
  end
102
87
 
103
88
  let(:body) do
@@ -105,7 +90,7 @@ describe 'client#mget' do
105
90
  end
106
91
 
107
92
  it 'performs the request' do
108
- expect(client_double.mget(index: 'foo^bar', type: 'bar/bam', body: { :ids => [ '1', '2'] })).to eq({})
93
+ expect(client_double.mget(index: 'foo^bar', body: { :ids => [ '1', '2'] })).to eq({})
109
94
  end
110
95
  end
111
96
  end
@@ -30,7 +30,7 @@ describe 'client#mtermvectors' do
30
30
  let(:expected_args) do
31
31
  [
32
32
  method,
33
- 'my-index/my-type/_mtermvectors',
33
+ 'my-index/_mtermvectors',
34
34
  {},
35
35
  body,
36
36
  {}
@@ -43,13 +43,13 @@ describe 'client#mtermvectors' do
43
43
  end
44
44
 
45
45
  it 'performs the request' do
46
- expect(client_double.mtermvectors(index: 'my-index', type: 'my-type', body: { ids: [1, 2, 3] })).to eq({})
46
+ expect(client_double.mtermvectors(index: 'my-index', body: { ids: [1, 2, 3] })).to eq({})
47
47
  end
48
48
 
49
49
  context 'when a list of ids is passed instead of a body' do
50
50
  let(:method) { 'GET' }
51
51
  it 'performs the request' do
52
- expect(client_double.mtermvectors(index: 'my-index', type: 'my-type', ids: [1, 2, 3])).to eq({})
52
+ expect(client_double.mtermvectors(index: 'my-index', ids: [1, 2, 3])).to eq({})
53
53
  end
54
54
  end
55
55
  end
@@ -47,11 +47,11 @@ describe 'client#search' do
47
47
  end
48
48
 
49
49
  let(:url) do
50
- '_all/foo/_search'
50
+ '_search'
51
51
  end
52
52
 
53
53
  it 'has a default value for index' do
54
- expect(client_double.search(type: 'foo'))
54
+ expect(client_double.search())
55
55
  end
56
56
 
57
57
  context 'when a request definition is specified' do
@@ -80,14 +80,14 @@ describe 'client#search' do
80
80
  end
81
81
  end
82
82
 
83
- context 'when an index and type are specified' do
83
+ context 'when an index is specified' do
84
84
 
85
85
  let(:url) do
86
- 'foo/bar/_search'
86
+ 'foo/_search'
87
87
  end
88
88
 
89
89
  it 'performs the request' do
90
- expect(client_double.search(index: 'foo', type: 'bar'))
90
+ expect(client_double.search(index: 'foo'))
91
91
  end
92
92
  end
93
93
 
@@ -102,17 +102,6 @@ describe 'client#search' do
102
102
  end
103
103
  end
104
104
 
105
- context 'when multiple indices and types are specified' do
106
-
107
- let(:url) do
108
- 'foo,bar/lam,bam/_search'
109
- end
110
-
111
- it 'performs the request' do
112
- expect(client_double.search(index: ['foo', 'bar'], type: ['lam', 'bam']))
113
- end
114
- end
115
-
116
105
  context 'when there are URL params' do
117
106
 
118
107
  let(:url) do
@@ -38,7 +38,7 @@ describe 'client#termvectors' do
38
38
  end
39
39
 
40
40
  let(:url) do
41
- 'foo/bar/123/_termvectors'
41
+ 'foo/_termvectors/123'
42
42
  end
43
43
 
44
44
  let(:params) do
@@ -55,21 +55,21 @@ describe 'client#termvectors' do
55
55
 
56
56
  it 'requires the :index argument' do
57
57
  expect {
58
- client.termvectors(type: 'bar', id: '1')
58
+ client.termvectors(id: '1')
59
59
  }.to raise_exception(ArgumentError)
60
60
  end
61
61
 
62
62
  it 'performs the request' do
63
- expect(client_double.termvectors(index: 'foo', type: 'bar', id: '123', body: {})).to eq({})
63
+ expect(client_double.termvectors(index: 'foo', id: '123', body: {})).to eq({})
64
64
  end
65
65
 
66
66
  context 'when the older api name \'termvector\' is used' do
67
67
  let(:url) do
68
- 'foo/bar/123/_termvector'
68
+ 'foo/_termvector/123'
69
69
  end
70
70
 
71
71
  it 'performs the request' do
72
- expect(client_double.termvector(index: 'foo', type: 'bar', id: '123', body: {})).to eq({})
72
+ expect(client_double.termvector(index: 'foo', id: '123', body: {})).to eq({})
73
73
  end
74
74
  end
75
75
  end
@@ -43,7 +43,7 @@ describe 'client#update' do
43
43
  end
44
44
 
45
45
  let(:url) do
46
- 'foo/bar/1/_update'
46
+ 'foo/_update/1'
47
47
  end
48
48
 
49
49
  let(:client) do
@@ -56,24 +56,24 @@ describe 'client#update' do
56
56
 
57
57
  it 'requires the :index argument' do
58
58
  expect {
59
- client.update(type: 'bar', id: '1')
59
+ client.update(id: '1')
60
60
  }.to raise_exception(ArgumentError)
61
61
  end
62
62
 
63
63
  it 'requires the :id argument' do
64
64
  expect {
65
- client.update(index: 'foo', type: 'bar')
65
+ client.update(index: 'foo')
66
66
  }.to raise_exception(ArgumentError)
67
67
  end
68
68
 
69
69
  it 'performs the request' do
70
- expect(client_double.update(index: 'foo', type: 'bar', id: '1', body: { doc: {} })).to eq({})
70
+ expect(client_double.update(index: 'foo', id: '1', body: { doc: {} })).to eq({})
71
71
  end
72
72
 
73
73
  context 'when URL parameters are provided' do
74
74
 
75
75
  let(:url) do
76
- 'foo/bar/1/_update'
76
+ 'foo/_update/1'
77
77
  end
78
78
 
79
79
  let(:body) do
@@ -81,7 +81,7 @@ describe 'client#update' do
81
81
  end
82
82
 
83
83
  it 'performs the request' do
84
- expect(client_double.update(index: 'foo', type: 'bar', id: '1', body: {}))
84
+ expect(client_double.update(index: 'foo', id: '1', body: {}))
85
85
  end
86
86
  end
87
87
 
@@ -89,7 +89,7 @@ describe 'client#update' do
89
89
 
90
90
  it 'raises an ArgumentError' do
91
91
  expect {
92
- client.update(index: 'foo', type: 'bar', id: '1', body: { doc: {} }, qwertypoiuy: 'asdflkjhg')
92
+ client.update(index: 'foo', id: '1', body: { doc: {} }, qwertypoiuy: 'asdflkjhg')
93
93
  }.to raise_exception(ArgumentError)
94
94
  end
95
95
  end
@@ -97,7 +97,7 @@ describe 'client#update' do
97
97
  context 'when the request needs to be URL-escaped' do
98
98
 
99
99
  let(:url) do
100
- 'foo%5Ebar/bar%2Fbam/1/_update'
100
+ 'foo%5Ebar/_update/1'
101
101
  end
102
102
 
103
103
  let(:body) do
@@ -105,7 +105,7 @@ describe 'client#update' do
105
105
  end
106
106
 
107
107
  it 'escapes the parts' do
108
- expect(client_double.update(index: 'foo^bar', type: 'bar/bam', id: '1', body: {}))
108
+ expect(client_double.update(index: 'foo^bar', id: '1', body: {}))
109
109
  end
110
110
  end
111
111
 
@@ -117,14 +117,14 @@ describe 'client#update' do
117
117
 
118
118
  it 'raises it to the user' do
119
119
  expect {
120
- client.update(index: 'foo', type: 'bar', id: 'XXX', body: {})
120
+ client.update(index: 'foo', id: 'XXX', body: {})
121
121
  }.to raise_exception(NotFound)
122
122
  end
123
123
 
124
124
  context 'when the :ignore parameter is specified' do
125
125
 
126
126
  it 'does not raise the error to the user' do
127
- expect(client.update(index: 'foo', type: 'bar', id: 'XXX', body: {}, ignore: 404)).to eq(false)
127
+ expect(client.update(index: 'foo', id: 'XXX', body: {}, ignore: 404)).to eq(false)
128
128
  end
129
129
  end
130
130
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opensearch-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jayesh Hathila
@@ -33,7 +33,7 @@ cert_chain:
33
33
  yXikuH6LEVykA8pgOcB9gKsB2/zMd2ZlSj2monM8Qw9EfB14ZSDTYS8VYuwWCeF0
34
34
  eFmXXk0ufQFKl1Yll7quHkmQ0PzKkvXTpONBT6qPkXE=
35
35
  -----END CERTIFICATE-----
36
- date: 2021-12-06 00:00:00.000000000 Z
36
+ date: 2022-05-31 00:00:00.000000000 Z
37
37
  dependencies:
38
38
  - !ruby/object:Gem::Dependency
39
39
  name: multi_json
@@ -431,10 +431,8 @@ files:
431
431
  - lib/opensearch/api/actions/indices/exists_alias.rb
432
432
  - lib/opensearch/api/actions/indices/exists_index_template.rb
433
433
  - lib/opensearch/api/actions/indices/exists_template.rb
434
- - lib/opensearch/api/actions/indices/exists_type.rb
435
434
  - lib/opensearch/api/actions/indices/field_usage_stats.rb
436
435
  - lib/opensearch/api/actions/indices/flush.rb
437
- - lib/opensearch/api/actions/indices/flush_synced.rb
438
436
  - lib/opensearch/api/actions/indices/forcemerge.rb
439
437
  - lib/opensearch/api/actions/indices/get.rb
440
438
  - lib/opensearch/api/actions/indices/get_alias.rb
@@ -605,10 +603,8 @@ files:
605
603
  - spec/opensearch/api/actions/indices/exists_alias_spec.rb
606
604
  - spec/opensearch/api/actions/indices/exists_spec.rb
607
605
  - spec/opensearch/api/actions/indices/exists_template_spec.rb
608
- - spec/opensearch/api/actions/indices/exists_type_spec.rb
609
606
  - spec/opensearch/api/actions/indices/field_usage_stats_spec.rb
610
607
  - spec/opensearch/api/actions/indices/flush_spec.rb
611
- - spec/opensearch/api/actions/indices/flush_synced_spec.rb
612
608
  - spec/opensearch/api/actions/indices/forcemerge_spec.rb
613
609
  - spec/opensearch/api/actions/indices/get_alias_spec.rb
614
610
  - spec/opensearch/api/actions/indices/get_field_mapping_spec.rb
@@ -778,10 +774,8 @@ test_files:
778
774
  - spec/opensearch/api/actions/indices/exists_alias_spec.rb
779
775
  - spec/opensearch/api/actions/indices/exists_spec.rb
780
776
  - spec/opensearch/api/actions/indices/exists_template_spec.rb
781
- - spec/opensearch/api/actions/indices/exists_type_spec.rb
782
777
  - spec/opensearch/api/actions/indices/field_usage_stats_spec.rb
783
778
  - spec/opensearch/api/actions/indices/flush_spec.rb
784
- - spec/opensearch/api/actions/indices/flush_synced_spec.rb
785
779
  - spec/opensearch/api/actions/indices/forcemerge_spec.rb
786
780
  - spec/opensearch/api/actions/indices/get_alias_spec.rb
787
781
  - spec/opensearch/api/actions/indices/get_field_mapping_spec.rb
metadata.gz.sig CHANGED
Binary file