Skip to content

Commit 73d5d8f

Browse files
committed
Updated endpoints for ES 7.14 + prep for release
1 parent d4145b8 commit 73d5d8f

File tree

9 files changed

+232
-7
lines changed

9 files changed

+232
-7
lines changed

dist-async/Changes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
Revision history for Search::Elasticsearch::Async
22

3+
7.714 2021-08-09
4+
Stable release for Elasticsearch 7.14
5+
6+
7.713 2021-06-14
7+
Stable release for Elasticsearch 7.13
8+
9+
7.712 2021-03-25
10+
Stable release for Elasticsearch 7.12
11+
312
7.711001 2021-03-01
413
Fix release for Elasticsearch 7.11
514

dist-client-6_0-async/Changes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
Revision history for Search::Elasticsearch::Client::6_0::Async
22

3+
7.714 2021-08-09
4+
Stable release for Elasticsearch 7.14
5+
6+
7.713 2021-06-14
7+
Stable release for Elasticsearch 7.13
8+
9+
7.712 2021-03-25
10+
Stable release for Elasticsearch 7.12
11+
312
7.711001 2021-03-01
413
Fix release for Elasticsearch 7.11
514

dist-client-6_0/Changes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
Revision history for Search::Elasticsearch::Client::6_0
22

3+
7.714 2021-08-09
4+
Stable release for Elasticsearch 7.14
5+
6+
7.713 2021-06-14
7+
Stable release for Elasticsearch 7.13
8+
9+
7.712 2021-03-25
10+
Stable release for Elasticsearch 7.12
11+
312
7.711001 2021-03-01
413
Fix release for Elasticsearch 7.11
514

dist-client-7_0-async/Changes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
Revision history for Search::Elasticsearch::Client::7_0::Async
22

3+
7.714 2021-08-09
4+
Stable release for Elasticsearch 7.14
5+
6+
7.713 2021-06-14
7+
Stable release for Elasticsearch 7.13
8+
9+
7.712 2021-03-25
10+
Stable release for Elasticsearch 7.12
11+
312
7.711001 2021-03-01
413
Fix release for Elasticsearch 7.11
514

dist-client-7_0/Changes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
Revision history for Search::Elasticsearch::Client::7_0
22

3+
7.714 2021-08-09
4+
Stable release for Elasticsearch 7.14
5+
6+
7.713 2021-06-14
7+
Stable release for Elasticsearch 7.13
8+
9+
7.712 2021-03-25
10+
Stable release for Elasticsearch 7.12
11+
312
7.711001 2021-03-01
413
Fix release for Elasticsearch 7.11
514

dist-netcurl/Changes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
Revision history for Search::Elasticsearch::Cxn::NetCurl
22

3+
7.714 2021-08-09
4+
Stable release for Elasticsearch 7.14
5+
6+
7.713 2021-06-14
7+
Stable release for Elasticsearch 7.13
8+
9+
7.712 2021-03-25
10+
Stable release for Elasticsearch 7.12
11+
312
7.711001 2021-03-01
413
Fix release for Elasticsearch 7.11
514

dist/Changes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
Revision history for Search::Elasticsearch
22

3+
7.714 2021-08-09
4+
Stable release for Elasticsearch 7.14
5+
6+
7.713 2021-06-14
7+
Stable release for Elasticsearch 7.13
8+
9+
7.712 2021-03-25
10+
Stable release for Elasticsearch 7.12
11+
312
7.711001 2021-03-01
413
Fix release for Elasticsearch 7.11
514

lib/Search/Elasticsearch/Client/7_0/Role/API.pm

