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'
|
archivesBaseName = 'x-pack-enrich'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly "org.elasticsearch:elasticsearch:${version}"
|
|
||||||
|
|
||||||
compileOnly project(path: xpackModule('core'), configuration: 'default')
|
compileOnly project(path: xpackModule('core'), configuration: 'default')
|
||||||
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
||||||
|
if (isEclipse) {
|
||||||
|
testCompile project(path: xpackModule('core-tests'), configuration: 'testArtifacts')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
run {
|
run {
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"enrich.delete_policy": {
|
"enrich.delete_policy": {
|
||||||
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-delete-policy.html",
|
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-delete-policy.html",
|
||||||
|
"stability" : "stable",
|
||||||
"methods": [ "DELETE" ],
|
"methods": [ "DELETE" ],
|
||||||
"url": {
|
"url": {
|
||||||
"path": "/_enrich/policy/{name}",
|
"path": "/_enrich/policy/{name}",
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"enrich.execute_policy": {
|
"enrich.execute_policy": {
|
||||||
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-execute-policy.html",
|
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-execute-policy.html",
|
||||||
|
"stability" : "stable",
|
||||||
"methods": [ "PUT" ],
|
"methods": [ "PUT" ],
|
||||||
"url": {
|
"url": {
|
||||||
"path": "/_enrich/policy/{name}/_execute",
|
"path": "/_enrich/policy/{name}/_execute",
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"enrich.get_policy": {
|
"enrich.get_policy": {
|
||||||
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-get-policy.html",
|
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-get-policy.html",
|
||||||
|
"stability" : "stable",
|
||||||
"methods": [ "GET" ],
|
"methods": [ "GET" ],
|
||||||
"url": {
|
"url": {
|
||||||
"path": "/_enrich/policy/{name}",
|
"path": "/_enrich/policy/{name}",
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"enrich.list_policy": {
|
"enrich.list_policy": {
|
||||||
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-list-policy.html",
|
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-list-policy.html",
|
||||||
|
"stability" : "stable",
|
||||||
"methods": [ "GET" ],
|
"methods": [ "GET" ],
|
||||||
"url": {
|
"url": {
|
||||||
"path": "/_enrich/policy",
|
"path": "/_enrich/policy",
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"enrich.put_policy": {
|
"enrich.put_policy": {
|
||||||
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-put-policy.html",
|
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-put-policy.html",
|
||||||
|
"stability" : "stable",
|
||||||
"methods": [ "PUT" ],
|
"methods": [ "PUT" ],
|
||||||
"url": {
|
"url": {
|
||||||
"path": "/_enrich/policy/{name}",
|
"path": "/_enrich/policy/{name}",
|
||||||
|
|
Loading…
Reference in New Issue