Changes required for merging in 7.x branch.

This commit is contained in:
Martijn van Groningen 2019-06-13 16:48:58 +02:00
parent 1f3db7eb3e
commit c8e6474eef
No known key found for this signature in database
GPG Key ID: AB236F4FCF2AF12A
6 changed files with 8 additions and 2 deletions

View File

@ -10,10 +10,11 @@ esplugin {
archivesBaseName = 'x-pack-enrich'
dependencies {
compileOnly "org.elasticsearch:elasticsearch:${version}"
compileOnly project(path: xpackModule('core'), configuration: 'default')
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
if (isEclipse) {
testCompile project(path: xpackModule('core-tests'), configuration: 'testArtifacts')
}
}
run {

View File

@ -1,6 +1,7 @@
{
"enrich.delete_policy": {
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-delete-policy.html",
"stability" : "stable",
"methods": [ "DELETE" ],
"url": {
"path": "/_enrich/policy/{name}",

View File

@ -1,6 +1,7 @@
{
"enrich.execute_policy": {
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-execute-policy.html",
"stability" : "stable",
"methods": [ "PUT" ],
"url": {
"path": "/_enrich/policy/{name}/_execute",

View File

@ -1,6 +1,7 @@
{
"enrich.get_policy": {
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-get-policy.html",
"stability" : "stable",
"methods": [ "GET" ],
"url": {
"path": "/_enrich/policy/{name}",

View File

@ -1,6 +1,7 @@
{
"enrich.list_policy": {
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-list-policy.html",
"stability" : "stable",
"methods": [ "GET" ],
"url": {
"path": "/_enrich/policy",

View File

@ -1,6 +1,7 @@
{
"enrich.put_policy": {
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-put-policy.html",
"stability" : "stable",
"methods": [ "PUT" ],
"url": {
"path": "/_enrich/policy/{name}",