Changes required for merging in 7.x branch.
This commit is contained in:
parent
1f3db7eb3e
commit
c8e6474eef
|
@ -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 {
|
||||
|
|
|
@ -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}",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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}",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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}",
|
||||
|
|
Loading…
Reference in New Issue