Lines changed: 145 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ sub api {
744744

745745
'render_search_template' => {
746746
body => {},
747-
doc => "",
747+
doc => "render-search-template-api",
748748
parts => { id => {} },
749749
paths => [
750750
[ { id => 2 }, "_render", "template", "{id}" ],
@@ -2530,6 +2530,20 @@ sub api {
25302530
},
25312531
},
25322532

2533+
'ilm.migrate_to_data_tiers' => {
2534+
body => {},
2535+
doc => "ilm-migrate-to-data-tiers",
2536+
method => "POST",
2537+
parts => {},
2538+
paths => [ [ {}, "_ilm", "migrate_to_data_tiers" ] ],
2539+
qs => {
2540+
dry_run => "boolean",
2541+
error_trace => "boolean",
2542+
filter_path => "list",
2543+
human => "boolean",
2544+
},
2545+
},
2546+
25332547
'ilm.move_to_step' => {
25342548
body => {},
25352549
doc => "ilm-move-to-step",
@@ -4726,6 +4740,24 @@ sub api {
47264740
},
47274741
},
47284742

4743+
'ml.reset_job' => {
4744+
doc => "ml-reset-job",
4745+
method => "POST",
4746+
parts => { job_id => {} },
4747+
paths => [
4748+
[ { job_id => 2 }, "_ml",
4749+
"anomaly_detectors", "{job_id}",
4750+
"_reset",
4751+
],
4752+
],
4753+
qs => {
4754+
error_trace => "boolean",
4755+
filter_path => "list",
4756+
human => "boolean",
4757+
wait_for_completion => "boolean",
4758+
},
4759+
},
4760+
47294761
'ml.revert_model_snapshot' => {
47304762
body => {},
47314763
doc => "ml-revert-snapshot",
@@ -5185,7 +5217,7 @@ sub api {
51855217

51865218
'rollup.rollup' => {
51875219
body => { required => 1 },
5188-
doc => "rollup-api",
5220+
doc => "xpack-rollup",
51895221
method => "POST",
51905222
parts =>
51915223
{ index => { required => 1 }, rollup_index => { required => 1 } },
@@ -5732,7 +5764,7 @@ sub api {
57325764
},
57335765

57345766
'security.get_user_privileges' => {
5735-
doc => "security-api-get-privileges",
5767+
doc => "security-api-get-user-privileges",
57365768
parts => {},
57375769
paths => [ [ {}, "_security", "user", "_privileges" ] ],
57385770
qs => {
@@ -5856,6 +5888,19 @@ sub api {
58565888
},
58575889
},
58585890

5891+
'security.saml_authenticate' => {
5892+
body => { required => 1 },
5893+
doc => "security-api-saml-authenticate",
5894+
method => "POST",
5895+
parts => {},
5896+
paths => [ [ {}, "_security", "saml", "authenticate" ] ],
5897+
qs => {
5898+
error_trace => "boolean",
5899+
filter_path => "list",
5900+
human => "boolean"
5901+
},
5902+
},
5903+
58595904
'security.saml_complete_logout' => {
58605905
body => { required => 1 },
58615906
doc => "security-api-saml-complete-logout",
@@ -5869,6 +5914,61 @@ sub api {
58695914
},
58705915
},
58715916

5917+
'security.saml_invalidate' => {
5918+
body => { required => 1 },
5919+
doc => "security-api-saml-invalidate",
5920+
method => "POST",
5921+
parts => {},
5922+
paths => [ [ {}, "_security", "saml", "invalidate" ] ],
5923+
qs => {
5924+
error_trace => "boolean",
5925+
filter_path => "list",
5926+
human => "boolean"
5927+
},
5928+
},
5929+
5930+
'security.saml_logout' => {
5931+
body => { required => 1 },
5932+
doc => "security-api-saml-logout",
5933+
method => "POST",
5934+
parts => {},
5935+
paths => [ [ {}, "_security", "saml", "logout" ] ],
5936+
qs => {
5937+
error_trace => "boolean",
5938+
filter_path => "list",
5939+
human => "boolean"
5940+
},
5941+
},
5942+
5943+
'security.saml_prepare_authentication' => {
5944+
body => { required => 1 },
5945+
doc => "security-api-saml-prepare-authentication",
5946+
method => "POST",
5947+
parts => {},
5948+
paths => [ [ {}, "_security", "saml", "prepare" ] ],
5949+
qs => {
5950+
error_trace => "boolean",
5951+
filter_path => "list",
5952+
human => "boolean"
5953+
},
5954+
},
5955+
5956+
'security.saml_service_provider_metadata' => {
5957+
doc => "security-api-saml-sp-metadata",
5958+
parts => { realm_name => {} },
5959+
paths => [
5960+
[ { realm_name => 3 }, "_security",
5961+
"saml", "metadata",
5962+
"{realm_name}",
5963+
],
5964+
],
5965+
qs => {
5966+
error_trace => "boolean",
5967+
filter_path => "list",
5968+
human => "boolean"
5969+
},
5970+
},
5971+
58725972
'shutdown.delete_node' => {
58735973
doc => "",
58745974
method => "DELETE",
@@ -6139,6 +6239,7 @@ sub api {
61396239
filter_path => "list",
61406240
human => "boolean",
61416241
ignore_unavailable => "boolean",
6242+
include_repository => "boolean",
61426243
index_details => "boolean",
61436244
master_timeout => "time",
61446245
verbose => "boolean",
@@ -6244,7 +6345,7 @@ sub api {
62446345

62456346
'sql.clear_cursor' => {
62466347
body => { required => 1 },
6247-
doc => "sql-pagination",
6348+
doc => "clear-sql-cursor-api",
62486349
method => "POST",
62496350
parts => {},
62506351
paths => [ [ {}, "_sql", "close" ] ],
@@ -6255,9 +6356,47 @@ sub api {
62556356
},
62566357
},
62576358

6359+
'sql.delete_async' => {
6360+
doc => "delete-async-sql-search-api",
6361+
method => "DELETE",
6362+
parts => { id => {} },
6363+
paths => [ [ { id => 3 }, "_sql", "async", "delete", "{id}" ] ],
6364+
qs => {
6365+
error_trace => "boolean",
6366+
filter_path => "list",
6367+
human => "boolean"
6368+
},
6369+
},
6370+
6371+
'sql.get_async' => {
6372+
doc => "get-async-sql-search-api",
6373+
parts => { id => {} },
6374+
paths => [ [ { id => 2 }, "_sql", "async", "{id}" ] ],
6375+
qs => {
6376+
delimiter => "string",
6377+
error_trace => "boolean",
6378+
filter_path => "list",
6379+
format => "string",
6380+
human => "boolean",
6381+
keep_alive => "time",
6382+
wait_for_completion_timeout => "time",
6383+
},
6384+
},
6385+
6386+
'sql.get_async_status' => {
6387+
doc => "get-async-sql-search-status-api",
6388+
parts => { id => {} },
6389+
paths => [ [ { id => 3 }, "_sql", "async", "status", "{id}" ] ],
6390+
qs => {
6391+
error_trace => "boolean",
6392+
filter_path => "list",
6393+
human => "boolean"
6394+
},
6395+
},
6396+
62586397
'sql.query' => {
62596398
body => { required => 1 },
6260-
doc => "sql-rest-overview",
6399+
doc => "sql-search-api",
62616400
method => "POST",
62626401
parts => {},
62636402
paths => [ [ {}, "_sql" ] ],
@@ -6271,7 +6410,7 @@ sub api {
62716410

62726411
'sql.translate' => {
62736412
body => { required => 1 },
6274-
doc => "sql-translate",
6413+
doc => "sql-translate-api",
62756414
method => "POST",
62766415
parts => {},
62776416
paths => [ [ {}, "_sql", "translate" ] ],

test/skip_list.yaml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,4 +187,27 @@
187187
- runtime_fields/60_boolean.yml
188188
- search/350_point_in_time.yml
189189
- ssl/10_basic.yml
190-
- transform/*
190+
- transform/*
191+
192+
7.14.0:
193+
- cat.allocation/10_basic.yml
194+
- cat.indices/10_basic.yml
195+
- cat.segments/10_basic.yml
196+
- cat.shards/10_basic.yml
197+
- cluster.health/10_basic.yml
198+
- cluster.health/20_request_timeout.yml
199+
- indices.shard_stores/10_basic.yml
200+
- indices.stats/10_index.yml
201+
- indices.stats/15_types.yml
202+
- snapshot.create/10_basic.yml
203+
- license/20_put_license.yml
204+
- license/30_enterprise_license.yml
205+
- ml/calendar_crud.yml
206+
- ml/data_frame_analytics_crud.yml
207+
- ml/evaluate_data_frame.yml
208+
- ml/explain_data_frame_analytics.yml
209+
- ml/forecast.yml
210+
- ml/jobs_crud.yml
211+
- ssl/10_basic.yml
212+
- transform/*
213+
- xpack/20_info.yml

0 commit comments

Comments
 (0)